OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StrCmp
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/test/intltest/
thcoll.cpp
344
StrCmp
(const void *p1, const void *p2) {
385
qsort (toSort, LINES, sizeof (UChar *),
StrCmp
);
/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/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 1602 milliseconds