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

  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 230 // strcmp
231 EXPECT_EQ(0, strcmp("", ""));
232 EXPECT_EQ(0, strcmp("abcd", "abcd"));
233 EXPECT_GT(0, strcmp("ab", "ac"));
234 EXPECT_GT(0, strcmp("abc", "abcd"));
235 EXPECT_LT(0, strcmp("acc", "abc"));
236 EXPECT_LT(0, strcmp("abcd", "abc"));
281 void RunStrCmpTest(PointerToStrCmp StrCmp) {
288 // Normal StrCmp calls
289 Ident(StrCmp(s1, s2))
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
thcoll.cpp 344 StrCmp(const void *p1, const void *p2) {
385 qsort (toSort, LINES, sizeof (UChar *), StrCmp);
  /external/icu/icu4c/source/test/intltest/
thcoll.cpp 344 StrCmp(const void *p1, const void *p2) {
385 qsort (toSort, LINES, sizeof (UChar *), StrCmp);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 225 #define StrCmp StrCmpW
231 #define StrCmp lstrcmpA
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 563 // Verify the "strcmp" function prototype.
572 if (Str1P == Str2P) // strcmp(x,x) -> 0
579 // strcmp(x, y) -> cnst (if both x and y are constant strings)
583 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
587 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x
590 // strcmp(P, "x") -> memcmp(P, "x", 2)
    [all...]

Completed in 329 milliseconds