Lines Matching full:represents
20 * @KUNIT_ASSERTION: Used to denote that a kunit_assert represents an assertion.
21 * @KUNIT_EXPECTATION: Denotes that a kunit_assert represents an expectation.
24 * represents an expectation or an assertion.
46 * Represents a failed expectation/assertion. Contains all the data necessary to
60 * struct kunit_fail_assert - Represents a plain fail expectation/assertion.
63 * Represents a simple KUNIT_FAIL/KUNIT_ASSERT_FAILURE that always fails.
74 * struct kunit_unary_assert - Represents a KUNIT_{EXPECT|ASSERT}_{TRUE|FALSE}
79 * Represents a simple expectation or assertion that simply asserts something is
80 * true or false. In other words, represents the expectations:
100 * Represents an expectation/assertion that a pointer is not null and is does
134 * Represents an expectation/assertion that compares two non-pointer values. For
157 * Represents an expectation/assertion that compares two pointer values. For
180 * Represents an expectation/assertion that compares two string values. For
204 * Represents an expectation/assertion that compares two memory blocks. For