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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/Lexer/
cxx0x_raw_string_delim_length.cpp 4 const char *str2 = R"foo()foo"; // ok variable
  /external/clang/test/Sema/
overloaded-func-transparent-union.c 8 char *str2; member in struct:__anon18721
15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
17 this.object->str2 = str2;
22 this.object->str2 = str;
  /external/chromium_org/third_party/openssl/openssl/crypto/
o_str.c 69 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
72 while (*str1 && *str2 && n)
74 int res = toupper(*str1) - toupper(*str2);
77 str2++;
84 if (*str2)
91 return strncasecmp(str1, str2, n);
94 int OPENSSL_strcasecmp(const char *str1, const char *str2)
97 return OPENSSL_strncasecmp(str1, str2, (size_t)-1);
99 return strcasecmp(str1, str2);
o_str.h 64 int OPENSSL_strcasecmp(const char *str1, const char *str2);
65 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
  /external/openssl/crypto/
o_str.c 69 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
72 while (*str1 && *str2 && n)
74 int res = toupper(*str1) - toupper(*str2);
77 str2++;
84 if (*str2)
91 return strncasecmp(str1, str2, n);
94 int OPENSSL_strcasecmp(const char *str1, const char *str2)
97 return OPENSSL_strncasecmp(str1, str2, (size_t)-1);
99 return strcasecmp(str1, str2);
o_str.h 64 int OPENSSL_strcasecmp(const char *str1, const char *str2);
65 int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
  /external/llvm/test/MC/ELF/
entsize.s 13 .type .L.str2,@object # @.str2
14 .L.str2:
16 .size .L.str2, 7
19 .section .rodata.str2.1,"aMS",@progbits,2
54 // CHECK-NEXT: Name: .rodata.str2.1
basic-elf-32.s 12 movl $.L.str2, (%esp)
26 .type .L.str2,@object # @.str2
27 .L.str2:
29 .size .L.str2, 7
basic-elf-64.s 12 movl $.L.str2, %edi
26 .type .L.str2,@object # @.str2
27 .L.str2:
29 .size .L.str2, 7
  /external/stlport/test/unit/
collate_facets_test.cpp 23 char const str2[] = "abcdef2"; local
25 const size_t size2 = sizeof(str2) / sizeof(str2[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 )
43 char const str2[] = "abcdef2"; local
90 wchar_t const str2[] = L"abcdef2"; local
217 char const str2[] = "abcdef2"; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
collate_facets_test.cpp 23 char const str2[] = "abcdef2"; local
25 const size_t size2 = sizeof(str2) / sizeof(str2[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 )
43 char const str2[] = "abcdef2"; local
90 wchar_t const str2[] = L"abcdef2"; local
217 char const str2[] = "abcdef2"; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
collate_facets_test.cpp 23 char const str2[] = "abcdef2"; local
25 const size_t size2 = sizeof(str2) / sizeof(str2[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 )
43 char const str2[] = "abcdef2"; local
90 wchar_t const str2[] = L"abcdef2"; local
217 char const str2[] = "abcdef2"; local
    [all...]
  /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
37 distances[i][0] = i # Distance between str1[:i] and str2[:0] is i
39 for j in range(1, len(str2) + 1):
40 distances[0][j] = j # Distance between str1[:0] and str2[:j] is j
43 for j in range(0, len(str2)):
44 diff = 0 if str1[i] == str2[j] else 1
47 return distances[len(str1)][len(str2)]
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
example.h 57 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2);
  /external/llvm/unittests/ADT/
FoldingSet.cpp 32 std::string str2 = ">" + str1; local
33 b.AddString(str2.c_str() + 1);
  /external/openssl/crypto/pkcs7/
example.h 57 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2);
  /external/srec/seti/setiUtils/src/
platform_utils.c 93 int stricmp(const char *str1, const char *str2)
95 if(str1 == NULL || str2 == NULL){
97 PLogError(L("stricmp: str1 or str2 is NULL\n"));
102 for (; *str1 != '\0' && *str2 != '\0' && tolower(*str1) == tolower(*str2);
103 str1++, str2++)
106 return *str2 == '\0'? 0 : -1;
107 else if (*str2 == '\0')
110 return tolower(*str1) < tolower(*str2)? -1 : 1;
  /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 40 const UnicodeString *str2 = (const UnicodeString*) key2.pointer; local
41 if (str1 == str2) {
44 if (str1 == NULL || str2 == NULL) {
47 return *str1 == *str2;
  /external/llvm/test/MC/COFF/
symbol-fragment-offset-64.s 20 movl $.L_.str2, (%esp)
33 .align 16 # @.str2
34 .L_.str2:
symbol-fragment-offset.s 20 movl $L_.str2, (%esp)
33 .align 16 # @.str2
34 L_.str2:
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestNamedConstructor.idl 33 NamedConstructor=Audio(DOMString str1, [Default=Undefined] optional DOMString str2, [Default=NullString] optional DOMString str3),
  /external/valgrind/main/include/
pub_tool_basics_asm.h 49 #define VGAPPEND(str1,str2) str1##str2
  /packages/apps/UnifiedEmail/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...]
  /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);

Completed in 914 milliseconds

1 2 3 4 5 6 7 8 91011