HomeSort by relevance Sort by last modified time
    Searched full:str1 (Results 1 - 25 of 793) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/094-pattern/
expected.txt 0 str1 matches: true
  /dalvik/tests/094-pattern/
expected.txt 0 str1 matches: true
  /external/llvm/test/CodeGen/X86/
cstring.ll 4 @str1 = internal constant [1 x i8] zeroinitializer
switch-crit-edge-constant.ll 4 ; CHECK: {{mov.*str1}}
5 ; CHECK-NOT: {{mov.*str1}}
9 @str1 = internal constant [5 x i8] c"bonk\00" ; <[5 x i8]*> [#uses=1]
37 %s.0 = phi i8* [ getelementptr ([8 x i8]* @str, i32 0, i64 0), %cond_true ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8]* @str1, i32 0, i64 0), %entry ], [ getelementp (…)
    [all...]
  /external/stlport/test/unit/
collate_facets_test.cpp 22 char const str1[] = "abcdef1"; local
24 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1;
27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
42 char const str1[] = "abcdef1"; local
89 wchar_t const str1[] = L"abcdef1"; local
216 char const str1[] = "abcdef1"; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
collate_facets_test.cpp 22 char const str1[] = "abcdef1"; local
24 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1;
27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
42 char const str1[] = "abcdef1"; local
89 wchar_t const str1[] = L"abcdef1"; local
216 char const str1[] = "abcdef1"; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
collate_facets_test.cpp 22 char const str1[] = "abcdef1"; local
24 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1;
27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
42 char const str1[] = "abcdef1"; local
89 wchar_t const str1[] = L"abcdef1"; local
216 char const str1[] = "abcdef1"; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
cstring.h 67 # define uprv_stricmp(str1, str2) U_STANDARD_CPP_NAMESPACE stricmp(str1, str2)
68 # define uprv_strnicmp(str1, str2, n) U_STANDARD_CPP_NAMESPACE strnicmp(str1, str2, n)
70 # define uprv_stricmp(str1, str2) U_STANDARD_CPP_NAMESPACE _stricmp(str1, str2)
71 # define uprv_strnicmp(str1, str2, n) U_STANDARD_CPP_NAMESPACE _strnicmp(str1, str2, n)
74 # define uprv_stricmp(str1, str2) U_STANDARD_CPP_NAMESPACE strcasecmp(str1, str2)
    [all...]
uhash_us.cpp 39 const UnicodeString *str1 = (const UnicodeString*) key1.pointer; local
41 if (str1 == str2) {
44 if (str1 == NULL || str2 == NULL) {
47 return *str1 == *str2;
  /external/clang/test/CodeGen/
2007-05-11-str-const.c 4 static const unsigned char str1[]="1"; variable
  /external/llvm/test/Object/Inputs/
trivial-object-test.elf-i386 
  /external/llvm/test/tools/llvm-readobj/Inputs/
trivial.obj.elf-i386 
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
editdistance.py 32 def edit_distance(str1, str2):
34 distances = [array(unsignedShort, (0,) * (len(str2) + 1)) for i in range(0, len(str1) + 1)]
35 # distances[0][0] = 0 since distance between str1[:0] and str2[:0] is 0
36 for i in range(1, len(str1) + 1):
37 distances[i][0] = i # Distance between str1[:i] and str2[:0] is i
40 distances[0][j] = j # Distance between str1[:0] and str2[:j] is j
42 for i in range(0, len(str1)):
44 diff = 0 if str1[i] == str2[j] else 1
47 return distances[len(str1)][len(str2)]
  /external/clang/test/CXX/except/except.spec/
p5-pointers.cpp 75 struct Str1 { void f() throw(int); }; // expected-note {{previous declaration}}
76 void Str1::f() // expected-warning {{missing exception specification}}
82 void (Str1::*pfn1)() throw(int) = &Str1::f; // valid
83 void (Str1::*pfn2)() = &Str1::f; // valid
84 void (Str1::*pfn3)() throw() = &Str1::f; // expected-error {{not superset}}
  /external/llvm/test/CodeGen/Generic/
annotate.ll 6 @.str1 = private unnamed_addr constant [4 x i8] c"t.c\00", section "llvm.metadata"
11 %0 = call i32 @llvm.annotation.i32(i32 %a, i8* getelementptr inbounds ([4 x i8]* @.str, i32 0, i32 0), i8* getelementptr inbounds ([4 x i8]* @.str1, i32 0, i32 0), i32 2)
  /external/llvm/test/MC/ELF/
basic-elf-32.s 10 movl $.L.str1, (%esp)
20 .type .L.str1,@object # @.str1
21 .section .rodata.str1.1,"aMS",@progbits,1
22 .L.str1:
24 .size .L.str1, 6
49 // CHECK: 0x6 R_386_32 .rodata.str1.1
51 // CHECK: 0x12 R_386_32 .rodata.str1.1
basic-elf-64.s 10 movl $.L.str1, %edi
20 .type .L.str1,@object # @.str1
21 .section .rodata.str1.1,"aMS",@progbits,1
22 .L.str1:
24 .size .L.str1, 6
49 // CHECK: 0x5 R_X86_64_32 .rodata.str1.1 0x0
51 // CHECK: 0xF R_X86_64_32 .rodata.str1.1 0x6
  /external/llvm/test/Transforms/InstCombine/
strncmp-1.ll 21 %str1 = getelementptr inbounds [1 x i8]* @null, i32 0, i32 0
22 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
27 define i32 @test2(i8* %str1) {
29 ; CHECK: %strcmpload = load i8* %str1
34 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
43 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
45 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
53 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
55 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
63 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32
    [all...]
weak-symbols.ll 16 %str1 = getelementptr inbounds [2 x i8]* @fake_init, i64 0, i64 0
18 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) nounwind readonly
27 %str1 = getelementptr inbounds [2 x i8]* @real_init, i64 0, i64 0
29 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) nounwind readonly
strcmp-1.ll 21 %str1 = getelementptr inbounds [1 x i8]* @null, i32 0, i32 0
22 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
28 define i32 @test2(i8* %str1) {
35 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
44 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
46 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
54 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
56 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
67 %str1 = getelementptr inbounds [6 x i8]* @hello, i32 0, i32 0
71 %temp3 = call i32 @strcmp(i8* %str1, i8* %str2
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ArrayAdapterTest.java 35 private static final String STR1 = "string1";
55 new String[] {"str1", "str2"});
58 new String[] {"str1", "str2"});
61 list.add(STR1);
84 mArrayAdapter.add(STR1);
128 mArrayAdapter.add(STR1);
134 assertEquals(STR1, ((TextView) mArrayAdapter.getView(0, null, null)).getText());
141 assertEquals(STR1, textView.getText());
183 mArrayAdapter.add(STR1);
210 mArrayAdapter.insert(STR1, 0)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
example.c 75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1));
92 ASN1_OCTET_STRING_set(os2,(unsigned char*)str1,strlen(str1));
115 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2)
148 *str1=malloc(os1->length+1);
150 memcpy(*str1,os1->data,os1->length);
152 (*str1)[os1->length]='\0';
238 X509_ATTRIBUTE *add_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2
    [all...]
  /external/openssl/crypto/pkcs7/
