Searched refs:AllASCII (Results 1 – 4 of 4) sorted by relevance
/art/runtime/mirror/ |
D | string-inl.h | 88 inline bool String::AllASCII(const MemoryType* chars, const int length) { in AllASCII() function 101 DCHECK_EQ(AllASCII(reinterpret_cast<const uint8_t*>(chars), length), chars[length] == 0); in DexFileStringAllASCII()
|
D | string-alloc-inl.h | 218 kUseStringCompression && String::AllASCII<uint8_t>(src, byte_length) && (high_byte == 0); in AllocFromByteArray() 233 String::AllASCII<uint16_t>(array->GetData() + offset, count); in AllocFromCharArray() 246 ((string->IsCompressed()) ? true : String::AllASCII<uint16_t>(string->GetValue() + offset, in AllocFromString()
|
D | string.cc | 106 DCHECK(kUseStringCompression && AllASCII(out, length)); in DoReplace() 117 DCHECK(!kUseStringCompression || !AllASCII(out, length)); in DoReplace() 167 String::AllASCII<uint16_t>(utf16_data_in, utf16_length); in AllocFromUtf16()
|
D | string.h | 200 static bool AllASCII(const MemoryType* chars, const int length);
|