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

1 2 3 4 5 6 7 8

  /external/linux-tools-perf/util/
levenshtein.h 4 int levenshtein(const char *string1, const char *string2,
levenshtein.c 9 * deleted from, or added to string1, at least, to get string2.
17 * string1 that the distance is calculated for.
20 * of string1 of length "i"), and row0 the row before that.
23 * Damerau-Levenshtein distance between the substring of string1 of length
29 * i (in string1) and j (in string2), respectively, given that the last
41 int levenshtein(const char *string1, const char *string2,
44 int len1 = strlen(string1), len2 = strlen(string2);
58 row2[j + 1] = row1[j] + s * (string1[i] != string2[j]);
60 if (i > 0 && j > 0 && string1[i - 1] == string2[j] &&
61 string1[i] == string2[j - 1] &
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
testlib.asm 9 push dword string1
17 string1: db 'abc',0 ; try changing these strings and see define
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringOperators.h 30 StringAppend(StringType1 string1, StringType2 string2)
31 : m_string1(string1)
101 inline StringAppend<const char*, String> operator+(const char* string1, const String& string2)
103 return StringAppend<const char*, String>(string1, string2);
106 inline StringAppend<const char*, AtomicString> operator+(const char* string1, const AtomicString& string2)
108 return StringAppend<const char*, AtomicString>(string1, string2);
112 inline StringAppend<const char*, StringAppend<U, V> > operator+(const char* string1, const StringAppend<U, V>& string2)
114 return StringAppend<const char*, StringAppend<U, V> >(string1, string2);
117 inline StringAppend<const UChar*, String> operator+(const UChar* string1, const String& string2)
119 return StringAppend<const UChar*, String>(string1, string2)
    [all...]
  /external/chromium/base/
string_util_posix.h 24 inline int strcasecmp(const char* string1, const char* string2) {
25 return ::strcasecmp(string1, string2);
28 inline int strncasecmp(const char* string1, const char* string2, size_t count) {
29 return ::strncasecmp(string1, string2, count);
  /external/chromium_org/base/strings/
string_util_posix.h 24 inline int strcasecmp(const char* string1, const char* string2) {
25 return ::strcasecmp(string1, string2);
28 inline int strncasecmp(const char* string1, const char* string2, size_t count) {
29 return ::strncasecmp(string1, string2, count);
  /external/chromium_org/ipc/
ipc_sync_message_unittest.cc 181 std::string string1; local
190 Send(new Msg_C_0_3(&bool1, &int1, &string1));
193 DCHECK_EQ("0_3", string1);
205 Send(new Msg_C_1_3(3, &string1, &int1, &bool1));
206 DCHECK_EQ("1_3", string1);
220 Send(new Msg_C_2_3(3, true, &string1, &int1, &bool1));
221 DCHECK_EQ("2_3", string1);
235 Send(new Msg_C_3_3(3, "3_3", true, &string1, &int1, &bool1));
236 DCHECK_EQ("3_3", string1);
242 Send(new Msg_C_3_4(true, 3, "3_4", &int1, &bool1, &string1, &bool2))
    [all...]
  /external/clang/test/Analysis/
analyzeOneFunction.m 41 NSString *string1 = [[NSString alloc] initWithFormat:@"test %f", 0.0]; // No warning: this function is not analized.
42 cell.text = string1;
50 NSString *string1 = [[NSString alloc] initWithFormat:@"test %f %d", 0.0, X+Y]; // expected-warning {{Potential leak}}
51 cell.text = string1;
objc-subscript.m 31 NSObject *string1 = [[NSObject alloc] init]; // expected-warning {{Potential leak}}
32 cell[0] = string1;
33 cell[self] = string1;
34 cell[string1] = self;
  /external/valgrind/main/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);
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
script 4 p string1
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
script 4 p string1
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
script 4 p string1
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSSettings_test.py 47 'AdditionalOptions': ['string1', 'string2'],
61 'DisableSpecificWarnings': 'string1;string2',
90 'PreprocessorDefinitions': 'string1;string2',
101 'UndefinePreprocessorDefinitions': 'string1;string2',
114 'AdditionalOptions': 'a string1',
119 'BaseAddress': 'a string1',
130 'EntryPointSymbol': 'a string1',
138 'HeapCommitSize': 'a string1',
139 'HeapReserveSize': 'a string1',
155 'MergeSections': 'a string1',
    [all...]
  /external/clang/test/CodeGen/
darwin-string-literals.c 4 // CHECK-LSB: @.str1 = linker_private unnamed_addr constant [8 x i8] c"string1\00"
12 // CHECK-MSB: @.str1 = linker_private unnamed_addr constant [8 x i8] c"string1\00"
17 const void *g1 = __builtin___CFStringMakeConstantString("string1");
  /external/chromium/chrome/browser/ui/cocoa/translate/
after_translate_infobar_controller.mm 18 NSString* string1 = base::SysUTF16ToNSString(strings[0]);
22 [label1_ setStringValue:string1];
translate_message_infobar_controller.mm 39 NSString* string1 = base::SysUTF16ToNSString(messageText);
40 [label1_ setStringValue:string1];
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
translate_message_infobar_controller.mm 41 NSString* string1 = base::SysUTF16ToNSString(messageText);
42 [label1_ setStringValue:string1];
  /external/libexif/libexif/
i18n.h 38 # define ngettext(String1,String2,Count) (Count==1?String1:String2)
  /external/llvm/test/MC/Mips/
sym-offset.ll 7 @string1 = internal global [11 x i8] c"aaaaaaaaaa\00", align 1
20 %call = tail call i32 @memcmp(i8* getelementptr inbounds ([11 x i8]* @string1, i32 0, i32 0), i8* getelementptr inbounds ([10 x i8]* @string2, i32 0, i32 0), i32 4) nounwind readonly
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLClientInfoExceptionTest.java 54 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
75 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
114 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
137 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
164 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
187 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
214 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
260 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
275 failedProperties.put("String1", ClientInfoStatus.REASON_VALUE_INVALID);
  /external/icu4c/samples/legacy/
newcol.cpp 42 int compare_current(const void *string1, const void *string2) {
44 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),
  /art/test/046-reflect/
expected.txt 36 Field name is string1
40 string1 value is 'hey'
42 string1 value is now 'a new string'
  /dalvik/tests/046-reflect/
expected.txt 36 Field name is string1
40 string1 value is 'hey'
42 string1 value is now 'a new string'

Completed in 619 milliseconds

1 2 3 4 5 6 7 8