Home
last modified time | relevance | path

Searched refs:postScriptName (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/graphics/fonts/
DFontFamilyUpdateRequest.java178 public Builder(@NonNull String postScriptName, @NonNull FontStyle style) { in Builder() argument
179 Objects.requireNonNull(postScriptName); in Builder()
180 Preconditions.checkStringNotEmpty(postScriptName); in Builder()
182 mPostScriptName = postScriptName; in Builder()
241 private Font(@NonNull String postScriptName, @NonNull FontStyle style, in Font() argument
243 mPostScriptName = postScriptName; in Font()
DFontUpdateRequest.java84 public Font(@NonNull String postScriptName, @NonNull FontStyle fontStyle, in Font() argument
86 mPostScriptName = postScriptName; in Font()
/frameworks/base/graphics/java/android/graphics/
DFontListParser.java375 String postScriptName = parser.getAttributeValue(null, ATTR_POSTSCRIPT_NAME); in readFont() local
404 if (postScriptName == null) { in readFont()
407 postScriptName = sanitizedName.substring(0, sanitizedName.length() - 4); in readFont()
410 String updatedName = findUpdatedFontFile(postScriptName, updatableFontMap); in readFont()
437 postScriptName, in readFont()
/frameworks/base/core/java/android/text/
DFontConfig.java265 public Font(@NonNull File file, @Nullable File originalFile, @NonNull String postScriptName, in Font() argument
271 mPostScriptName = postScriptName; in Font()
304 String postScriptName = source.readString8();
312 return new Font(path, originalPath, postScriptName, new FontStyle(weight, slant),