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.25/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/icu/icu4c/source/test/intltest/
tchcfmt.h 49 double v3, const char* str3);
incaltst.cpp 434 UnicodeString str3; local
435 fmt->format(otherDate, str3);
436 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
519 UnicodeString str3; local
522 fmt->format(otherDate, str3);
523 errln("Parse incorrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
550 UnicodeString str3; local
553 fmt->format(otherDate, str3);
555 otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
852 UnicodeString str3; local
    [all...]
tchcfmt.cpp 568 double v3, const char* str3) {
589 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);
  /external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
utils.h 27 stringstream str1, str2, str3; local
31 str3 << "Inlier ratio: " << setprecision(2) << stats.ratio;
35 putText(image, str3.str(), Point(0, image.rows - 30), font, 2, Scalar::all(255), 3);
  /bionic/libc/arch-mips/string/
mips_strlen.c 140 char str3[] = "another string"; variable
192 P (str3, 0);
193 P (str3, 1);
194 P (str3, 2);
195 P (str3, 3);
  /external/webrtc/webrtc/base/
versionparsing_unittest.cc 39 std::string str3("garbarge");
40 EXPECT_FALSE(ParseVersionString(str3, kExampleSegments, ver));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 61 String str3 = "Here is some more data.\n"; local
69 os.write(str3.getBytes());
73 assertEquals(str1 + str2 + str3, received);
  /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 31 static const UChar str3[] = { 0x44,0x64,0x64,0x64,0 }; /* "Dddd" */ variable
33 static const UChar* strings[] = { str0, str1, str2, str3, str4 };
  /art/test/074-gc-thrash/src/
Main.java 272 String str3; local
289 funStr = str3 = makeString(iteration);
  /external/icu/icu4c/source/test/iotest/
stream.cpp 56 UnicodeString str3 = UNICODE_STRING_SIMPLE("2"); local
95 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 235 String str3; local
238 str3 = fmt.format(otherDate);
243 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() );
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
JapaneseTest.java 231 String str3; local
234 str3 = fmt.format(otherDate);
239 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/llvm/unittests/Support/
YAMLIOTest.cpp 395 llvm::StringRef str3; member in struct:StringTypes
424 io.mapRequired("str3", st.str3);
455 map.str3 = "`ccc";
508 EXPECT_TRUE(map.str3.equals("`ccc"));
2079 llvm::StringRef str1, str2, str3; member in struct:FlowMap
    [all...]
  /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);
  /external/libxml2/include/libxml/
xmlerror.h 87 char *str3; /* extra string information */ member in struct:_xmlError
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ObjectStreamFieldTest.java 356 String str3 = "string 3"; field in class:MockClass

Completed in 807 milliseconds

1 2