OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CustomFontNotReadyAction
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
Font.h
100
enum
CustomFontNotReadyAction
{ DoNotPaintIfFontNotReady, UseFallbackIfFontNotReady };
101
void drawText(GraphicsContext*, const TextRunPaintInfo&, const FloatPoint&,
CustomFontNotReadyAction
= DoNotPaintIfFontNotReady) const;
Font.cpp
170
void Font::drawText(GraphicsContext* context, const TextRunPaintInfo& runInfo, const FloatPoint& point,
CustomFontNotReadyAction
customFontNotReadyAction
) const
175
if (loadingCustomFonts() &&
customFontNotReadyAction
== DoNotPaintIfFontNotReady)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.h
295
void drawBidiText(const Font&, const TextRunPaintInfo&, const FloatPoint&, Font::
CustomFontNotReadyAction
= Font::DoNotPaintIfFontNotReady);
GraphicsContext.cpp
1017
void GraphicsContext::drawBidiText(const Font& font, const TextRunPaintInfo& runInfo, const FloatPoint& point, Font::
CustomFontNotReadyAction
customFontNotReadyAction
)
[
all
...]
Completed in 50 milliseconds