OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StrCmp
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/asan/tests/
asan_str_test.cc
212
//
strcmp
213
EXPECT_EQ(0,
strcmp
("", ""));
214
EXPECT_EQ(0,
strcmp
("abcd", "abcd"));
215
EXPECT_GT(0,
strcmp
("ab", "ac"));
216
EXPECT_GT(0,
strcmp
("abc", "abcd"));
217
EXPECT_LT(0,
strcmp
("acc", "abc"));
218
EXPECT_LT(0,
strcmp
("abcd", "abc"));
261
void RunStrCmpTest(PointerToStrCmp
StrCmp
) {
268
// Normal
StrCmp
calls
269
Ident(
StrCmp
(s1, s2))
[
all
...]
/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/openfst/src/lib/
symbol-table.cc
123
map<const char *, int64,
StrCmp
>::const_iterator it =
221
for (map<const char *, int64,
StrCmp
>::const_iterator it =
/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/icu4c/test/intltest/
thcoll.cpp
343
StrCmp
(const void *p1, const void *p2) {
384
qsort (toSort, LINES, sizeof (UChar *),
StrCmp
);
/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 1825 milliseconds