Home
last modified time | relevance | path

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

/third_party/skia/src/pdf/
DSkPDFMakeToUnicodeCmap.cpp64 SkUnichar fUnicode; member
70 SkUnichar fUnicode; member
97 SkPDFUtils::WriteUTF16beHex(cmap, bfchar[i + j].fUnicode); in append_bfchar_section()
119 SkPDFUtils::WriteUTF16beHex(cmap, bfrange[i + j].fUnicode); in append_bfrange_section()
182 currentRangeEntry.fUnicode + i - currentRangeEntry.fStart; in SkPDFAppendCmapSections()
187 bfcharEntries.push_back({currentRangeEntry.fStart, currentRangeEntry.fUnicode}); in SkPDFAppendCmapSections()
196 currentRangeEntry.fUnicode = glyphToUnicode[gid]; in SkPDFAppendCmapSections()
/third_party/flutter/skia/src/pdf/
DSkPDFMakeToUnicodeCmap.cpp64 SkUnichar fUnicode; member
70 SkUnichar fUnicode; member
97 SkPDFUtils::WriteUTF16beHex(cmap, bfchar[i + j].fUnicode); in append_bfchar_section()
119 SkPDFUtils::WriteUTF16beHex(cmap, bfrange[i + j].fUnicode); in append_bfrange_section()
182 currentRangeEntry.fUnicode + i - currentRangeEntry.fStart; in SkPDFAppendCmapSections()
187 bfcharEntries.push_back({currentRangeEntry.fStart, currentRangeEntry.fUnicode}); in SkPDFAppendCmapSections()
196 currentRangeEntry.fUnicode = glyphToUnicode[gid]; in SkPDFAppendCmapSections()
/third_party/skia/experimental/sktext/samples/
DText.cpp42 TextSample_Align_Dir() : fUnicode(SkUnicode::Make()) { } in TextSample_Align_Dir()
121 std::unique_ptr<SkUnicode> fUnicode; member in __anonbb7ba3c10111::TextSample_Align_Dir
139 std::unique_ptr<SkUnicode> fUnicode; member in __anonbb7ba3c10111::TextSample_LongLTR
166 std::unique_ptr<SkUnicode> fUnicode; member in __anonbb7ba3c10111::TextSample_LongRTL1
185 std::unique_ptr<SkUnicode> fUnicode; member in __anonbb7ba3c10111::TextSample_LongRTL2
/third_party/skia/modules/skparagraph/src/
DParagraphBuilderImpl.cpp46 , fUnicode(std::move(unicode)) { in ParagraphBuilderImpl()
47 SkASSERT(fUnicode); in ParagraphBuilderImpl()
103 auto utf8 = fUnicode->convertUtf16ToUtf8(text); in addText()
161 … fUtf8, fParagraphStyle, fStyledBlocks, fPlaceholders, fFontCollection, std::move(fUnicode)); in Build()
DParagraphImpl.cpp80 , fUnicode(std::move(unicode)) in ParagraphImpl()
82 SkASSERT(fUnicode); in ParagraphImpl()
98 SkASSERT(fUnicode); in ParagraphImpl()
99 fText = fUnicode->convertUtf16ToUtf8(utf16text); in ParagraphImpl()
256 if (nullptr == fUnicode) { in computeCodeUnitProperties()
264 if (!fUnicode->getBidiRegions(fText.c_str(), fText.size(), textDirection, &fBidiRegions)) { in computeCodeUnitProperties()
269 fUnicode->forEachCodepoint(fText.c_str(), fText.size(), in computeCodeUnitProperties()
271 if (fUnicode->isWhitespace(unichar)) { in computeCodeUnitProperties()
276 if (fUnicode->isSpace(unichar)) { in computeCodeUnitProperties()
285 if (!fUnicode->getLineBreaks(fText.c_str(), fText.size(), &lineBreaks)) { in computeCodeUnitProperties()
[all …]
DOneLineShaper.h125 : fUnicode(unicode), fFontStyle(fontStyle), fLocale(locale) { } in FontKey()
126 SkUnichar fUnicode; member
DParagraphBuilderImpl.h82 std::unique_ptr<SkUnicode> fUnicode; variable
DParagraphImpl.h226 SkUnicode* getUnicode() { return fUnicode.get(); }
276 std::unique_ptr<SkUnicode> fUnicode;
DOneLineShaper.cpp777 return fUnicode == other.fUnicode && fFontStyle == other.fFontStyle && fLocale == other.fLocale; in operator ==()
782 return SkGoodHash()(key.fUnicode) ^ in operator ()()
/third_party/skia/experimental/sktext/src/
DText.cpp11 , fUnicode(std::move(unicode)) { in UnicodeText()
16 : fUnicode(std::move(unicode)) { in UnicodeText()
17 fText16 = fUnicode->convertUtf8ToUtf16(utf8); in UnicodeText()
31 if (!fUnicode) { in initialize()
32 SkASSERT(fUnicode); in initialize()
37 this->fUnicode->forEachCodepoint((char16_t*)utf16.data(), utf16.size(), in initialize()
39 if (this->fUnicode->isWhitespace(unichar)) { in initialize()
46 …this->fUnicode->forEachBreak((char16_t*)utf16.data(), utf16.size(), SkUnicode::BreakType::kGraphem… in initialize()
51 … this->fUnicode->forEachBreak((char16_t*)utf16.data(), utf16.size(), SkUnicode::BreakType::kLines, in initialize()
/third_party/skia/experimental/sktext/include/
DText.h54 SkUnicode* getUnicode() const { return fUnicode.get(); } in getUnicode()
86 std::unique_ptr<SkUnicode> fUnicode; variable
/third_party/flutter/skia/tools/fonts/
DTestSVGTypeface.h47 SkUnichar fUnicode; // TODO: this limits to 1:1 member
DTestSVGTypeface.cpp64 fCMap.set(datum.fUnicode, i); in TestSVGTypeface()
/third_party/skia/tools/fonts/
DTestSVGTypeface.h49 SkUnichar fUnicode; // TODO: this limits to 1:1 member
DTestSVGTypeface.cpp65 fCMap.set(datum.fUnicode, i); in TestSVGTypeface()
/third_party/skia/modules/skshaper/src/
DSkShaper_harfbuzz.cpp654 std::unique_ptr<SkUnicode> fUnicode; member in __anonc212f3440111::ShaperHarfBuzz
781 : fUnicode(std::move(unicode)) in ShaperHarfBuzz()
796 std::unique_ptr<BiDiRunIterator> bidi(MakeSkUnicodeBidiRunIterator(fUnicode.get(), in shape()
810 std::unique_ptr<ScriptRunIterator> script(MakeSkUnicodeHbScriptRunIterator(fUnicode.get(), in shape()