/external/webkit/Source/WebCore/platform/graphics/skia/ |
FontCustomPlatformData.cpp | 121 String fontName = base64Encode(reinterpret_cast<char*>(&fontUuid), sizeof(fontUuid)); 122 ASSERT(fontName.length() < LF_FACESIZE); 123 return fontName; 185 String fontName = createUniqueFontName(); 186 HANDLE fontReference = renameAndActivateFont(buffer, fontName); 189 return new FontCustomPlatformData(fontReference, fontName);
|
/external/bison/doc/figs/ |
example.dot | 7 node [fontname = courier, shape = box, colorscheme = paired6] 8 edge [fontname = courier]
|
/external/harfbuzz_ng/contrib/python/scripts/ |
hbtestfont | 68 def __init__(self, fontname, bold, italic, size, glyphs) : 70 self.fontname = fontname 96 cr.set_font_face(cairo.ToyFontFace(self.fontname, cairo.FONT_SLANT_ITALIC if self.italic else cairo.FONT_SLANT_NORMAL, cairo.FONT_WEIGHT_BOLD if self.bold else cairo.FONT_WEIGHT_NORMAL))
|
/external/icu4c/test/letest/ |
xmlreader.cpp | 171 char *fontName = NULL; 204 fontName = getCString(element->getAttribute(name_attr)); 238 (*callback)(id, fontName, fontVer, fontCksum, scriptCode, languageCode, text.getBuffer(), charCount, &expected); 248 freeCString(fontName);
|
FontObject.h | 184 FontObject(char *fontName);
|
cletest.c | 394 static le_font *openFont(const char *fontName, const char *checksum, const char *version, const char *testID) 400 if (fontName != NULL) { 401 font = le_portableFontOpen(getPath(path, fontName), 12, &fontStatus); 404 log_info("Test %s: can't open font %s - test skipped.\n", testID, fontName); 439 const char *fontName, 450 le_font *font = openFont(fontName, fontChecksum, fontVersion, testID); 459 if (fontName == NULL) {
|
/external/webkit/Source/WebCore/platform/graphics/opentype/ |
OpenTypeUtilities.cpp | 344 // adds fontName to the font table in fontData, and writes the new font table to rewrittenFontTable 346 static size_t renameFontInternal(SharedBuffer* fontData, const String& fontName, Vector<char> &rewrittenFontData) 362 size_t nameTableSize = ((offsetof(nameTable, nameRecords) + nameRecordCount * sizeof(nameRecord) + fontName.length() * sizeof(UChar)) & ~3) + 4; 383 name->nameRecords[i].length = fontName.length() * sizeof(UChar); 393 for (unsigned i = 0; i < fontName.length(); ++i) 394 reinterpret_cast<BigEndianUShort*>(data + originalDataSize + name->stringOffset)[i] = fontName[i]; 407 bool renameFont(SharedBuffer* fontData, const String& fontName) 419 if (!renameFontInternal(fontData, fontName, rewrittenFontData)) 428 HANDLE renameAndActivateFont(SharedBuffer* fontData, const String& fontName) 431 size_t nameTableSize = renameFontInternal(fontData, fontName, rewrittenFontData) [all...] |
/external/webkit/Tools/DumpRenderTree/mac/ |
TextInputController.m | 77 || aSelector == @selector(addFontAttribute:fontName:size:) 78 || aSelector == @selector(addFontAttribute:fontName:size:from:length:)) 99 if (aSelector == @selector(addFontAttribute:fontName:size:)) 101 if (aSelector == @selector(addFontAttribute:fontName:size:from:length:)) 143 - (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize 145 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange(0, [self length])]; 148 - (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize from:(int)from length:(int)length 150 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange((unsigned)from, (unsigned)length)] [all...] |
/external/webkit/Source/WebCore/loader/cache/ |
CachedFont.cpp | 148 SVGFontElement* CachedFont::getSVGFontById(const String& fontName) const 165 if (fontName.isEmpty()) 170 if (element->getIdAttribute() == fontName)
|
/external/freetype/src/cff/ |
cfftoken.h | 63 CFF_FIELD_STRING ( 0x126, cid_font_name, "FontName" )
|
/external/bison/src/ |
graphviz.c | 57 " node [fontname = courier, shape = box, colorscheme = paired6]\n" 58 " edge [fontname = courier]\n"
|
/external/skia/src/sfnt/ |
SkOTUtils.cpp | 36 SkData* SkOTUtils::RenameFont(SkStream* fontData, const char* fontName, int fontNameLen) { 137 nameString[i] = SkEndian_SwapBE16(fontName[i]);
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
CrossProcessFontLoading.mm | 78 NSString* fontName = (NSString*)CGFontCopyPostScriptName(cgFont); 79 return [fontName isEqualToString:@"LastResort"];
|
FontUtilsChromiumWin.cpp | 47 bool isFontPresent(const UChar* fontName) 50 fontName); 63 return !wcscmp(fontName, actualFontName);
|
/external/webkit/Source/WebKit/chromium/tests/ |
UniscribeHelperTest.cpp | 51 HFONT MakeFont(const wchar_t* fontName, SCRIPT_CACHE** cache) 56 wcscpy_s(lf.lfFaceName, fontName);
|
/external/llvm/test/CodeGen/Thumb2/ |
2009-08-04-CoalescerBug.ll | 67 br i1 %2, label %bb.i5, label %FontName.exit 71 br label %FontName.exit 73 FontName.exit: ; preds = %bb.i5, %FontSize.exit 89 bb100.outer.outer: ; preds = %bb79.critedge, %bb1.i3, %FontName.exit 90 %x_addr.0.ph.ph = phi %struct.rec* [ %x, %FontName.exit ], [ null, %bb79.critedge ], [ null, %bb1.i3 ] ; <%struct.rec*> [#uses=1]
|
/external/webkit/Source/WebCore/platform/mac/ |
WebFontCache.mm | 108 static inline void fixUpWeight(NSInteger& weight, NSString *fontName) 112 UNUSED_PARAM(fontName); 114 if (weight == 3 && [fontName rangeOfString:@"ultralight" options:NSCaseInsensitiveSearch | NSBackwardsSearch | NSLiteralSearch].location != NSNotFound)
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
TestDotTreeGenerator.cs | 63 + @" bgcolor=""lightgrey""; node [shape=box, fixedsize=false, fontsize=12, fontname=""Helvetica-bold"", fontcolor=""blue""" + newline
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu_cocoa_controller.mm | 31 gfx::Font font(base::SysNSStringToUTF16([nsfont fontName]),
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
ev_bubble_decoration.mm | 94 gfx::Font font(base::SysNSStringToUTF16([font_ fontName]),
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
DotTreeGenerator.cs | 65 "\tbgcolor=\"lightgrey\"; node [shape=box, fixedsize=false, fontsize=12, fontname=\"Helvetica-bold\", fontcolor=\"blue\"", 84 * node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/ |
DOTTreeGenerator.cs | 63 "\tbgcolor=\"lightgrey\"; node [shape=box, fixedsize=false, fontsize=12, fontname=\"Helvetica-bold\", fontcolor=\"blue\"", 82 * node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
DotTreeGenerator.cs | 65 "\tbgcolor=\"lightgrey\"; node [shape=box, fixedsize=false, fontsize=12, fontname=\"Helvetica-bold\", fontcolor=\"blue\"", 84 * node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
DOTTreeGenerator.java | 60 "\tbgcolor=\"lightgrey\"; node [shape=box, fixedsize=false, fontsize=12, fontname=\"Helvetica-bold\", fontcolor=\"blue\"\n" + 108 * node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
dottreegen.py | 56 " node [shape=plaintext, fixedsize=true, fontsize=11, fontname=\"Courier\",\n" + 180 node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
|