Searched defs:coverage (Results 1 - 2 of 2) sorted by path

/frameworks/minikin/libs/minikin/
H A DCmapCoverage.cpp17 // Determine coverage of font given its raw "cmap" OpenType table
40 static void addRange(vector<uint32_t> &coverage, uint32_t start, uint32_t end) { argument
44 if (coverage.empty() || coverage.back() < start) {
45 coverage.push_back(start);
46 coverage.push_back(end);
48 coverage.back() = end;
52 // Get the coverage information out of a Format 4 subtable, storing it in the coverage vector
53 static bool getCoverageFormat4(vector<uint32_t>& coverage, cons argument
104 getCoverageFormat12(vector<uint32_t>& coverage, const uint8_t* data, size_t size) argument
134 getCoverage(SparseBitSet& coverage, const uint8_t* cmap_data, size_t cmap_size, bool* has_cmap_format14_subtable) argument
[all...]
H A DFontCollection.cpp95 const SparseBitSet* coverage = family->getCoverage(); local
96 if (coverage == nullptr) {
104 mMaxChar = max(mMaxChar, coverage->length());
105 lastChar.push_back(coverage->nextSetBit(0));
179 // The highest 2 bits are for coverage score, then following 28 bits are for language score,
184 // Calculates a font score based on variation sequence coverage.
420 // Continue using existing font as long as it has coverage and is whitelisted

Completed in 60 milliseconds