HomeSort by relevance Sort by last modified time
    Searched full:str2 (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /external/llvm/test/CodeGen/Generic/
2005-12-01-Crash.ll 5 @str2 = external global [29 x i8] ; <[29 x i8]*> [#uses=1]
14 %tmp23 = call i32 (i8*, ...)* @printf( i8* getelementptr ([29 x i8]* @str2, i32 0, i64 0), i32 %a11, double 0.000000e+00, i32 %tmp17, double %a14, i32 0 ) ; <i32> [#uses=0]
  /external/llvm/test/CodeGen/Thumb2/
2009-08-04-CoalescerAssert.ll 6 @.str2 = external constant [30 x i8], align 1 ; <[30 x i8]*> [#uses=1]
20 %1 = call i32 (%struct.FILE*, i8*, ...)* @fprintf(%struct.FILE* noalias undef, i8* noalias getelementptr ([30 x i8]* @.str2, i32 0, i32 0), i8* %0, i8* null) nounwind ; <i32> [#uses=0]
  /external/llvm/test/Transforms/SimplifyLibCalls/
2007-04-06-strchr-miscompile.ll 10 @str2 = internal constant [5 x i8] c"Ponk\00"
26 %tmp3 = tail call i8* @strchr( i8* getelementptr ([5 x i8]* @str2, i32 0, i32 1), i32 80 ) ; <i8*> [#uses=1]
StrNCmp.ll 55 define i32 @test6(i8* %str1, i8* %str2) {
56 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 1)
65 define i32 @test7(i8* %str1, i8* %str2) {
66 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 0)
StrStr.ll 9 @.str2 = private constant [6 x i8] c"abcde\00" ; <[6 x i8]*> [#uses=1]
34 %call = tail call i8* @strstr(i8* getelementptr inbounds ([6 x i8]* @.str2, i32 0, i32 0), i8* getelementptr inbounds ([4 x i8]* @.str3, i32 0, i32 0)) nounwind ; <i8*> [#uses=1]
38 ; CHECK: getelementptr inbounds ([6 x i8]* @.str2, i32 0, i64 1)
  /packages/inputmethods/PinyinIME/jni/include/
utf16char.h 42 int utf16_strcmp(const char16 *str1, const char16 *str2);
43 int utf16_strncmp(const char16 *str1, const char16 *str2, size_t size);
  /dalvik/tests/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/icu4c/common/
cstring.c 222 T_CString_stricmp(const char *str1, const char *str2) {
224 if(str2==NULL) {
229 } else if(str2==NULL) {
238 c2=(unsigned char)*str2;
255 ++str2;
261 T_CString_strnicmp(const char *str1, const char *str2, uint32_t n) {
263 if(str2==NULL) {
268 } else if(str2==NULL) {
277 c2=(unsigned char)*str2;
294 ++str2;
    [all...]
  /external/openssl/crypto/pkcs7/
example.c 75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
115 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2)
149 *str2=malloc(os2->length+1);
151 memcpy(*str2,os2->data,os2->length);
153 (*str2)[os2->length]='\0';
238 X509_ATTRIBUTE *add_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
279 int sk_get_seq2string(STACK_OF(X509_ATTRIBUTE) *sk, char **str1, char **str2)
316 *str2=malloc(os2->length+1);
318 memcpy(*str2,os2->data,os2->length);
320 (*str2)[os2->length]='\0'
    [all...]
  /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/stlport/test/unit/
string_test.cpp 256 string const ref_short_str1("str1"), ref_short_str2("str2");
513 string str2("2345");
514 str0.insert(str0.size(), str2, 1, 2);
867 static string str2; local
872 str2 = "1234567890123456789012345678901234567890";
875 CPPUNIT_ASSERT(str2[29] == '0');
907 string str2; local
909 str2 = "abcdef";
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
911 str2 = "abcde"
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 256 string const ref_short_str1("str1"), ref_short_str2("str2");
513 string str2("2345");
514 str0.insert(str0.size(), str2, 1, 2);
867 static string str2; local
872 str2 = "1234567890123456789012345678901234567890";
875 CPPUNIT_ASSERT(str2[29] == '0');
907 string str2; local
909 str2 = "abcdef";
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
911 str2 = "abcde"
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 256 string const ref_short_str1("str1"), ref_short_str2("str2");
513 string str2("2345");
514 str0.insert(str0.size(), str2, 1, 2);
867 static string str2; local
872 str2 = "1234567890123456789012345678901234567890";
875 CPPUNIT_ASSERT(str2[29] == '0');
907 string str2; local
909 str2 = "abcdef";
910 CPPUNIT_ASSERT( str1.compare(str2) == 0 );
911 str2 = "abcde"
    [all...]
  /external/icu4c/test/intltest/
tchcfmt.h 48 double v2, const char* str2,
  /external/libxslt/libxslt/
xsltlocale.h 55 int xsltLocaleStrcmp(xsltLocale locale, const xsltLocaleChar *str1, const xsltLocaleChar *str2);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AllocationInfo.java 100 private int compareOptionalString(String str1, String str2) {
102 if (str2 == null) {
105 return str1.compareTo(str2);
108 if (str2 == null) {
  /external/llvm/test/MC/ELF/
entsize.ll 6 @.str2 = private unnamed_addr constant [7 x i8] c"String\00"
12 %2 = call i32 @puts(i8* getelementptr inbounds ([7 x i8]* @.str2, i32 0, i32 0))
  /external/llvm/unittests/ADT/
FoldingSet.cpp 32 std::string str2 = ">" + str1; local
33 b.AddString(str2.c_str() + 1);
  /external/tcpdump/
print-beep.c 42 l_strnstart(const char *tstr1, u_int tl1, const char *str2, u_int l2)
48 return (strncmp(tstr1, str2, tl1) == 0 ? 1 : 0);
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 55 String str2 = "Attr2"; local
60 assertTrue(attr2.toString().equals(str2));
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptstring/
tst_qscriptstring.cpp 63 QScriptString str2 = str; local
64 QVERIFY(!str2.isValid());
79 QScriptString str2 = str; local
80 QCOMPARE(str, str2);
92 QVERIFY(str2.isValid());
93 QCOMPARE(str2.toString(), ciao);
  /external/webkit/Source/WebCore/platform/text/
SegmentedString.h 243 static bool equalsLiterally(const UChar* str1, const UChar* str2, size_t count) { return !memcmp(str1, str2, count * sizeof(UChar)); }
244 static bool equalsIgnoringCase(const UChar* str1, const UChar* str2, size_t count) { return !WTF::Unicode::umemcasecmp(str1, str2, count); }
246 template<bool equals(const UChar* str1, const UChar* str2, size_t count)>
257 template<bool equals(const UChar* str1, const UChar* str2, size_t count)>
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
IOCase.java 138 * @param str2 the second string to compare, not null
142 public int checkCompareTo(String str1, String str2) {
143 if (str1 == null || str2 == null) {
146 return sensitive ? str1.compareTo(str2) : str1.compareToIgnoreCase(str2);
156 * @param str2 the second string to compare, not null
160 public boolean checkEquals(String str1, String str2) {
161 if (str1 == null || str2 == null) {
164 return sensitive ? str1.equals(str2) : str1.equalsIgnoreCase(str2);
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldPushbackReaderTest.java 247 String str2 = "0123456789"; local
248 char[] buf2 = str2.toCharArray();
260 assertEquals("Incorrect bytes read", str2, new String(readBuf));
307 String str2 = "0123456789"; local
308 char[] buf2 = (str2 + str2 + str2).toCharArray();
  /external/qemu/android/utils/
dll.c 20 append_string( const char* str1, const char* str2 )
23 int len2 = strlen(str2);
28 memcpy(result + len1, str2, len2);

Completed in 1302 milliseconds

12 3 4 5 6 7 8 9