HomeSort by relevance Sort by last modified time
    Searched defs:uniqueID (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkTypeface.h 62 uint32_t uniqueID() const { return fUniqueID; }
64 /** Return the uniqueID for the specified typeface. If the face is null,
65 resolve it to the default font and return its uniqueID. Will never
68 static uint32_t UniqueID(const SkTypeface* face);
122 /** uniqueID must be unique (please!) and non-zero
124 SkTypeface(Style style, uint32_t uniqueID)
125 : fUniqueID(uniqueID), fStyle(style) {}
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp 133 SkFontID FontPlatformData::uniqueID() const
135 return m_typeface->uniqueID();
160 unsigned h = SkTypeface::UniqueID(m_typeface);
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 140 int uniqueID = -1;
172 uniqueID++;
262 * applying generation and uniqueID if present.
296 sb.append(value, cur, next - cur - 1).append(uniqueID);
333 if (!hasUniqueID && uniqueID > 0) {
334 sb.append(".").append(uniqueID);

Completed in 63 milliseconds