HomeSort by relevance Sort by last modified time
    Searched refs:StrCmp (Results 1 - 5 of 5) sorted by null

  /external/openfst/src/include/fst/
symbol-table.h 126 map<const char *, int64, StrCmp>::const_iterator it =
176 struct StrCmp {
178 return strcmp(s1, s2) < 0;
187 map<const char *, int64, StrCmp> symbol_map_;
  /external/openfst/src/lib/
symbol-table.cc 108 map<const char *, int64, StrCmp>::const_iterator it =
206 for (map<const char *, int64, StrCmp>::const_iterator it =
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 1081 // strcmp
1082 EXPECT_EQ(0, strcmp("", ""));
1083 EXPECT_EQ(0, strcmp("abcd", "abcd"));
1084 EXPECT_GT(0, strcmp("ab", "ac"));
1085 EXPECT_GT(0, strcmp("abc", "abcd"));
1086 EXPECT_LT(0, strcmp("acc", "abc"));
1087 EXPECT_LT(0, strcmp("abcd", "abc"));
    [all...]
  /external/icu4c/test/intltest/
thcoll.cpp 344 StrCmp(const void *p1, const void *p2) {
385 qsort (toSort, LINES, sizeof (UChar *), StrCmp);
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 318 // 'strcmp' Optimizations
322 // Verify the "strcmp" function prototype.
331 if (Str1P == Str2P) // strcmp(x,x) -> 0
338 // strcmp(x, y) -> cnst (if both x and y are constant strings)
342 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
346 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
349 // strcmp(P, "x") -> memcmp(P, "x", 2)
    [all...]

Completed in 184 milliseconds