OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strzcmp16
(Results
1 - 6
of
6
) sorted by null
/system/core/include/utils/
String16.h
178
return
strzcmp16
(mString, size(), other.mString, other.size());
183
return
strzcmp16
(mString, size(), other.mString, other.size()) < 0;
188
return
strzcmp16
(mString, size(), other.mString, other.size()) <= 0;
193
return
strzcmp16
(mString, size(), other.mString, other.size()) == 0;
198
return
strzcmp16
(mString, size(), other.mString, other.size()) != 0;
203
return
strzcmp16
(mString, size(), other.mString, other.size()) >= 0;
208
return
strzcmp16
(mString, size(), other.mString, other.size()) > 0;
Unicode.h
43
int
strzcmp16
(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2);
45
// Version of
strzcmp16
for comparing strings in different endianness.
/system/core/libutils/
String16.cpp
335
return
strzcmp16
(mString, ps, prefix.string(), ps) == 0;
Unicode.cpp
293
int
strzcmp16
(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2)
function
/frameworks/base/libs/androidfw/
ResourceTypes.cpp
722
// because the strings are sorted with
strzcmp16
(). So to match
738
c =
strzcmp16
(convBuffer, end-convBuffer, str, strLen);
786
int c = s ?
strzcmp16
(s, len, str, strLen) : -1;
809
if (s && strLen == len &&
strzcmp16
(s, len, str, strLen) == 0) {
[
all
...]
/frameworks/base/tools/aapt/
ResourceTable.cpp
190
if (
strzcmp16
(cur->name, cur->nameLen, str, div-str) == 0) {
[
all
...]
Completed in 54 milliseconds