Home
last modified time | relevance | path

Searched refs:u8len (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/androidfw/
DResourceTypes.cpp807 const base::expected<size_t, IOError> u8len = decodeLength(&u8str); in stringAt() local
808 if (UNLIKELY(!u8len.has_value())) { in stringAt()
809 return base::unexpected(u8len.error()); in stringAt()
813 if ((uint32_t)(u8str+*u8len-strings) < mStringPoolSize) { in stringAt()
822 auto decodedString = stringDecodeAt(idx, u8str, *u8len); in stringAt()
879 (long long)idx, (long long)(u8str+*u8len-strings), in stringAt()
916 const base::expected<size_t, IOError> u8len = decodeLength(&str); in string8At() local
917 if (UNLIKELY(!u8len.has_value())) { in string8At()
918 return base::unexpected(u8len.error()); in string8At()
921 if ((uint32_t)(str+*u8len-strings) < mStringPoolSize) { in string8At()
[all …]