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

1 2 3 4 5

  /external/python/cpython2/Doc/includes/sqlite3/
collation_reverse.py 3 def collate_reverse(string1, string2):
4 return -cmp(string1, string2)
  /art/test/617-clinit-oome/src/
Other.java 18 public static final String string1 = "ABCDEFG1"; field in class:Other
  /external/valgrind/none/tests/s390x/
clst.c 17 register const char *string1 asm ("2") = __string1;
22 :"+d" (string1), "+d" (string2) :"d" (end): "cc");
24 return (clst_t) { .str1 = string1, .str2 = string2, .cc = get_cc() };
  /external/valgrind/none/tests/darwin/
access_extended.c 21 char* string1 = (char*)&entries[3]; local
22 char* string2 = string1 + strlen(name1) + 1;
26 entries[0].ad_name_offset = string1 - (char*)entries;
32 strcpy(string1, name1);
  /build/blueprint/proptools/
clone_test.go 44 S: "string1",
47 S: "string1",
53 S: []string{"string1"},
56 S: []string{"string1"},
87 S: StringPtr("string1"),
90 S: StringPtr("string1"),
97 S: "string1",
102 S: "string1",
110 S: "string1",
115 S: "string1",
    [all...]
extend_test.go 84 S: "string1",
96 S: "string1",
182 S1: StringPtr("string1"),
199 S1: StringPtr("string1"),
207 S1: StringPtr("string1"),
217 S: []string{"string1"},
223 S: []string{"string1", "string2"},
229 S: []string{"string1"},
235 S: []string{"string2", "string1"},
242 S1: []string{"string1"},
    [all...]
  /external/libchrome/base/files/
file_path.h 401 static int CompareIgnoreCase(StringPieceType string1,
403 static bool CompareEqualIgnoreCase(StringPieceType string1,
405 return CompareIgnoreCase(string1, string2) == 0;
407 static bool CompareLessIgnoreCase(StringPieceType string1,
409 return CompareIgnoreCase(string1, string2) < 0;
424 static int HFSFastUnicodeCompare(StringPieceType string1,
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
indirect.exp 89 set string1 ": local symbol \`foo\' in tmpdir/indirect1b.o is referenced by DSO"
93 check_link_message "$cmd" [list $string1 $string] "$testname"
97 check_link_message "$cmd" [list $string1 $string] "$testname"
  /external/icu/icu4c/source/samples/legacy/
newcol.cpp 48 int compare_current(const void *string1, const void *string2) {
50 UCollationResult res = ucol_strcoll(compareCollator, (UChar *) string1, -1, (UChar *) string2, -1);
oldcol.cpp 49 int compare_legacy(const void *string1, const void *string2) {
51 UCollationResult res = ucol_strcoll(compareCollator, (UChar *) string1, -1, (UChar *) string2, -1);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
damerau_levenshtein_edit_distance_policy.h 28 const int *const string1, const int length1)
29 : mString0(string0), mString0Length(length0), mString1(string1),
  /external/r8/src/test/java/com/android/tools/r8/dex/
DexItemFactoryTest.java 37 DexString string1 = factory.createString((String) data[i]); local
39 DexItem type1 = factory.createType(string1);
44 assertSame(expectedDexString, string1);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 286 * @param string1 - the first String
290 protected boolean equalOrBothNull(String string1, String string2) {
291 return (string1 == null && string2 == null) || (string1 != null && string1.equals(string2));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_win.c 31 static int strcasecmp (char *string1, char *string2)
36 first = tolower(*string1);
38 string1++;
  /external/python/cpython2/Python/
dynload_win.c 31 static int strcasecmp (char *string1, char *string2)
36 first = tolower(*string1);
38 string1++;
  /packages/apps/Contacts/src/com/android/contacts/format/
FormatUtils.java 45 * Finds the earliest point in string1 at which the first part of string2 matches. For example,
49 public static int overlapPoint(String string1, String string2) {
50 if (string1 == null || string2 == null) {
53 return overlapPoint(string1.toCharArray(), string2.toCharArray());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationCreationMethodTest.java 112 private void report(String localeName, String string1, CollationKey k1, CollationKey k2)
117 msg.append("With ").append(localeName).append(" collator\n and input string: ").append(string1).append('\n');
CollationKanaTest.java 185 String string1 = new String(tmp1); local
191 result = rb.compare(string1, string2);
193 key1 = rb.getCollationKey(string1);
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationCreationMethodTest.java 111 private void report(String localeName, String string1, CollationKey k1, CollationKey k2)
116 msg.append("With ").append(localeName).append(" collator\n and input string: ").append(string1).append('\n');
CollationKanaTest.java 184 String string1 = new String(tmp1); local
190 result = rb.compare(string1, string2);
192 key1 = rb.getCollationKey(string1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winstring.h 36 HRESULT WINAPI WindowsCompareStringOrdinal(HSTRING string1, HSTRING string2, INT32 *result);
38 HRESULT WINAPI WindowsConcatString(HSTRING string1, HSTRING string2, HSTRING *newString);
  /external/v8/src/inspector/build/
rjsmin.py 99 string1 = \
102 strings = r'(?:%s|%s)' % (string1, string2)
  /toolchain/binutils/binutils-2.25/include/
xregex2.h 472 /* Like `re_search', but search in the concatenation of STRING1 and
474 extern int re_search_2 (struct re_pattern_buffer *buffer, const char *string1,
487 extern int re_match_2 (struct re_pattern_buffer *buffer, const char *string1,
  /toolchain/binutils/binutils-2.25/libiberty/
regex.c 75 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
76 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
388 `string1' or just past its end. This works if PTR is NULL, which is
391 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
418 const char *string1, int size1,
424 const char *string1, int size1,
442 wchar_t *string1, int size1,
446 const char *string1, int size1,
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CollectionsTest.java 832 String string1 = "A-B-C-D-E-S-JF-SUB-G-H-I-J-SUBL-K-L-LIST-M-N--S-S-O-SUBLIS-P-Q-R-SUBLIST-S-T-U-V-W-X-Y-Z"; local
833 char[] chars = string1.toCharArray();
852 string1, getString(list));
860 (string1 = string1.replace('S', 'K')), getString(list));
868 (string1 = string1.replace('Z', 'N')), getString(list));
876 (string1 = string1.replace('A', 'B')), getString(list));
1049 String string1 = "A-B-C-D-E-S-JF-SUB-G-H-I-J-SUBL-K-L-LIST-M-N--S-S-O-SUBLIS-P-Q-R-SUBLIST-S-T-U-V-W-X-Y-Z"; local
1144 String string1 = "A-B-C-D-E-S-JF-SUB-G-H-I-J-SUBL-K-L-LIST-M-N--S-S-O-SUBLIS-P-Q-R-SUBLIST-S-T-U-V-W-X-Y-Z-END"; local
    [all...]

Completed in 637 milliseconds

1 2 3 4 5