OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UniqueID
(Results
1 - 9
of
9
) sorted by null
/external/skia/src/core/
SkTypeface.cpp
44
uint32_t SkTypeface::
UniqueID
(const SkTypeface* face) {
46
return face->
uniqueID
();
50
// The initial value of 0 is fine, since a typeface's
uniqueID
should not
59
gDefaultFontID = defaultFace->
uniqueID
();
66
return SkTypeface::
UniqueID
(facea) == SkTypeface::
UniqueID
(faceb);
SkPaint.cpp
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/android/
FontPlatformDataAndroid.cpp
194
uint32_t FontPlatformData::
uniqueID
() const
197
return SkTypeface::
UniqueID
(0);
199
return SkTypeface::
UniqueID
(mTypeface);
217
h = SkTypeface::
UniqueID
(mTypeface);
/external/skia/include/core/
SkTypeface.h
70
SkFontID
uniqueID
() const { return fUniqueID; }
72
/** Return the
uniqueID
for the specified typeface. If the face is null,
73
resolve it to the default font and return its
uniqueID
. Will never
76
static SkFontID
UniqueID
(const SkTypeface* face);
150
/**
uniqueID
must be unique (please!) and non-zero
152
SkTypeface(Style style, SkFontID
uniqueID
, bool isFixedWidth = false);
/external/webkit/Source/WebKit/android/plugins/
ANPTypefaceInterface.cpp
63
size_t size = SkFontHost::GetFileName(SkTypeface::
UniqueID
(tf), fileName,
/external/skia/src/pdf/
SkPDFFont.cpp
423
if (find(SkTypeface::
UniqueID
(fTypeface.get()), fFirstGlyphID, &index)) {
482
const uint32_t fontID = SkTypeface::
UniqueID
(typeface);
833
SkFontHost::OpenStream(SkTypeface::
UniqueID
(fTypeface.get()));
851
SkFontHost::OpenStream(SkTypeface::
UniqueID
(fTypeface.get()));
[
all
...]
/external/skia/src/ports/
SkHarfBuzzFont.cpp
176
uint32_t
uniqueID
= SkTypeface::
UniqueID
(font->getTypeface());
178
const size_t tableSize = SkFontHost::GetTableSize(
uniqueID
, tag);
192
SkFontHost::GetTableData(
uniqueID
, tag, 0, tableSize, buffer);
/external/webkit/Source/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp
183
SkFontID FontPlatformData::
uniqueID
() const
185
return m_typeface->
uniqueID
();
213
unsigned h = SkTypeface::
UniqueID
(m_typeface);
/frameworks/base/libs/hwui/
OpenGLRenderer.cpp
[
all
...]
Completed in 638 milliseconds