Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/
DResourceTypes.cpp850 const base::expected<size_t, IOError> u8len = decodeLength(&u8str); in stringAt() local
851 if (UNLIKELY(!u8len.has_value())) { in stringAt()
852 return base::unexpected(u8len.error()); in stringAt()
856 if ((uint32_t)(u8str+*u8len-strings) < mStringPoolSize) { in stringAt()
865 auto decodedString = stringDecodeAt(idx, u8str, *u8len); in stringAt()
922 (long long)idx, (long long)(u8str+*u8len-strings), in stringAt()
959 const base::expected<size_t, IOError> u8len = decodeLength(&str); in string8At() local
960 if (UNLIKELY(!u8len.has_value())) { in string8At()
961 return base::unexpected(u8len.error()); in string8At()
964 if ((uint32_t)(str+*u8len-strings) < mStringPoolSize) { in string8At()
[all …]