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

/frameworks/minikin/libs/minikin/
H A DCmapCoverage.cpp17 // Determine coverage of font given its raw "cmap" OpenType table
39 static void addRange(vector<uint32_t> &coverage, uint32_t start, uint32_t end) { argument
43 if (coverage.empty() || coverage.back() < start) {
44 coverage.push_back(start);
45 coverage.push_back(end);
47 coverage.back() = end;
51 // Get the coverage information out of a Format 12 subtable, storing it in the coverage vector
52 static bool getCoverageFormat4(vector<uint32_t>& coverage, cons argument
98 getCoverageFormat12(vector<uint32_t>& coverage, const uint8_t* data, size_t size) argument
120 getCoverage(SparseBitSet& coverage, const uint8_t* cmap_data, size_t cmap_size) argument
[all...]
H A DFontCollection.cpp57 const SparseBitSet* coverage = family->getCoverage(); local
58 mMaxChar = max(mMaxChar, coverage->length());
59 lastChar.push_back(coverage->nextSetBit(0));
180 // Continue using existing font as long as it has coverage and is whitelisted

Completed in 60 milliseconds