Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DMinikinInternal.h32 #define MINIKIN_ASSERT(cond, ...) LOG_ALWAYS_FATAL_IF(!(cond), __VA_ARGS__) macro
34 #define MINIKIN_ASSERT(cond, ...) ((void)0)
37 #define MINIKIN_NOT_REACHED(...) MINIKIN_ASSERT(false, __VA_ARGS__);
DBidiUtils.cpp53 MINIKIN_ASSERT(runOffset < mRunCount, "Out of range access. %d/%d", runOffset, mRunCount); in getRunInfoAt()
DFont.cpp71 MINIKIN_ASSERT(mTypefaceLoader, "mTypefaceLoader should not be empty when mTypeface is null"); in initTypefaceLocked()
DLocaleListCache.cpp177 MINIKIN_ASSERT(id < mLocaleLists.size(), "Lookup by unknown locale list ID."); in getByIdInternal()
DLocale.cpp378 MINIKIN_ASSERT(false, "Must not reached."); in getString()
414 MINIKIN_ASSERT(false, "Must not reached."); in getString()
DSparseBitSet.cpp72 MINIKIN_ASSERT(start <= end, "Range size must be nonnegative"); in initFromRanges()
DWordBreaker.cpp81 MINIKIN_ASSERT(mText != nullptr, "setText must be called first"); in followingWithLocale()
DFontCollection.cpp96 MINIKIN_ASSERT(nTypefaces > 0, "Font collection must have at least one valid typeface"); in init()
97 MINIKIN_ASSERT(nTypefaces <= MAX_FAMILY_COUNT, in init()
DFontFamily.cpp52 MINIKIN_ASSERT(!mFonts.empty(), "FontFamily must contain at least one font."); in FontFamily()
DOptimalLineBreaker.cpp233 MINIKIN_ASSERT(textBuf[i] != CHAR_TAB, "TAB is not supported in optimal line breaker"); in populateCandidates()
/frameworks/minikin/tests/util/
DFontTestUtils.cpp42 MINIKIN_ASSERT(start != std::string::npos, "Not a valid file name \"%s\"", in.c_str()); in xmlTrim()
43 MINIKIN_ASSERT(end != std::string::npos, "Not a valid file name \"%s\"", in.c_str()); in xmlTrim()
/frameworks/minikin/tests/unittest/
DHyphenatorMapTest.cpp138 MINIKIN_ASSERT(locales.size() == 1, "The input must be a single locale"); in getLocale()