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

  /external/icu4c/test/intltest/
thcoll.cpp 343 StrCmp(const void *p1, const void *p2) {
384 qsort (toSort, LINES, sizeof (UChar *), StrCmp);
  /external/openfst/src/include/fst/
symbol-table.h 134 map<const char *, int64, StrCmp>::const_iterator it =
184 struct StrCmp {
186 return strcmp(s1, s2) < 0;
195 map<const char *, int64, StrCmp> symbol_map_;
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 528 // Verify the "strcmp" function prototype.
537 if (Str1P == Str2P) // strcmp(x,x) -> 0
544 // strcmp(x, y) -> cnst (if both x and y are constant strings)
548 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
552 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
555 // strcmp(P, "x") -> memcmp(P, "x", 2)
    [all...]

Completed in 834 milliseconds