Searched refs:getCoverage (Results 1 - 6 of 6) sorted by relevance

/frameworks/minikin/include/minikin/
H A DCmapCoverage.h26 static bool getCoverage(SparseBitSet &coverage, const uint8_t* cmap_data, size_t cmap_size,
H A DFontFamily.h133 const SparseBitSet* getCoverage();
/frameworks/minikin/tests/
H A DFontFamilyTest.cpp368 EXPECT_TRUE(family->getCoverage()->get(kSupportedChar1));
372 EXPECT_TRUE(family->getCoverage()->get(kSupportedChar2));
376 EXPECT_TRUE(family->getCoverage()->get(kNoVsSupportedChar));
380 EXPECT_FALSE(family->getCoverage()->get(kVsOnlySupportedChar));
384 EXPECT_FALSE(family->getCoverage()->get(kNotSupportedChar));
410 family->getCoverage();
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp172 const SparseBitSet* FontFamily::getCoverage() { function in class:android::FontFamily
180 // Note: This means we will retry on the next call to getCoverage, as we can't store
185 CmapCoverage::getCoverage(mCoverage, cmapTable.get(), cmapTable.size(), &mHasVSTable);
213 LOG_ALWAYS_FATAL_IF(!mCoverageValid, "Do not call this method before getCoverage() call");
H A DFontCollection.cpp95 const SparseBitSet* coverage = family->getCoverage();
129 uint32_t nextChar = family->getCoverage()->nextSetBit((i + 1) << kLogCharsPerPage);
196 if (!hasVSGlyph && !fontFamily->getCoverage()->get(ch)) {
421 shouldContinueRun = lastFamily->getCoverage()->get(ch);
441 family && family->getCoverage()->get(prevCh)) {
H A DCmapCoverage.cpp134 bool CmapCoverage::getCoverage(SparseBitSet& coverage, const uint8_t* cmap_data, size_t cmap_size, function in class:android::CmapCoverage

Completed in 1239 milliseconds