Home
last modified time | relevance | path

Searched refs:cachedTextBlob (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextPainter.cpp54 …nt(int startOffset, int endOffset, int length, const Style& textStyle, TextBlobPtr* cachedTextBlob) in paint() argument
58 paintInternal<PaintText>(startOffset, endOffset, length, cachedTextBlob); in paint()
182 …paintInternalRun(TextRunPaintInfo& textRunPaintInfo, int from, int to, TextBlobPtr* cachedTextBlob) in paintInternalRun() argument
195 TextBlobPtr& textBlob = cachedTextBlob ? *cachedTextBlob : localTextBlob; in paintInternalRun()
208 …er::paintInternal(int startOffset, int endOffset, int truncationPoint, TextBlobPtr* cachedTextBlob) in paintInternal() argument
214 paintInternalRun<Step>(textRunPaintInfo, startOffset, endOffset, cachedTextBlob); in paintInternal()
DTextPainter.h39 …d paint(int startOffset, int endOffset, int length, const Style&, TextBlobPtr* cachedTextBlob = 0);
70 void paintInternalRun(TextRunPaintInfo&, int from, int to, TextBlobPtr* cachedTextBlob = 0);
73 …aintInternal(int startOffset, int endOffset, int truncationPoint, TextBlobPtr* cachedTextBlob = 0);
DInlineTextBox.cpp531 TextBlobPtr* cachedTextBlob = 0; in paint() local
535 cachedTextBlob = &gTextBlobCache->add(this, nullptr).storedValue->value; in paint()
537 textPainter.paint(startOffset, endOffset, length, textStyle, cachedTextBlob); in paint()