HomeSort by relevance Sort by last modified time
    Searched refs:fonts (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/selinux/policycoreutils/restorecond/
restorecond_user.conf 5 ~/.fonts/*
  /build/target/product/
generic_no_telephony.mk 59 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
60 $(call inherit-product-if-exists, external/google-fonts/dancing-script/fonts.mk)
61 $(call inherit-product-if-exists, external/google-fonts/carrois-gothic-sc/fonts.mk)
62 $(call inherit-product-if-exists, external/google-fonts/coming-soon/fonts.mk)
63 $(call inherit-product-if-exists, external/google-fonts/cutive-mono/fonts.mk
    [all...]
sdk_base.mk 80 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
81 $(call inherit-product-if-exists, external/google-fonts/dancing-script/fonts.mk)
82 $(call inherit-product-if-exists, external/google-fonts/carrois-gothic-sc/fonts.mk)
83 $(call inherit-product-if-exists, external/google-fonts/coming-soon/fonts.mk)
84 $(call inherit-product-if-exists, external/google-fonts/cutive-mono/fonts.mk
    [all...]
core_tiny.mk 114 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
115 $(call inherit-product-if-exists, external/roboto-fonts/fonts.mk)
  /external/sfntly/cpp/src/test/
test_font_utils.h 29 void LoadFont(const char* font_path, FontFactory* factory, FontArray* fonts);
32 FontArray* fonts);
cmap_editing_test.cc 68 FontArray fonts; local
71 LoadFont(SAMPLE_TTF_FILE, font_factory, &fonts);
73 ASSERT_FALSE(fonts.empty());
74 ASSERT_FALSE(fonts[0] == NULL);
75 FontPtr font = fonts[0];
test_font_utils.cc 45 void LoadFont(const char* font_path, FontFactory* factory, FontArray* fonts) {
48 factory->LoadFonts(&is, fonts);
54 FontArray* fonts) {
60 factory->LoadFonts(&bv, fonts);
  /device/google/atv/products/
atv_base.mk 115 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
116 $(call inherit-product-if-exists, external/google-fonts/dancing-script/fonts.mk)
117 $(call inherit-product-if-exists, external/google-fonts/carrois-gothic-sc/fonts.mk)
118 $(call inherit-product-if-exists, external/google-fonts/coming-soon/fonts.mk)
119 $(call inherit-product-if-exists, external/google-fonts/cutive-mono/fonts.mk
    [all...]
  /build/core/
sdk_font.mk 2 # Fonts shipped with the SDK need to be renamed for Java to handle them
3 # properly. Hence, a special script is used to rename the fonts. We bundle all
4 # the fonts that are shipped on a newer non-space-constrained device. However,
5 # OpenType fonts used on these devices are not supported by Java. Their
16 # A temporary location to store the renamed fonts. atree picks all files in
18 SDK_FONT_TEMP := $(call intermediates-dir-for,PACKAGING,sdk-fonts,HOST,COMMON)
21 sdk_font_config := $(wildcard frameworks/base/data/fonts/*.xml)
25 frameworks/base/data/fonts/%.xml
29 # List of fonts on the device that we want to ship. This is all .ttf fonts
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
merger_main.cc 49 FontArray fonts; local
54 fonts.push_back(font);
57 Ptr<Merger> merger = new Merger(&fonts);
merger.cc 34 Merger::Merger(FontArray* fonts) {
35 if (!fonts) {
38 int32_t num_fonts = fonts->size();
40 fonts_.insert(std::make_pair(i, fonts->at(i)));
merger.h 31 explicit Merger(sfntly::FontArray* fonts);
utils.cc 32 FontArray fonts; local
33 LoadFonts(font_path, font_factory, &fonts);
34 return fonts[0].Detach();
45 void LoadFonts(const char* font_path, FontFactory* factory, FontArray* fonts) {
48 factory->LoadFonts(&input_stream, fonts);
font_info.h 67 // fonts is a map of font ids to fonts to reference any needed table
70 FontIdMap* fonts);
87 FontIdMap* fonts() const { return fonts_; } function in class:subtly::FontInfo
88 // Takes ownership of the fonts FontIdMap.
89 void set_fonts(FontIdMap* fonts);
utils.h 28 sfntly::FontArray* fonts);
  /frameworks/base/data/fonts/
fonts.mk 18 frameworks/base/data/fonts/system_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/system_fonts.xml \
19 frameworks/base/data/fonts/fallback_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fallback_fonts.xml \
20 frameworks/base/data/fonts/fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fonts.xml
Android.mk 30 $(PRODUCT_OUT)/system/fonts/$(1) : $(PRODUCT_OUT)/system/fonts/$(2)
37 $(ALL_MODULES.$(1).INSTALLED) $(PRODUCT_OUT)/system/fonts/$(1)
41 # The following fonts are just symlinks, for backward compatibility.
65 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
79 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
93 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
110 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts)\
  /frameworks/base/tools/layoutlib/rename_font/
test.py 36 fonts = build_font.get_font_info(name_tag)
39 self.assertEqual(fonts[0].family, "Roboto1200310")
40 self.assertEqual(fonts[0].fullname, "Roboto1200310 Regular")
build_font_single.py 20 OpenType fonts (*.otf) are not currently supported. They are copied to the destination without renaming.
102 # In case of invalid fonts, we exit.
108 # Some fonts are too big to be handled by the ttx library.
121 fonts = []
131 fonts.append(font)
146 fonts.append(font)
147 return fonts
150 def update_tag(tag, fonts):
152 fonts_iterator = fonts.__iter__()
189 'Regular' for plain fonts. However, some fonts don't obey this rule. W
    [all...]
build_font.py 18 Rename the PS name of all fonts in the input directories and copy them to the
118 # In case of invalid fonts, we exit.
124 # Some fonts are too big to be handled by the ttx library.
137 fonts = []
147 fonts.append(font)
162 fonts.append(font)
163 return fonts
166 def update_tag(tag, fonts):
168 fonts_iterator = fonts.__iter__()
205 'Regular' for plain fonts. However, some fonts don't obey this rule. W
    [all...]
  /frameworks/base/graphics/java/android/graphics/
FontListParser.java 63 public Family(String name, List<Font> fonts, String lang, String variant) {
65 this.fonts = fonts;
71 public List<Font> fonts; field in class:FontListParser.Family
110 List<Font> fonts = new ArrayList<Font>(); local
119 String fullFilename = "/system/fonts/" + filename;
120 fonts.add(new Font(fullFilename, weight, isItalic));
125 return new Family(name, fonts, lang, variant);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface_Delegate.java 47 public static final String SYSTEM_FONTS = "/system/fonts/";
72 * Return a list of fonts that match the style and variant. The list is ordered according to
73 * preference of fonts.
76 * render with this list of fonts, then a warning should be logged letting the user know that
92 List<Font> fonts = new ArrayList<Font>(mFontFamilies.length); local
100 fonts.add(font);
103 // We cannot open each font and get locales supported, etc to match the fonts.
115 fonts.add(font);
117 fonts.add(font2);
121 // that the font failed to load. We add null to the list of fonts. Don't thro
    [all...]
  /external/fonttools/
README.md 4 > a tool to convert OpenType and TrueType fonts to and from XML. FontTools is a library for manipulating fonts, written in Python. It supports TrueType, OpenType, AFM and to an extent Type 1 and some Mac-specific formats.
  /external/google-fonts/dancing-script/
Android.mk 27 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
35 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
  /external/noto-fonts/
Android.mk 34 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts)\
40 # First "build" the Noto CJK fonts, which have their own directory and
69 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
77 # Now "build" the rest of the fonts, which live in a separate subdirectory.
83 # The following fonts are included in all builds.
92 # The following fonts are excluded from SMALLER_FONT_FOOTPRINT builds.
194 # The following fonts are excluded from MINIMAL_FONT_FOOTPRINT builds.

Completed in 443 milliseconds

1 2 3 4