Home
last modified time | relevance | path

Searched refs:expected2 (Results 1 – 25 of 56) sorted by relevance

123

/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/ftrace/
Dfunc_set_ftrace_file.tc132 grep -v 'try.*lock$' $TMPDIR/expected > $TMPDIR/expected2
133 mv $TMPDIR/expected2 $TMPDIR/expected
138 grep -v '^m.*lock$' $TMPDIR/expected > $TMPDIR/expected2
139 mv $TMPDIR/expected2 $TMPDIR/expected
144 grep -v '^c.*unlock' $TMPDIR/expected > $TMPDIR/expected2
145 mv $TMPDIR/expected2 $TMPDIR/expected
/external/pigweed/pw_hex_dump/
Dhex_dump_test.cc212 constexpr const char* expected2 = "23 1a 2a 7a bc e2 40 a0"; in TEST_F() local
223 EXPECT_STREQ(expected2, dest_.data()); in TEST_F()
228 constexpr const char* expected2 = "73 74 72 69 6e 67 0a string."; in TEST_F() local
240 EXPECT_STREQ(expected2, dest_.data()); in TEST_F()
246 constexpr const char* expected2 = "73747269 6e670a string."; in TEST_F() local
263 EXPECT_STREQ(expected2, dest_.data()); in TEST_F()
269 constexpr const char* expected2 = "73 74 72 69 6e 67 0a string."; in TEST_F() local
286 EXPECT_STREQ(expected2, dest_.data()); in TEST_F()
291 constexpr const char* expected2 = "0010"; in TEST_F() local
307 dest_[strlen(expected2)] = '\0'; in TEST_F()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dncnvtst.c349 static const uint8_t expected2[] = { 0x31, 0x1a, 0x32}; in TestErrorBehaviour() local
360 expected2, sizeof(expected2), "ibm-920", 0, TRUE, U_ZERO_ERROR)) in TestErrorBehaviour()
373 expected2, sizeof(expected2), "LATIN_1", 0, TRUE, U_ZERO_ERROR)) in TestErrorBehaviour()
387 static const uint8_t expected2[] = { 0xa2, 0xae, 0xa1, 0xe0, 0xa2, 0xb4}; in TestErrorBehaviour() local
415 expected2, sizeof(expected2), "ibm-1363", 0, TRUE, U_ZERO_ERROR)) in TestErrorBehaviour()
418 expected2, sizeof(expected2), "ibm-1363", offsets2, TRUE, U_ZERO_ERROR)) in TestErrorBehaviour()
430 expected2, sizeof(expected2), "ibm-1363", 0, TRUE, U_ZERO_ERROR)) in TestErrorBehaviour()
433 expected2, sizeof(expected2), "ibm-1363", 0, FALSE, U_ZERO_ERROR)) in TestErrorBehaviour()
436 expected2, sizeof(expected2), "ibm-1363", offsets2, FALSE, U_ZERO_ERROR)) in TestErrorBehaviour()
463 static const uint8_t expected2[] = { 0x31,0x1A,0x32}; in TestErrorBehaviour() local
[all …]
/external/libchrome/base/android/
Dpath_utils_unittest.cc19 const std::string& expected2, in ExpectEither() argument
21 EXPECT_TRUE(expected1 == actual || expected2 == actual) in ExpectEither()
24 << "or: " << expected2; in ExpectEither()
/external/mesa3d/src/gallium/tests/graw/
Docclusion-query.c15 static int expected2 = 420; variable
156 int expected2_min = (int) (expected2 * 0.95); in draw()
157 int expected2_max = (int) (expected2 * 1.05); in draw()
196 printf(" Failure: result2 should be near %d\n", expected2); in draw()
/external/libchrome/crypto/
Dsha2_unittest.cc59 int expected2[] = { 0x24, 0x8d, 0x6a, 0x61, in TEST() local
71 EXPECT_EQ(expected2[i], static_cast<int>(output2[i])); in TEST()
77 EXPECT_EQ(expected2[i], static_cast<int>(output_truncated2[i])); in TEST()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_segment_ids_to_row_splits_op_test.py65 expected2 = [0, 3, 3, 5, 6, 9, 9, 9]
67 self.assertAllEqual(splits2, expected2)
Dragged_segment_op_test.py168 expected2 = [[],
171 self.assertAllEqual(segmented2, expected2)
/external/libchrome/mojo/public/tools/bindings/pylib/mojom_tests/parse/
Dparser_unittest.py753 expected2 = ast.Mojom(
767 self.assertEquals(parser.Parse(source2, "my_file.mojom"), expected2)
806 expected2 = ast.Mojom(
828 self.assertEquals(parser.Parse(source2, "my_file.mojom"), expected2)
968 expected2 = ast.Mojom(
975 self.assertEquals(parser.Parse(source2, "my_file.mojom"), expected2)
1107 expected2 = ast.Mojom(
1112 self.assertEquals(parser.Parse(source2, "my_file.mojom"), expected2)
1452 expected2 = ast.Mojom(
1467 self.assertEquals(parser.Parse(source2, "my_file.mojom"), expected2)
/external/guava/android/guava-tests/test/com/google/common/hash/
DMurmur3Hash128Test.java47 private static void assertHash(int seed, long expected1, long expected2, String stringInput) { in assertHash() argument
48 HashCode expected = toHashCode(expected1, expected2); in assertHash()
/external/guava/guava-tests/test/com/google/common/hash/
DMurmur3Hash128Test.java47 private static void assertHash(int seed, long expected1, long expected2, String stringInput) { in assertHash() argument
48 HashCode expected = toHashCode(expected1, expected2); in assertHash()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_array_unittest.cpp50 const int expected2[] = {1, 2, 3, 7, 10}; in TEST() local
51 ASSERT_EQ(FX_ArraySize(expected2), arr->size()); in TEST()
52 for (size_t i = 0; i < FX_ArraySize(expected2); ++i) in TEST()
53 EXPECT_EQ(expected2[i], arr->GetIntegerAt(i)); in TEST()
/external/tensorflow/tensorflow/core/common_runtime/
Disolate_placer_inspection_required_ops_pass_test.cc299 GraphDef expected2 = GDef( in TEST() local
318 RunPassAndCompare(original, {expected1, expected2}); in TEST()
366 GraphDef expected2 = GDef( in TEST() local
384 RunPassAndCompare(original, {expected1, expected2}); in TEST()
/external/python/setuptools/pkg_resources/tests/
Dtest_working_set.py76 expected1, expected2
86 (name + '_replace_conflicting', True, expected2),
/external/deqp/external/openglcts/modules/gl/
Dgl4cProgramInterfaceQueryTests.cpp534 GLint expected2[] = { 6, GL_FLOAT_VEC4, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0 }; in Run() local
535 VerifyGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, 0, 12, props2, 12, expected2, error); in Run()
641 GLint expected2[] = { 2, GL_INT_VEC4, 1, 0, 0, 0, 0, 0, 1, 4, 0 }; in Run() local
642 …VerifyGetProgramResourceiv(program, GL_PROGRAM_INPUT, indices["b"], 11, props, 11, expected2, erro… in Run()
757 GLint expected2[] = { 2, GL_UNSIGNED_INT, 1, 0, 1, 0, 0, 0, 0, 2, 0, 0 }; in Run() local
758 …VerifyGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, indices["b"], 12, props, 12, expected2, err… in Run()
877 GLint expected2[] = { 14, GL_INT, 1, 0, 0, 0, 0, 0, 1, -1, 0 }; in Run() local
878 …GetProgramResourceiv(program, GL_PROGRAM_INPUT, indices["gl_InstanceID"], 11, props, 11, expected2, in Run()
954 GLint expected2[] = { 17, GL_INT, 1, 0, 1, 0, 0, 0, 0, -1, 0, -1 }; in Run() local
955 …rogramResourceiv(program, GL_PROGRAM_OUTPUT, indices["gl_SampleMask[0]"], 12, props, 12, expected2, in Run()
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cProgramInterfaceQueryTests.cpp435 GLint expected2[] = { 6, 35666, 1, 0, 1, 0, 0 }; in Run() local
436 VerifyGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, 0, 7, props2, 7, expected2, error); in Run()
739 GLint expected2[] = { 2, 35666, 1, 0, 0, 1, 4 }; in Run() local
740 …VerifyGetProgramResourceiv(program, GL_PROGRAM_INPUT, indices["b"], 7, props, 7, expected2, error); in Run()
815 GLint expected2[] = { 14, 5124, 1, 0, 0, 1, -1 }; in Run() local
816 …gramResourceiv(program, GL_PROGRAM_INPUT, indices["gl_InstanceID"], 7, props, 7, expected2, error); in Run()
905 GLint expected2[] = { 2, 35666, 1, 0, 0, 1, 4 }; in Run() local
906 …VerifyGetProgramResourceiv(program, GL_PROGRAM_INPUT, indices["b"], 7, props, 7, expected2, error); in Run()
1074 …GLint expected2[] = { 8, 35666, 1, -1, -1, -1, -1, 0, -1, 0, 1, 0, glGetUniformLocation(program, "… in Run() local
1075 …VerifyGetProgramResourceiv(program, GL_UNIFORM, indices["recolor"], 13, props, 13, expected2, erro… in Run()
[all …]
/external/icu/icu4c/source/test/intltest/
Dtsdcfmsy.cpp355 const char16_t* expected2; // Expected pattern separator in testNumberingSystem() member
379 UnicodeString expected2(cas.expected2); in testNumberingSystem() local
388 expected2, in testNumberingSystem()
/external/libwebsockets/minimal-examples/api-tests/api-test-lws_tokenize/
Dmain.c41 expected2[] = { variable
186 expected2, LWS_ARRAY_SIZE(expected2),
/external/rust/crates/proc-macro2/tests/
Dtest.rs81 let expected2 = r#""'a#" is not a valid Ident"#; // 1.53.0 .. in lifetime_invalid() localVariable
83 message == expected1 || message == expected2, in lifetime_invalid()
88 expected2, in lifetime_invalid()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
DICUDurationTest.java226 String expected2; in TestSimpleXMLDuration() local
263 expected2 = "1 day and 0 seconds"; // This is the expected result for Windows with IBM JRE6 in TestSimpleXMLDuration()
268 if(out.equals(expected2)){ in TestSimpleXMLDuration()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
DICUDurationTest.java223 String expected2; in TestSimpleXMLDuration() local
260 expected2 = "1 day and 0 seconds"; // This is the expected result for Windows with IBM JRE6 in TestSimpleXMLDuration()
265 if(out.equals(expected2)){ in TestSimpleXMLDuration()
/external/s2-geometry-library-java/tests/com/google/common/geometry/
DS2Test.java172 double expected2 = 5.8578643762690495119753e-11; // Mathematica. in testAngleArea()
173 assertDoubleNear(S2.area(p000, p045eps, p090), expected2, 1e-9 * expected2); in testAngleArea()
/external/OpenCL-CTS/test_conformance/geometrics/
Dtest_geometrics.cpp950 float temp[4], expected2[4]; in test_oneToOne_kernel() local
959 verifyFn( temp, expected2, vecSize ); in test_oneToOne_kernel()
968 if( expected2[j] != outData[ i * vecSize + j ] ) in test_oneToOne_kernel()
974 if( IsFloatSubnormal(expected2[j]) ) in test_oneToOne_kernel()
976 expected2[j] = 0.0f; in test_oneToOne_kernel()
977 if( expected2[j] != outData[i*vecSize + j ] ) in test_oneToOne_kernel()
/external/auto/value/src/test/java/com/google/auto/value/extension/memoized/
DMemoizedTest.java320 } catch (SomeCheckedException expected2) { in methodThrows()
321 assertThat(expected2).isNotSameInstanceAs(expected1); in methodThrows()
/external/guava/android/guava-tests/test/com/google/common/base/
DToStringHelperTest.java259 final String expected2 = "TestClass{field1=1, value1, field2=value2, 2}"; in testToString_ToStringTwice() local
261 assertEquals(expected2, helper.toString()); in testToString_ToStringTwice()

123