Home
last modified time | relevance | path

Searched refs:result3 (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_urlparse.py85 result3 = urlparse.urlparse(result.geturl())
86 self.assertEqual(result3.geturl(), result.geturl())
87 self.assertEqual(result3, result)
88 self.assertEqual(result3.scheme, result.scheme)
89 self.assertEqual(result3.netloc, result.netloc)
90 self.assertEqual(result3.path, result.path)
91 self.assertEqual(result3.params, result.params)
92 self.assertEqual(result3.query, result.query)
93 self.assertEqual(result3.fragment, result.fragment)
94 self.assertEqual(result3.username, result.username)
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Ditrans16_dspr2.c26 int result1, result2, result3, result4; in idct16_rows_dspr2() local
130 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_rows_dspr2()
191 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_rows_dspr2()
255 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_rows_dspr2()
401 int result1, result2, result3, result4; in idct16_cols_add_blk_dspr2() local
515 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_cols_add_blk_dspr2()
576 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_cols_add_blk_dspr2()
641 [result2] "=&r"(result2), [result3] "=&r"(result3), in idct16_cols_add_blk_dspr2()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DIntlTestDateFormatAPI.java125 Date result3 = new Date(); in TestAPI() local
143 result3 = def.parse(text, pos01); in TestAPI()
144 if (result3 == null) { in TestAPI()
147 logln(text + " parsed into " + result3.getTime()); in TestAPI()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DIntlTestDateFormatAPI.java124 Date result3 = new Date(); in TestAPI() local
142 result3 = def.parse(text, pos01); in TestAPI()
143 if (result3 == null) { in TestAPI()
146 logln(text + " parsed into " + result3.getTime()); in TestAPI()
/external/eigen/unsupported/test/
Dcxx11_tensor_const.cpp46 Tensor<int, 2> result3 = constant3.chip(0, 2); in test_assign_of_const_tensor() local
52 VERIFY_IS_EQUAL((result3(i,j)), random(i,j,0)); in test_assign_of_const_tensor()
Dcxx11_tensor_index_list.cpp129 Tensor<float, 1> result3 = tensor.sum(reduction_axis3); in test_type2index_list() local
141 VERIFY_IS_APPROX(result3(m), expected); in test_type2index_list()
346 Tensor<float, 0> result3 = tensor.sum(reduction_list); in test_mixed_index_list() local
360 VERIFY_IS_APPROX(result3(), expected); in test_mixed_index_list()
Dcxx11_tensor_reduction.cpp347 Tensor<int, 2, DataLayout> result3 = in test_tensor_maps() local
360 VERIFY_IS_EQUAL(result3(i, j), sum); in test_tensor_maps()
/external/python/cpython2/Lib/distutils/tests/
Dtest_text_file.py32 result3 = ["# test file\n",
79 test_input(3, "strip blanks", in_file, result3)
/external/icu/icu4c/source/test/intltest/
Dnmfmapts.cpp161 Formattable result1, result2, result3; in testAPI() local
176 fr->parse(text, result3, status); in testAPI()
180 if(result3.getType() != Formattable::kDouble && result3.getDouble() != d) { in testAPI()
183 logln(text + " parsed into " + (int32_t) result3.getDouble()); in testAPI()
Dcitrtest.cpp199 UnicodeString result1, result2, result3; in TestConstructionAndEquality() local
235 test1c->getText(result3); in TestConstructionAndEquality()
236 if(result1 != result2 || result1 != result3) in TestConstructionAndEquality()
264 testChar3->getText(result3); in TestConstructionAndEquality()
265 if(result1 != result3 || result1 == result2) in TestConstructionAndEquality()
268 testChar3->getText(result3); in TestConstructionAndEquality()
269 if(result1 == result3 || result2 != result3) in TestConstructionAndEquality()
272 testChar3->getText(result3); in TestConstructionAndEquality()
273 if(result1 != result3 || result1 == result2) in TestConstructionAndEquality()
Ddtfmapts.cpp190 UDate result2, result3; in testAPI() local
206 result3 = def->parse(text, pos01); in testAPI()
207 logln(text + " parsed into " + result3); in testAPI()
/external/libmojo/mojo/edk/system/
Dawakable_list_unittest.cc163 MojoResult result3; in TEST() local
256 test::SimpleWaiterThread thread3(&result3, &context3); in TEST()
279 EXPECT_EQ(MOJO_RESULT_FAILED_PRECONDITION, result3); in TEST()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DBeanConstructorTest.java63 TestBean1 result3 = (TestBean1) new Yaml().load(output); in testPrimitivesConstructor() local
64 assertNotNull(result3); in testPrimitivesConstructor()
/external/clang/test/SemaObjCXX/
Dinstantiate-message.mm18 …R *result3 = [ClassMethods method1:arg1]; // expected-error{{cannot initialize a variable of type …
/external/python/cpython2/Lib/unittest/test/
Dtest_break.py116 result3 = unittest.TestResult()
129 self.assertFalse(result3.shouldStop)
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java2022 byte [] result3 = MessageNano.toByteArray(msg); in testNanoRepeatedInt32ReMerge()
2025 byte [] result = new byte[result1.length + result2.length + result3.length]; in testNanoRepeatedInt32ReMerge()
2028 System.arraycopy(result3, 0, result, result1.length + result2.length, result3.length); in testNanoRepeatedInt32ReMerge()
2047 byte [] result3 = MessageNano.toByteArray(msg); in testNanoRepeatedNestedEnumReMerge()
2050 byte [] result = new byte[result1.length + result2.length + result3.length]; in testNanoRepeatedNestedEnumReMerge()
2053 System.arraycopy(result3, 0, result, result1.length + result2.length, result3.length); in testNanoRepeatedNestedEnumReMerge()
2083 byte [] result3 = MessageNano.toByteArray(msg); in testNanoRepeatedNestedMessageReMerge()
2086 byte [] result = new byte[result1.length + result2.length + result3.length]; in testNanoRepeatedNestedMessageReMerge()
2089 System.arraycopy(result3, 0, result, result1.length + result2.length, result3.length); in testNanoRepeatedNestedMessageReMerge()
/external/toolchain-utils/dejagnu/gdb_baseline/
Di686-pc-linux-gnu17913 PASS: gdb.python/py-value.exp: python result3 = i()
Dx86_64-cros-linux-gnu18181 PASS: gdb.python/py-value.exp: python result3 = i()
Darmv7a-cros-linux-gnueabi17822 PASS: gdb.python/py-value.exp: python result3 = i()