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

1 2 3 4 5 6 7

  /external/linux-tools-perf/perf-3.12.0/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/llvm/test/MC/AsmParser/
ifeqs-diagnostics.s 9 .ifeqs "string1"
12 // CHECK: .ifeqs "string1"
15 .ifeqs "string1",
18 // CHECK: .ifeqs "string1",
if-diagnostics.s 17 .iflt "string1"
21 // CHECK: .iflt "string1"
  /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 32 StringAppend(StringType1 string1, StringType2 string2);
52 StringAppend<StringType1, StringType2>::StringAppend(StringType1 string1, StringType2 string2)
53 : m_string1(string1)
124 inline StringAppend<const char*, String> operator+(const char* string1, const String& string2)
126 return StringAppend<const char*, String>(string1, string2);
129 inline StringAppend<const char*, AtomicString> operator+(const char* string1, const AtomicString& string2)
131 return StringAppend<const char*, AtomicString>(string1, string2);
135 inline StringAppend<const char*, StringAppend<U, V> > operator+(const char* string1, const StringAppend<U, V>& string2)
137 return StringAppend<const char*, StringAppend<U, V> >(string1, string2);
140 inline StringAppend<const UChar*, String> operator+(const UChar* string1, const String& string2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stralign.h 45 int WINAPI uaw_lstrcmpW(PCUWSTR String1,PCUWSTR String2);
46 int WINAPI uaw_lstrcmpiW(PCUWSTR String1,PCUWSTR String2);
50 int __cdecl uaw_wcsicmp(PCUWSTR String1,PCUWSTR String2);
64 int ua_lstrcmpW(LPCUWSTR String1,LPCUWSTR String2);
67 int ua_lstrcmpiW(LPCUWSTR String1,LPCUWSTR String2);
75 __CRT_INLINE int ua_lstrcmpW(LPCUWSTR String1,LPCUWSTR String2) {
76 if(WSTR_ALIGNED(String1) && WSTR_ALIGNED(String2))
77 return lstrcmpW((LPCWSTR)String1,(LPCWSTR)String2);
78 return uaw_lstrcmpW(String1,String2);
83 __CRT_INLINE int ua_lstrcmpiW(LPCUWSTR String1,LPCUWSTR String2)
    [all...]
  /external/chromium_org/base/strings/
string_util_posix.h 23 inline int strcasecmp(const char* string1, const char* string2) {
24 return ::strcasecmp(string1, string2);
27 inline int strncasecmp(const char* string1, const char* string2, size_t count) {
28 return ::strncasecmp(string1, string2, count);
  /external/lldb/test/functionalities/data-formatter/data-formatter-disabling/
main.cpp 6 const char* string1 = "hello world"; local
  /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',
115 'AdditionalOptions': 'a string1',
120 'BaseAddress': 'a string1',
131 'EntryPointSymbol': 'a string1',
139 'HeapCommitSize': 'a string1',
140 'HeapReserveSize': 'a string1',
156 'MergeSections': 'a string1',
    [all...]
  /external/valgrind/main/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/clang/test/CodeGen/
darwin-string-literals.c 4 // CHECK-LSB: @.str1 = private unnamed_addr constant [8 x i8] c"string1\00"
12 // CHECK-MSB: @.str1 = private unnamed_addr constant [8 x i8] c"string1\00"
17 const void *g1 = __builtin___CFStringMakeConstantString("string1");
  /external/llvm/test/Verifier/
ident-meta1.ll 8 !1 = metadata !{metadata !"string1", metadata !"string2"}
  /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/chromium_org/base/ios/
device_util_unittest.mm 102 std::string string1("The quick brown fox jumps over the lazy dog");
106 EXPECT_EQ(ios::device_util::GetSaltedString(string1, salt),
111 std::string string1("The quick brown fox jumps over the lazy dog");
115 EXPECT_NE(ios::device_util::GetSaltedString(string1, salt),
120 std::string string1("The quick brown fox jumps over the lazy dog");
124 EXPECT_NE(ios::device_util::GetSaltedString(string1, salt1),
125 ios::device_util::GetSaltedString(string1, salt2));
  /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);

Completed in 1678 milliseconds

1 2 3 4 5 6 7