Searched defs:font (Results 1 - 25 of 209) sorted by relevance

123456789

/external/freetype/src/cff/
H A Dcffload.h34 cff_index_get_string( CFF_Font font,
38 cff_index_get_sid_string( CFF_Font font,
53 cff_index_get_name( CFF_Font font,
66 CFF_Font font,
70 cff_font_done( CFF_Font font ); variable
/external/pdfium/third_party/freetype/src/cff/
H A Dcffload.h34 cff_index_get_string( CFF_Font font,
38 cff_index_get_sid_string( CFF_Font font,
53 cff_index_get_name( CFF_Font font,
66 CFF_Font font,
70 cff_font_done( CFF_Font font ); variable
/external/roboto-fonts/
H A DAndroid.mk21 # create symlink for given font
22 # $(1): new font $(2): link target
24 define create-font-symlink
35 # Build the rest of font files as prebuilt.
38 define build-one-font-module
56 $(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
57 $(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
58 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
59 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
60 $(eval $(call create-font
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DLineWrapMode.java1 package com.jme3.font;
H A DRectangle.java33 package com.jme3.font;
H A DBitmapTextPage.java32 package com.jme3.font;
60 BitmapTextPage(BitmapFont font, boolean arrayBased, int page) { argument
63 if (font == null) {
64 throw new NullPointerException("'font' cannot be null.");
69 Material mat = font.getPage(page);
71 throw new IllegalStateException("The font's texture was not found!");
102 BitmapTextPage(BitmapFont font, boolean arrayBased) { argument
103 this(font, arrayBased, 0);
106 BitmapTextPage(BitmapFont font) { argument
107 this(font, fals
[all...]
H A DColorTags.java1 package com.jme3.font;
H A DKerning.java33 package com.jme3.font;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/
H A DBitmapFontLoader.java33 package com.jme3.font.plugins;
36 import com.jme3.font.BitmapCharacter;
37 import com.jme3.font.BitmapCharacterSet;
38 import com.jme3.font.BitmapFont;
56 BitmapFont font = new BitmapFont();
61 font.setCharSet(charSet);
87 font.setPages(matPages);
165 return font;
172 BitmapFont font = load(info.getManager(), info.getKey().getFolder(), in);
173 return font;
[all...]
/external/proguard/src/proguard/gui/splash/
H A DFontSprite.java26 * This Sprite sets the font for another given sprite.
32 private final VariableFont font; field in class:FontSprite
38 * @param font the variable Font of the given sprite.
39 * @param sprite the sprite that will be provided of a font and painted.
41 public FontSprite(VariableFont font, argument
44 this.font = font;
53 // Save the old font.
56 // Set the new font.
57 graphics.setFont(font
[all...]
H A DVariableSizeFont.java32 private final Font font; field in class:VariableSizeFont
41 * @param font the base font.
42 * @param size the variable size of the font.
44 public VariableSizeFont(Font font, VariableDouble size) argument
46 this.font = font;
60 cachedFont = font.deriveFont((float)s);
/external/protobuf/editors/
H A Dprotobuf-mode.el158 (defconst protobuf-font-lock-keywords-1 (c-lang-const c-matchers-1 protobuf)
161 (defconst protobuf-font-lock-keywords-2 (c-lang-const c-matchers-2 protobuf)
164 (defconst protobuf-font-lock-keywords-3 (c-lang-const c-matchers-3 protobuf)
167 (defvar protobuf-font-lock-keywords protobuf-font-lock-keywords-3
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-normalize-private.hh49 hb_font_t *font);
56 hb_font_t *font; member in struct:hb_ot_shape_normalize_context_t
H A Dsample.py28 font = hb.font_create (face) variable
31 hb.font_set_scale (font, upem, upem)
32 #hb.ft_font_set_funcs (font)
33 hb.ot_font_set_funcs (font)
39 hb.shape (font, buf, [])
40 del font
H A Dtest-would-substitute.cc53 fprintf (stderr, "usage: %s font-file lookup-index first-glyph [second-glyph]\n", argv[0]);
94 hb_font_t *font = hb_font_create (face); local
96 hb_ft_font_set_funcs (font);
101 if (!hb_font_glyph_from_string (font, argv[3], -1, &glyphs[0]) ||
103 !hb_font_glyph_from_string (font, argv[4], -1, &glyphs[1])))
/external/harfbuzz_ng/util/
H A Dshape-consumer.hh40 font (NULL) {}
44 font = hb_font_reference (font_opts->get_font ());
61 if (!shaper.shape (font, buffer)) {
74 hb_font_destroy (font);
75 font = NULL;
85 hb_font_t *font; member in struct:shape_consumer_t
/external/icu/icu4c/source/samples/layout/
H A DSurface.cpp5 void GDISurface::setFont(RenderingFontInstance *font) argument
7 GDIFontInstance *gFont = (GDIFontInstance *) font;
9 if (fCurrentFont != font) {
10 fCurrentFont = font;
15 void GDISurface::drawGlyphs(RenderingFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const le_int32 *dx, argument
25 setFont(font);
H A Drsurface.cpp16 void rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count, argument
21 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
/external/libvncserver/examples/
H A Dfontsel.c40 rfbFontDataPtr font; local
58 font=rfbLoadConsoleFont(DEFAULTFONT);
59 if(!font) {
67 i = rfbSelectBox(s,font,fontlist,10,20,200,300,0xffdfdf,0x602040,2,showFont);
70 rfbFreeFont(font);
/external/noto-fonts/
H A DAndroid.mk17 # Use full Noto Sans Japanese font on non-smaller footprints
28 define build-one-font-module
51 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
211 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
212 build-one-font-module :=
/external/sfntly/cpp/src/sample/subtly/
H A Ddebug_main.cc23 #include "sfntly/font.h"
45 FontPtr font; local
46 font.Attach(subtly::LoadFont(input_font_path));
48 int32_t original_size = TotalFontSize(font);
49 Ptr<Subsetter> subsetter = new Subsetter(font, NULL);
58 subtly::PrintComparison(stdout, font, new_font);
H A Dmerger_main.cc23 #include "sfntly/font.h"
36 void CheckLoading(const char* font_path, Font* font) { argument
37 if (!font || font->num_tables() == 0) {
38 fprintf(stderr, "Could not load font %s. Terminating.\n", font_path);
51 Ptr<Font> font; local
52 font.Attach(LoadFont(argv[i]));
53 CheckLoading(argv[i], font);
54 fonts.push_back(font);
61 fprintf(stderr, "Serializing font t
[all...]
H A Dsubsetter.cc21 #include "sfntly/font.h"
35 Subsetter::Subsetter(Font* font, CharacterPredicate* predicate) argument
36 : font_(font),
54 "Couldn't create font info. No subset will be generated.\n");
H A Dsubsetter_main.cc23 #include "sfntly/font.h"
45 FontPtr font; local
46 font.Attach(subtly::LoadFont(input_font_path));
47 if (font->num_tables() == 0) {
48 fprintf(stderr, "Could not load font %s.\n", input_font_path);
62 int32_t original_size = TotalFontSize(font);
67 Ptr<Subsetter> subsetter = new Subsetter(font, range_predicate);
76 subtly::PrintComparison(stdout, font, new_font);
H A Dutils.cc21 #include "sfntly/font.h"
61 bool SerializeFont(const char* font_path, Font* font) { argument
66 return SerializeFont(font_path, font_factory, font);
69 bool SerializeFont(const char* font_path, FontFactory* factory, Font* font) { argument
70 if (!font_path || !factory || !font)
72 // Serializing the font to a stream.
74 factory->SerializeFont(font, &output_stream);

Completed in 488 milliseconds

123456789