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

  /frameworks/base/include/utils/
String16.h 47 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2);
49 // Version of strzcmp16 for comparing strings in different endianness.
193 return strzcmp16(mString, size(), other.mString, other.size());
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;
213 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
218 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
223 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
  /frameworks/base/libs/utils/
String16.cpp 135 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2) function
540 return strzcmp16(mString, ps, prefix.string(), ps) == 0;
ResourceTypes.cpp 569 int c = s ? strzcmp16(s, len, str, strLen) : -1;
593 if (s && strzcmp16(s, len, str, strLen) == 0) {
905 if (attr && curAttr && (strzcmp16(attr, attrLen, curAttr, curAttrLen) == 0)) {
911 if (strzcmp16(ns, nsLen, curNs, curNsLen) == 0) return i;
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 188 if (strzcmp16(cur->name, cur->nameLen, str, div-str) == 0) {
    [all...]

Completed in 298 milliseconds