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

1 2

  /toolchain/binutils/binutils-2.27/gold/testsuite/
icf_string_merge_test.cc 32 const char* const str3 = "cccccaaaaastr1"; variable
45 return str3;
  /external/clang/test/Lexer/
cxx0x_raw_string_delim_length.cpp 5 const char *str3 = R"()"; // ok variable
  /external/llvm/test/MC/ELF/
entsize.s 20 .type .L.str3,@object # @.str3
21 .L.str3:
23 .size .L.str3, 9
  /external/swiftshader/third_party/LLVM/test/MC/ELF/
entsize.s 20 .type .L.str3,@object # @.str3
21 .L.str3:
23 .size .L.str3, 9
  /external/icu/icu4c/source/test/intltest/
tchcfmt.h 51 double v3, const char* str3);
incaltst.cpp 436 UnicodeString str3; local
437 fmt->format(otherDate, str3);
438 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
521 UnicodeString str3; local
524 fmt->format(otherDate, str3);
525 errln("Parse incorrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
552 UnicodeString str3; local
555 fmt->format(otherDate, str3);
557 otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
854 UnicodeString str3; local
    [all...]
tchcfmt.cpp 569 double v3, const char* str3) {
590 const char* str[] = {str1, str2, str3};
  /art/test/072-precise-gc/src/
Main.java 40 String str3 = generateString("String", 3); local
52 wrefs[3] = new WeakReference(str3);
73 String str3; local
104 str3 = generateString("String", 3);
111 System.out.println(str0+str1+str2+str3+str4+str5+str6+str7+str8+str9);
  /art/test/072-reachability-fence/src/
Main.java 27 String str3 = generateString("String", 3); local
32 wrefs[3] = new WeakReference(str3);
53 Reference.reachabilityFence(str3);
  /external/ltp/testcases/kernel/syscalls/fmtmsg/
fmtmsg01.c 63 char *str3 = "LTP:fmtmsg: LTP_TEST: LTP fmtmsg() test2 message, NOT an error"; variable
169 fread(buf, sizeof(buf[0]), strlen(str3), fp);
170 if (strcmp(str3, buf) != 0) {
171 fprintf(temp, "Expected string: %s\n", str3);
  /external/mesa3d/src/util/tests/hash_table/
collision.c 39 const char *str3 = "test3"; local
54 _mesa_hash_table_insert_pre_hashed(ht, bad_hash, str3, NULL);
  /external/webrtc/webrtc/base/
versionparsing_unittest.cc 39 std::string str3("garbarge");
40 EXPECT_FALSE(ParseVersionString(str3, kExampleSegments, ver));
  /external/elfutils/tests/
elfstrtab.c 42 static char *str3; variable
101 if (str == NULL || strcmp (str3, str) != 0)
261 str3 = "three2";
262 str3_off = add_string (scn, str3);
323 str3 = "forty-two";
324 str3_off = add_string (scn, str3);
  /external/clang/test/FixIt/
typo.cpp 28 ::other_std::string str3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'?}} variable
  /external/libxml2/
error.c 444 * @str3: extra string info
459 const char *str2, const char *str3, int int1, int col,
593 if (str3 != NULL)
594 to->str3 = (char *) xmlStrdup((const xmlChar *) str3);
887 if (err->str3 != NULL)
888 xmlFree(err->str3);
958 char *message, *file, *str1, *str2, *str3; local
967 str3 = (char *) xmlStrdup ((xmlChar *) from->str3);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ulistfmttest.c 33 static const UChar str3[] = { 0x44,0x64,0x64,0x64,0 }; /* "Dddd" */ variable
35 static const UChar* strings[] = { str0, str1, str2, str3, str4 };
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 62 String str3 = "Here is some more data.\n"; local
70 os.write(str3.getBytes());
74 assertEquals(str1 + str2 + str3, received);
  /art/test/074-gc-thrash/src/
Main.java 271 String str3; local
288 funStr = str3 = makeString(iteration);
  /external/icu/icu4c/source/test/iotest/
stream.cpp 58 UnicodeString str3 = UNICODE_STRING_SIMPLE("2"); local
97 outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << UTF8_NEW_LINE << str4 << ends;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
JapaneseTest.java 241 String str3; local
244 str3 = fmt.format(otherDate);
249 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() );
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
JapaneseTest.java 238 String str3; local
241 str3 = fmt.format(otherDate);
246 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() );
  /external/clang/test/SemaCXX/
warn-unsequenced.cpp 52 S str3 = { a++ + a, a++ }; // expected-warning {{unsequenced modification and access}} local
  /external/libmojo/base/android/
scoped_java_ref_unittest.cc 105 ScopedJavaLocalRef<jstring> str3(str2);
  /art/test/082-inline-execute/src/
Main.java 249 String str3 = "abc"; local
254 Assert.assertEquals(str3.indexOf('a'), 0);
255 Assert.assertEquals(str3.indexOf('b'), 1);
256 Assert.assertEquals(str3.indexOf('c'), 2);
266 Assert.assertEquals(str3.indexOf('a',0), 0);
267 Assert.assertEquals(str3.indexOf('a',1), -1);
268 Assert.assertEquals(str3.indexOf('a',1234), -1);
269 Assert.assertEquals(str3.indexOf('b',0), 1);
270 Assert.assertEquals(str3.indexOf('b',1), 1);
271 Assert.assertEquals(str3.indexOf('c',2), 2)
324 String str3 = "abc"; local
    [all...]
  /external/libbrillo/brillo/
any_unittest.cc 273 Any str3{std::string{"bar"}};
275 EXPECT_NE(str2, str3);

Completed in 580 milliseconds

1 2