HomeSort by relevance Sort by last modified time
    Searched refs:fontId (Results 1 - 4 of 4) sorted by null

  /frameworks/base/graphics/java/android/renderscript/
Font.java 147 int fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
149 if(fontId == 0) {
152 Font rsFont = new Font(fontId, rs);
166 int fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
167 if(fontId == 0) {
170 Font rsFont = new Font(fontId, rs);
187 int fontId = 0;
190 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
195 if(fontId == 0) {
198 Font rsFont = new Font(fontId, rs)
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.h 84 static Font* create(FontRenderer* state, uint32_t fontId, float fontSize,
131 Font(FontRenderer* state, uint32_t fontId, float fontSize, int flags, uint32_t italicStyle,
186 void setFont(SkPaint* paint, uint32_t fontId, float fontSize);
FontRenderer.cpp 46 Font::Font(FontRenderer* state, uint32_t fontId, float fontSize,
49 mState(state), mFontId(fontId), mFontSize(fontSize),
286 Font* Font::create(FontRenderer* state, uint32_t fontId, float fontSize,
293 if (font->mFontId == fontId && font->mFontSize == fontSize &&
301 Font* newFont = new Font(state, fontId, fontSize, flags, italicStyle,
687 void FontRenderer::setFont(SkPaint* paint, uint32_t fontId, float fontSize) {
701 mCurrentFont = Font::create(this, fontId, fontSize, flags, italicStyle,
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 71 ATSUFontID fontId = fontData->platformData().m_atsuFontID;
72 if (!fontId) {
79 ATSUFontID *valueArray[1] = {&fontId};

Completed in 101 milliseconds