Home
last modified time | relevance | path

Searched defs:expected (Results 1 – 25 of 8658) sorted by relevance

12345678910>>...347

/aosp_15_r20/external/google-java-format/core/src/test/java/com/google/googlejavaformat/java/
H A DJavadocFormattingTest.java39 String[] expected = { in notJavadoc() local
52 String[] expected = { in empty() local
65 String[] expected = { in emptyMultipleLines() local
77 String[] expected = { in simple() local
98 String[] expected = { in commentMostlyUntouched() local
139 String[] expected = { in moeComments() local
177 String[] expected = { in moeCommentBeginOnlyInMiddleOfDoc() local
199 String[] expected = { in moeCommentBeginOnlyAtEndOfDoc() local
216 String[] expected = { in moeCommentEndOnly() local
242 String[] expected = { in tableMostlyUntouched() local
[all …]
/aosp_15_r20/external/truth/core/src/test/java/com/google/common/truth/
H A DIterableSubjectCorrespondenceTest.java162 MyRecord expected = MyRecord.create(2, 200); in displayingDiffsPairedBy_1arg_contains() local
195 MyRecord expected = MyRecord.create(2, 200); in displayingDiffsPairedBy_1arg_contains_noDiff() local
221 MyRecord expected = MyRecord.create(0, 999); in displayingDiffsPairedBy_1arg_contains_handlesActualKeyerExceptions() local
263 MyRecord expected = MyRecord.create(0, 999); in displayingDiffsPairedBy_1arg_contains_handlesFormatDiffExceptions() local
383 ImmutableList<Integer> expected = ImmutableList.of(64, 128, 256, 128); in containsExactlyElementsIn_inOrder_success() local
393 ImmutableList<Integer> expected = ImmutableList.of(64, 128, 256, 128); in containsExactlyElementsIn_successOutOfOrder() local
404 List<Object> expected = asList(1, o); in containsExactlyElementsIn_outOfOrderDoesNotStringify() local
421 ImmutableList<Double> expected = ImmutableList.of(1.0, 1.1, 1.2); in containsExactlyElementsIn_successNonGreedy() local
436 ImmutableList<Integer> expected = ImmutableList.of(64, 128, 256, 128); in containsExactlyElementsIn_failsMissingOneCandidate() local
453 ImmutableList<Integer> expected = ImmutableList.of(); in containsExactlyElementsIn_inOrder_passesWhenBothEmpty() local
[all …]
H A DMultimapSubjectTest.java430 ImmutableSetMultimap<Integer, String> expected = ImmutableSetMultimap.of(); in containsExactlyEmpty() local
452 ImmutableListMultimap<Integer, String> expected = in containsExactlyRespectsDuplicates() local
462 ImmutableSetMultimap<Integer, String> expected = ImmutableSetMultimap.copyOf(actual); in containsExactlyRespectsDuplicatesFailure() local
473 ImmutableMultimap<Integer, String> expected = in containsExactlyFailureMissing() local
486 ImmutableMultimap<Integer, String> expected = in containsExactlyFailureExtra() local
499 ImmutableMultimap<Integer, String> expected = in containsExactlyFailureBoth() local
545 ImmutableMultimap<Integer, String> expected = in containsExactlyInOrder() local
564 ImmutableMultimap<Integer, String> expected = in containsExactlyInOrderFailure() local
583 ImmutableMultimap<Integer, String> expected = in containsExactlyInOrderFailureValuesOnly() local
616 ImmutableMultimap<Integer, String> expected = in containsExactlyVarargFailureMissing() local
[all …]
/aosp_15_r20/external/testng/src/main/java/org/testng/asserts/
H A DAssertion.java71 private final T expected; field in Assertion.SimpleAssert
78 public SimpleAssert(T actual, T expected) { in SimpleAssert()
82 public SimpleAssert(T actual, T expected, String message) { in SimpleAssert()
171 public <T> void assertEquals(final T actual, final T expected, final String message) { in assertEquals()
180 public <T> void assertEquals(final T actual, final T expected) { in assertEquals()
189 public void assertEquals(final String actual, final String expected, final String message) { in assertEquals()
197 public void assertEquals(final String actual, final String expected) { in assertEquals()
206 public void assertEquals(final double actual, final double expected, final double delta, in assertEquals()
216 public void assertEquals(final double actual, final double expected, final double delta) { in assertEquals()
225 public void assertEquals(final float actual, final float expected, final float delta, in assertEquals()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/test/
Ddevector_test.cpp124 const int expected [] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}; in test_constructor_reserve_only_front_back() local
139 const int expected [] = {0, 0, 0, 0, 0, 0, 0, 0}; in test_constructor_n() local
184 const int expected [] = {9, 9, 9, 9, 9, 9, 9, 9}; in test_constructor_n_copy() local
206 devector<T> expected; get_range<devector<T> >(16, expected); in test_constructor_input_range() local
269 const int expected[] = {1, 2, 3, 4, 5, 6, 7, 8}; in test_constructor_forward_range() local
303 const int expected[] = {1, 2, 3, 4, 5, 6, 7, 8}; in test_constructor_pointer_range() local
338 const int expected [] = {1, 2, 3, 4, 5, 6, 7, 8}; in test_copy_constructor() local
371 const int expected [] = {1, 2, 3, 4, 5, 6, 7, 8}; in test_move_constructor() local
383 boost::container::vector<int> expected; get_range<boost::container::vector<int> >(32, expected); in test_move_constructor() local
411 const int expected[] = {1, 2, 3, 4, 5, 6}; in test_assignment() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/omics/src/main/resources/codegen-resources/
H A Dwaiters-2.json13 "expected" : "SUBMITTED" string
18 "expected" : "IN_PROGRESS" string
23 "expected" : "FAILED" string
28 "expected" : "CANCELLED" string
33 "expected" : "COMPLETED" string
45 "expected" : "ACTIVE" string
50 "expected" : "CREATING" string
55 "expected" : "UPDATING" string
60 "expected" : "FAILED" string
72 "expected" : "DELETED" string
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/minimal-lexical/tests/
Dvec_tests.rs110 let expected: VecType = if bigint::LIMB_BITS == 32 { in math_test() localVariable
120 let expected: VecType = vec_from_u32(&[0xFFFFFFFB, 0x4]); in math_test() localVariable
147 let expected: VecType = vec_from_u32(&[4, 1]); in small_add_test() localVariable
152 let expected = VecType::from_u64(12); in small_add_test() localVariable
158 let expected: VecType = vec_from_u32(&[6, 0x80000001]); in small_add_test() localVariable
164 let expected: VecType = vec_from_u32(&[6, 0, 1]); in small_add_test() localVariable
173 let expected = VecType::from_u64(35); in small_mul_test() localVariable
179 let expected: VecType = vec_from_u32(&[0x00140000, 0x140000]); in small_mul_test() localVariable
185 let expected: VecType = vec_from_u32(&[4, 1]); in small_mul_test() localVariable
191 let expected: VecType = vec_from_u32(&[4, 6]); in small_mul_test() localVariable
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/url/tests/
Dsetters_tests.json30 "expected": { object
38 "expected": { object
46 "expected": { object
55 "expected": { object
64 "expected": { object
73 "expected": { object
82 "expected": { object
90 "expected": { object
99 "expected": { object
108 "expected": { object
[all …]
/aosp_15_r20/external/angle/src/tests/preprocessor_tests/
H A Ddefine_test.cpp25 const char *expected = in TEST_F() local
47 const char *expected = in TEST_F() local
75 const char *expected = in TEST_F() local
91 const char *expected = in TEST_F() local
107 const char *expected = in TEST_F() local
124 const char *expected = in TEST_F() local
142 const char *expected = in TEST_F() local
160 const char *expected = in TEST_F() local
178 const char *expected = in TEST_F() local
195 const char *expected = in TEST_F() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/ec2/src/main/resources/codegen-resources/
H A Dwaiters-2.json11 "expected": true, boolean
17 "expected": "InvalidInstanceID.NotFound", string
28 "expected": "complete", string
34 "expected": "failed", string
47 "expected": "cancelled", string
60 "expected": "completed", string
66 "expected": "cancelled", string
72 "expected": "cancelling", string
85 "expected": "deleted", string
98 "expected": "available", string
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/regex-syntax/src/hir/
Dmod.rs1643 let expected = vec![('a', 'c'), ('x', 'z')]; in class_canonicalize_unicode() localVariable
1647 let expected = vec![('a', 'c'), ('x', 'z')]; in class_canonicalize_unicode() localVariable
1651 let expected = vec![('w', 'z')]; in class_canonicalize_unicode() localVariable
1662 let expected = vec![('a', 'j'), ('l', 's')]; in class_canonicalize_unicode() localVariable
1666 let expected = vec![('u', 'z')]; in class_canonicalize_unicode() localVariable
1670 let expected = vec![('\x00', '\u{10FFFF}')]; in class_canonicalize_unicode() localVariable
1674 let expected = vec![('a', 'b')]; in class_canonicalize_unicode() localVariable
1681 let expected = vec![(b'a', b'c'), (b'x', b'z')]; in class_canonicalize_bytes() localVariable
1685 let expected = vec![(b'a', b'c'), (b'x', b'z')]; in class_canonicalize_bytes() localVariable
1689 let expected = vec![(b'w', b'z')]; in class_canonicalize_bytes() localVariable
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/rds/src/main/resources/codegen-resources/
H A Dwaiters-2.json10 "expected": "available", string
16 "expected": "deleted", string
22 "expected": "deleting", string
28 "expected": "failed", string
34 "expected": "incompatible-restore", string
40 "expected": "incompatible-parameters", string
53 "expected": true, boolean
59 "expected": "DBInstanceNotFound", string
64 "expected": "creating", string
70 "expected": "modifying", string
[all …]
/aosp_15_r20/external/webrtc/modules/video_coding/utility/
H A Dsimulcast_rate_allocator_unittest.cc172 uint32_t expected[] = {codec_.minBitrate}; in TEST_F() local
180 uint32_t expected[] = {codec_.maxBitrate}; in TEST_F() local
192 uint32_t expected[] = {kMax}; in TEST_F() local
200 uint32_t expected[] = {bitrate}; in TEST_F() local
209 uint32_t expected[] = {0}; in TEST_F() local
226 uint32_t expected[] = {kMin}; in TEST_F() local
265 uint32_t expected[] = {kMax}; in TEST_F() local
281 uint32_t expected[] = {bitrate}; in TEST_F() local
325 uint32_t expected[] = {0}; in TEST_F() local
338 uint32_t expected[] = {bitrate, 0, 0}; in TEST_F() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/cloudformation/src/main/resources/codegen-resources/
H A Dwaiters-2.json11 "expected": 200, number
16 "expected": "ValidationError", string
29 "expected": "CREATE_COMPLETE", string
35 "expected": "UPDATE_COMPLETE", string
41 "expected": "UPDATE_IN_PROGRESS", string
47 "expected": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS", string
53 "expected": "UPDATE_FAILED", string
59 "expected": "UPDATE_ROLLBACK_IN_PROGRESS", string
65 "expected": "UPDATE_ROLLBACK_FAILED", string
71 "expected": "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS", string
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/databasemigration/src/main/resources/codegen-resources/
H A Dwaiters-2.json8 "expected":"successful", string
14 "expected":"failed", string
27 "expected":"ResourceNotFoundFault", string
33 "expected":"active", string
39 "expected":"creating", string
53 "expected":"available", string
59 "expected":"deleting", string
65 "expected":"incompatible-credentials", string
71 "expected":"incompatible-network", string
77 "expected":"inaccessible-encryption-credentials", string
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/serde_yaml/tests/
Dtest_error.rs35 …let expected = "found character that cannot start any token at line 2 column 1, while scanning for… in test_scan_error() localVariable
45 let expected = "invalid type: string \"str\", expected i16 at line 2 column 1"; in test_incorrect_type() localVariable
68 let expected = "b[0].d: invalid type: string \"fase\", expected a boolean at line 3 column 8"; in test_incorrect_nested_type() localVariable
74 let expected = "EOF while parsing a value"; in test_empty() localVariable
89 let expected = "missing field `w` at line 2 column 1"; in test_missing_field() localVariable
99 let expected = "unknown anchor at line 2 column 1"; in test_unknown_anchor() localVariable
113 let expected = "unknown anchor at line 1 column 5"; in test_ignored_unknown_anchor() localVariable
119 let expected = "serialization and deserialization of bytes in YAML is not implemented"; in test_bytes() localVariable
131 let expected = "deserializing from YAML containing more than one document is not supported"; in test_two_documents() localVariable
151 let expected = in test_second_document_syntax_error() localVariable
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/opsworks/src/main/resources/codegen-resources/
H A Dwaiters-2.json10 "expected": 200, number
16 "expected": 400, number
28 "expected": "successful", string
34 "expected": "failed", string
48 "expected": "online", string
54 "expected": "setup_failed", string
60 "expected": "shutting_down", string
66 "expected": "start_failed", string
72 "expected": "stopped", string
78 "expected": "stopping", string
[all …]
/aosp_15_r20/external/threetenbp/src/test/java/org/threeten/bp/format/
H A DTestDateTimeFormatters.java160 String expected, Class<?> expectedEx) { in test_print_isoLocalDate()
163 assertEquals(DateTimeFormatter.ISO_LOCAL_DATE.format(test), expected); in test_print_isoLocalDate() local
179 Expected expected = createDate(year, month, day); in test_parse_isoLocalDate() local
181 …arseMatch(DateTimeFormatter.ISO_LOCAL_DATE.parseUnresolved(input, new ParsePosition(0)), expected); in test_parse_isoLocalDate() local
187 Expected expected = createDate(999999999, 8, 6); in test_parse_isoLocalDate_999999999() local
194 Expected expected = createDate(1000000000, 8, 6); in test_parse_isoLocalDate_1000000000() local
205 Expected expected = createDate(-999999999, 8, 6); in test_parse_isoLocalDate_M999999999() local
212 Expected expected = createDate(-1000000000, 8, 6); in test_parse_isoLocalDate_M1000000000() local
247 String expected, Class<?> expectedEx) { in test_print_isoOffsetDate()
250 assertEquals(DateTimeFormatter.ISO_OFFSET_DATE.format(test), expected); in test_print_isoOffsetDate() local
[all …]
/aosp_15_r20/system/unwinding/libunwindstack/tests/
H A DDwarfCfaLogTest.cpp84 std::string expected = "4 unwind Illegal\n"; in TYPED_TEST_P() local
95 std::string expected = in TYPED_TEST_P() local
106 std::string expected = in TYPED_TEST_P() local
127 std::string expected = in TYPED_TEST_P() local
148 std::string expected = in TYPED_TEST_P() local
170 std::string expected = in TYPED_TEST_P() local
193 std::string expected = in TYPED_TEST_P() local
234 std::string expected = "4 unwind DW_CFA_set_loc " + address_str + "\n"; in TYPED_TEST_P() local
258 std::string expected = in TYPED_TEST_P() local
271 std::string expected = in TYPED_TEST_P() local
[all …]
/aosp_15_r20/cts/tests/tests/content/src/android/content/cts/
H A DIntentTest.java174 final CharSequence expected = "CharSequencetest"; in testGetCharSequenceExtra() local
205 final ArrayList<Intent> expected = new ArrayList<Intent>(); in testGetParcelableArrayListExtra() local
270 final ArrayList<Integer> expected = new ArrayList<Integer>(); in testGetIntegerArrayListExtra() local
286 final int[] expected = { 1, 2, 3 }; in testGetIntArrayExtra() local
307 final int expected = 0; in testGetIntExtra() local
317 final ArrayList<Integer> expected = new ArrayList<Integer>(); in testPutIntegerArrayListExtra() local
332 final Bundle expected = new Bundle(); in testGetBundleExtra() local
342 final char[] expected = { 'a', 'b', 'c' }; in testGetCharArrayExtra() local
353 final double[] expected = { 1d, 2d }; in testGetDoubleArrayExtra() local
360 final ArrayList<String> expected = new ArrayList<String>(); in testPutStringArrayListExtra() local
[all …]
/aosp_15_r20/external/testng/src/main/java/org/testng/
H A DAssertJUnit.java73 static public void assertEquals(String message, Object expected, Object actual) { in assertEquals()
87 static public void assertEquals(Object expected, Object actual) { in assertEquals()
94 static public void assertEquals(String message, String expected, String actual) { in assertEquals()
107 static public void assertEquals(String expected, String actual) { in assertEquals()
116 static public void assertEquals(String message, double expected, double actual, double delta) { in assertEquals()
134 static public void assertEquals(double expected, double actual, double delta) { in assertEquals()
143 static public void assertEquals(String message, float expected, float actual, float delta) { in assertEquals()
161 static public void assertEquals(float expected, float actual, float delta) { in assertEquals()
169 static public void assertEquals(String message, long expected, long actual) { in assertEquals()
176 static public void assertEquals(long expected, long actual) { in assertEquals()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/java/src/gen/cc/
H A Dsource_writer_test.cc31 const char* expected = "You say goodbye and I say hello!"; in TEST() local
39 const char* expected = "You say goodbye\nand I say hello!"; in TEST() local
47 const char* expected = " You say goodbye\nand I say hello!"; in TEST() local
55 const char* expected = "--You say goodbye\nand I say hello!"; in TEST() local
63 const char* expected = " --You say goodbye\nand I say hello!"; in TEST() local
71 const char* expected = "You say goodbye and I say hello!"; in TEST() local
79 const char* expected = "You say goodbye\nand I say hello!"; in TEST() local
87 const char* expected = " You say goodbye\n and I say hello!"; in TEST() local
95 const char* expected = "--You say goodbye\n--and I say hello!"; in TEST() local
103 const char* expected = " --You say goodbye\n --and I say hello!"; in TEST() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/sagemaker/src/main/resources/codegen-resources/
H A Dwaiters-2.json10 "expected": "InService", string
16 "expected": "Failed", string
29 "expected": "Stopped", string
35 "expected": "Failed", string
48 "expected": "ValidationException", string
53 "expected": "Failed", string
66 "expected": "Completed", string
72 "expected": "Stopped", string
78 "expected": "Failed", string
84 "expected": "ValidationException", string
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/time/test/java/time/temporal/
H A DTestChronoUnit.java108 public void test_yearsBetween(LocalDate start, LocalDate end, long expected) { in test_yearsBetween()
109 assertEquals(YEARS.between(start, end), expected); in test_yearsBetween() local
113 public void test_yearsBetweenReversed(LocalDate start, LocalDate end, long expected) { in test_yearsBetweenReversed()
118 …ublic void test_yearsBetween_LocalDateTimeSameTime(LocalDate start, LocalDate end, long expected) { in test_yearsBetween_LocalDateTimeSameTime()
123 …blic void test_yearsBetween_LocalDateTimeLaterTime(LocalDate start, LocalDate end, long expected) { in test_yearsBetween_LocalDateTimeLaterTime()
132 … public void test_yearsBetween_ZonedDateSameOffset(LocalDate start, LocalDate end, long expected) { in test_yearsBetween_ZonedDateSameOffset()
137 …public void test_yearsBetween_ZonedDateLaterOffset(LocalDate start, LocalDate end, long expected) { in test_yearsBetween_ZonedDateLaterOffset()
181 public void test_monthsBetween(LocalDate start, LocalDate end, long expected) { in test_monthsBetween()
182 assertEquals(MONTHS.between(start, end), expected); in test_monthsBetween() local
186 public void test_monthsBetweenReversed(LocalDate start, LocalDate end, long expected) { in test_monthsBetweenReversed()
[all …]
/aosp_15_r20/art/test/021-string2/src/junit/framework/
H A DAssert.java62 static public void assertEquals(String message, Object expected, Object actual) { in assertEquals()
73 static public void assertEquals(Object expected, Object actual) { in assertEquals()
79 static public void assertEquals(String message, String expected, String actual) { in assertEquals()
90 static public void assertEquals(String expected, String actual) { in assertEquals()
98 static public void assertEquals(String message, double expected, double actual, double delta) { in assertEquals()
108 static public void assertEquals(double expected, double actual, double delta) { in assertEquals()
116 static public void assertEquals(String message, float expected, float actual, float delta) { in assertEquals()
126 static public void assertEquals(float expected, float actual, float delta) { in assertEquals()
133 static public void assertEquals(String message, long expected, long actual) { in assertEquals()
139 static public void assertEquals(long expected, long actual) { in assertEquals()
[all …]

12345678910>>...347