/external/tcpdump/ |
print-beep.c | 32 const char *str2, u_int l2) 34 if (!ND_TTEST2(*str2, tl1)) { 45 return (strncmp(tstr1, str2, tl1) == 0 ? 1 : 0);
|
/external/libvncserver/webclients/java-applet/ssl/ |
onetimekey | 59 str2=`tail +$n $in | $pbinhex` 61 echo "$str2" 63 echo "$str1,$str2"
|
/external/clang/test/SemaCXX/ |
string-plus-char.cpp | 18 char *str2 = str + 'c'; // expected-warning {{adding 'char' to a string pointer does not append to the string}} expected-note {{use array indexing to silence this warning}} local 26 str2 = str + u'a'; // expected-warning {{adding 'char16_t' to a string pointer does not append to the string}} expected-note {{use array indexing to silence this warning}}
|
/external/llvm/test/MC/X86/AlignedBundling/ |
rodata-section.s | 10 movl $.str2, 8(%esp) 27 .type .str2,@object 28 .str2: 30 .size .str2, 7
|
/external/valgrind/include/ |
pub_tool_basics_asm.h | 49 #define VGAPPEND(str1,str2) str1##str2
|
/external/pdfium/core/fxcrt/ |
widestring.h | 57 WideString(const WideStringView& str1, const WideStringView& str2); 209 const WideStringView& str2) { 210 return WideString(str1, str2); 212 inline WideString operator+(const WideStringView& str1, const wchar_t* str2) { 213 return WideString(str1, str2); 215 inline WideString operator+(const wchar_t* str1, const WideStringView& str2) { 216 return WideString(str1, str2); 221 inline WideString operator+(wchar_t ch, const WideStringView& str2) { 222 return WideString(ch, str2); 224 inline WideString operator+(const WideString& str1, const WideString& str2) { [all...] |
bytestring.h | 222 const ByteStringView& str2) { 223 return ByteString(str1, str2); 225 inline ByteString operator+(const ByteStringView& str1, const char* str2) { 226 return ByteString(str1, str2); 228 inline ByteString operator+(const char* str1, const ByteStringView& str2) { 229 return ByteString(str1, str2); 234 inline ByteString operator+(char ch, const ByteStringView& str2) { 235 return ByteString(ch, str2); 237 inline ByteString operator+(const ByteString& str1, const ByteString& str2) { 238 return ByteString(str1.AsStringView(), str2.AsStringView()) [all...] |
/art/test/072-reachability-fence/src/ |
Main.java | 26 String str2 = generateString("String", 2); local 31 wrefs[2] = new WeakReference(str2); 36 str2 = null; 52 Reference.reachabilityFence(str2);
|
/external/icu/icu4c/source/test/intltest/ |
tchcfmt.h | 50 double v2, const char* str2,
|
/external/ltp/testcases/kernel/syscalls/memmap/ |
mem03.c | 76 char str2[] = "my test mem"; local 87 write(f2, str2, strlen(str2)); 104 if (strncmp(str2, mm2, strlen(str2))) 129 if (strncmp(str2, mm2, strlen(str2)))
|
/art/test/072-precise-gc/src/ |
Main.java | 39 String str2 = generateString("String", 2); local 51 wrefs[2] = new WeakReference(str2); 72 String str2; local 103 str2 = generateString("String", 2); 111 System.out.println(str0+str1+str2+str3+str4+str5+str6+str7+str8+str9);
|
/external/libxml2/include/libxml/ |
xmlstring.h | 65 const xmlChar *str2); 68 const xmlChar *str2, 72 const xmlChar *str2); 75 const xmlChar *str2, 79 const xmlChar *str2); 95 const xmlChar *str2,
|
/external/pdfium/testing/tools/ |
text_diff.py | 19 str2 = f2.readlines(); 21 str1, str2, fromfile=filename1, tofile=filename2)
|
/external/clang/test/Sema/ |
string-plus-char.c | 11 char *str2 = str + 'c'; // expected-warning {{adding 'char' to a string pointer does not append to the string}} expected-note {{use array indexing to silence this warning}} local
|
/external/icu/icu4c/source/samples/translit/answers/ |
main_4.cpp | 42 UnicodeString str, str2; local 105 str2 = str; 111 unaccent->transliterate(str2); 113 uprintf(escape(str2));
|
/external/icu/icu4c/source/samples/translit/ |
main.cpp | 43 UnicodeString str, str2; local 107 str2 = str; 113 unaccent->transliterate(str2); 115 uprintf(escape(str2));
|
/external/webrtc/webrtc/base/ |
versionparsing_unittest.cc | 27 std::string str2("2.0.0.1"); 29 EXPECT_TRUE(ParseVersionString(str2, kExampleSegments, ver)); 37 std::string str2(""); 38 EXPECT_FALSE(ParseVersionString(str2, kExampleSegments, ver));
|
/external/libxml2/ |
xmlstring.c | 124 * @str2: the second xmlChar * 132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { 135 if (str1 == str2) return(0); 137 if (str2 == NULL) return(1); 139 tmp = *str1++ - *str2; 141 } while (*str2++ != 0); 148 * @str2: the second xmlChar * 157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { 158 if (str1 == str2) return(1); 160 if (str2 == NULL) return(0) [all...] |
/external/icu/icu4c/source/common/ |
cstring.cpp | 235 uprv_stricmp(const char *str1, const char *str2) { 237 if(str2==NULL) { 242 } else if(str2==NULL) { 251 c2=(unsigned char)*str2; 268 ++str2; 274 uprv_strnicmp(const char *str1, const char *str2, uint32_t n) { 276 if(str2==NULL) { 281 } else if(str2==NULL) { 290 c2=(unsigned char)*str2; 307 ++str2; [all...] |
/external/valgrind/memcheck/tests/ |
leak_cpp_interior.cpp | 93 std::string str2; variable 107 str2 = str; 125 str2 += " rocks (str2)\n"; // interior ptr.
|
/external/skia/tests/ |
ParsePathTest.cpp | 12 SkString str, str2; local 19 SkParsePath::ToSVGString(path2, &str2); 20 REPORTER_ASSERT(reporter, str == str2); 25 SkDebugf("str1=%s\nstr2=%s\n", str.c_str(), str2.c_str());
|
/external/skqp/tests/ |
ParsePathTest.cpp | 12 SkString str, str2; local 19 SkParsePath::ToSVGString(path2, &str2); 20 REPORTER_ASSERT(reporter, str == str2); 25 SkDebugf("str1=%s\nstr2=%s\n", str.c_str(), str2.c_str());
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/ |
merge2.s | 12 .section .rodata.str2,"aMS","progbits",4
|
/external/libusb/libusb/os/ |
windows_common.h | 56 #define safe_strcmp(str1, str2) strcmp(((str1==NULL)?"<NULL>":str1), ((str2==NULL)?"<NULL>":str2)) 57 #define safe_stricmp(str1, str2) _stricmp(((str1==NULL)?"<NULL>":str1), ((str2==NULL)?"<NULL>":str2)) 58 #define safe_strncmp(str1, str2, count) strncmp(((str1==NULL)?"<NULL>":str1), ((str2==NULL)?"<NULL>":str2), count)
|
/external/clang/test/FixIt/ |
typo.cpp | 26 tring str2; // expected-error{{unknown type name 'tring'; did you mean 'string'?}} variable 91 nonstd::wide_string<char> str2; // expected-error{{no template named 'wide_string' in namespace 'nonstd'; did you mean 'another::wide_string'?}} local
|