example.c 75 int add_signed_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2)
91 ASN1_OCTET_STRING_set(os1,(unsigned char*)str1,strlen(str1));
92 ASN1_OCTET_STRING_set(os2,(unsigned char*)str1,strlen(str1));
115 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2)
148 *str1=malloc(os1->length+1);
150 memcpy(*str1,os1->data,os1->length);
152 (*str1)[os1->length]='\0';
238 X509_ATTRIBUTE *add_seq2string(PKCS7_SIGNER_INFO *si, char *str1, char *str2
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlstring.h 64 xmlStrcmp (const xmlChar *str1,
67 xmlStrncmp (const xmlChar *str1,
71 xmlStrcasecmp (const xmlChar *str1,
74 xmlStrncasecmp (const xmlChar *str1,
78 xmlStrEqual (const xmlChar *str1,
94 xmlStrncatNew (const xmlChar *str1,
  /external/libxml2/include/libxml/
xmlstring.h 64 xmlStrcmp (const xmlChar *str1,
67 xmlStrncmp (const xmlChar *str1,
71 xmlStrcasecmp (const xmlChar *str1,
74 xmlStrncasecmp (const xmlChar *str1,
78 xmlStrEqual (const xmlChar *str1,
94 xmlStrncatNew (const xmlChar *str1,

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 91011>>