HomeSort by relevance Sort by last modified time
    Searched refs:result2 (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/kmod/testsuite/
test-strbuf.c 36 char *result1, *result2; local
49 result2 = strbuf_steal(&buf);
50 assert_return(streq(result1, result2), EXIT_FAILURE);
53 free(result2);
63 char *result1, *saveptr = NULL, *str, *result2; local
82 result2 = strbuf_steal(&buf);
83 assert_return(!streq(TEXT, result2), EXIT_FAILURE);
84 assert_return(strncmp(TEXT, result2, strlen(TEXT) - lastwordlen) == 0,
86 assert_return(result2[strlen(TEXT) - lastwordlen] == '\0',
90 free(result2);
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/ruby/
RubyTest.java 49 TestObject result2 = beanLoader.loadAs(output, TestObject.class); local
50 assertEquals(0, result2.getSub1().getAtt2());
51 assertEquals("MyString", result2.getSub2().getAtt1());
52 assertEquals(1, result2.getSub2().getAtt2().size());
53 assertEquals(12345, result2.getSub2().getAtt3());
73 TestObject result2 = parseObject(output); local
74 assertEquals(0, result2.getSub1().getAtt2());
75 assertEquals("MyString", result2.getSub2().getAtt1());
76 assertEquals(1, result2.getSub2().getAtt2().size());
77 assertEquals(12345, result2.getSub2().getAtt3())
96 TestObject result2 = parseObject(output); local
    [all...]
  /external/libcxx/test/std/containers/associative/map/
compare.pass.cpp 48 IterBool result2 = map.insert(std::make_pair(Key(0), 43)); local
49 assert(!result2.second);
  /external/icu/icu4c/source/samples/citer/
citer.cpp 70 UnicodeString result1, result2; local
73 test2->getText(result2);
74 if (result1 != result2) {
135 UnicodeString result1, result2; local
138 test2->getText(result2);
139 if (result1 != result2) {
  /external/cldr/tools/java/org/unicode/cldr/draft/
CodePoints.java 102 int[] result2 = new int[pos]; local
103 System.arraycopy(result, 0, result2, 0, pos);
104 result = result2;
  /external/libvpx/libvpx/vp8/common/arm/neon/
loopfiltersimpleverticaledge_neon.c 51 const uint8x8x2_t result2) {
54 write_2x4(dst, pitch, result2);
59 const uint8x8x2_t result2) {
77 vst2_lane_u8(dst, result2, 0);
79 vst2_lane_u8(dst, result2, 1);
81 vst2_lane_u8(dst, result2, 2);
83 vst2_lane_u8(dst, result2, 3);
85 vst2_lane_u8(dst, result2, 4);
87 vst2_lane_u8(dst, result2, 5);
89 vst2_lane_u8(dst, result2, 6)
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_const.cpp 45 Tensor<int, 2> result2 = constant2.chip(0, 2); local
51 VERIFY_IS_EQUAL((result2(i,j)), random(i,j,0));
cxx11_tensor_striding.cpp 98 Tensor<float, 4, DataLayout> result2(3, 12, 10, 21);
99 result2.stride(strides) = tensor.stride(no_strides);
105 VERIFY_IS_EQUAL(tensor(i,j,k,l), result2(2*i,4*j,2*k,3*l));
  /external/skia/tests/
SrcOverTest.cpp 38 unsigned result2 = test_srcover2(0xFF, i); local
41 opaqueCounter2 += (result2 == 0xFF);
PathOpsLineIntersectionTest.cpp 91 SkDPoint result2 = line2.ptAtT(ts[1][i]); local
92 if (nearAllowed && result1.roughlyEqual(result2)) {
95 if (!result1.approximatelyEqual(result2) && !ts.nearlySame(i)) {
97 result2 = line2.ptAtT(ts[1][i ^ 1]);
98 if (!result1.approximatelyEqual(result2)) {
101 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2));
  /external/skqp/tests/
SrcOverTest.cpp 38 unsigned result2 = test_srcover2(0xFF, i); local
41 opaqueCounter2 += (result2 == 0xFF);
PathOpsLineIntersectionTest.cpp 91 SkDPoint result2 = line2.ptAtT(ts[1][i]); local
92 if (nearAllowed && result1.roughlyEqual(result2)) {
95 if (!result1.approximatelyEqual(result2) && !ts.nearlySame(i)) {
97 result2 = line2.ptAtT(ts[1][i ^ 1]);
98 if (!result1.approximatelyEqual(result2)) {
101 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_text_file.py 27 result2 = ["\n",
72 test_input(2, "strip comments", in_file, result2)
  /external/python/cpython2/Lib/distutils/tests/
test_text_file.py 27 result2 = ["\n",
72 test_input(2, "strip comments", in_file, result2)
  /external/python/cpython3/Lib/distutils/tests/
test_text_file.py 27 result2 = ["\n",
72 test_input(2, "strip comments", in_file, result2)
  /art/test/918-fields/
fields.cc 71 jvmtiError result2 = jvmti_env->GetFieldName(klass, id, nullptr, nullptr, nullptr); local
72 if (result2 != JVMTI_ERROR_NONE) {
74 jvmti_env->GetErrorName(result2, &err);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 102 Date result2 = new Date(); local
108 result2 = def.parse(text);
113 logln(text + " parsed into " + result2);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 99 Date result2 = new Date(); local
105 result2 = def.parse(text);
110 logln(text + " parsed into " + result2);
  /external/libvpx/libvpx/vpx_dsp/mips/
itrans16_dspr2.c 26 int result1, result2, result3, result4; local
44 "sub %[result2], %[load1], %[load2] \n\t"
46 "madd $ac2, %[result2], %[cospi_16_64] \n\t"
69 [result2] "=&r"(result2), [step2_0] "=&r"(step2_0),
95 "extp %[result2], $ac3, 31 \n\t"
110 "sub %[load5], %[result1], %[result2] \n\t"
125 "add %[step2_8], %[result1], %[result2] \n\t"
130 [result2] "=&r"(result2), [result3] "=&r"(result3)
401 int result1, result2, result3, result4; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_plistlib.py 182 result2 = plistlib.readPlistFromString(plistlib.writePlistToString(test2))
184 self.assertEqual(test2, result2)
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
AnyTest.java 134 TestAllTypes result2 = container.getValue().unpack(TestAllTypes.class); local
135 assertTrue(result1 == result2);
  /external/tensorflow/tensorflow/python/data/kernel_tests/
zip_test.py 90 result1, (result2, result3) = self.evaluate(get_next())
92 self.assertAllEqual(equal_length_components[1][i], result2)
  /external/icu/icu4c/source/test/cintltst/
currtest.c 198 double result1 = 0.0, result2 = 0.0; local
225 result2 = unum_parseDoubleCurrency(parser, TEST_NUMBER, -1, &pos, buffer, &status);
226 if (result1 != result2 || U_FAILURE(status)) {
228 result1, result2, u_errorName(status));
  /cts/suite/audio_quality/test/
TaskCaseTest.cpp 147 android::String8 result2; local
148 ASSERT_TRUE(mTaskCase->translateVarName(orig2, result2));
149 ASSERT_TRUE(StringUtil::compare(result2, "hello_1_2_3_there") == 0);
  /cts/tests/framework/base/windowmanager/dndtargetapp/src/android/server/wm/dndtargetapp/
DropTarget.java 282 final String result2 = queryPrefixed(uri, "2"); local
283 if (!result2.equals(RESULT_OK)) {
284 return result2;

Completed in 1056 milliseconds

1 2 3 4 5 6