HomeSort by relevance Sort by last modified time
    Searched full:fontname (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
epsilon-edge.st 1 <src> -> <target> [fontname="Times-Italic", label = "e"];
action-edge.st 1 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
edge.st 1 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
dot.stg 56 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
60 <src> -> <target> [fontsize=11, fontname="Courier", arrowsize=.7, label = "<label>"<if(arrowhead)>, arrowhead = <arrowhead><endif>];
64 <src> -> <target> [fontname="Times-Italic", label = "e"];
  /external/bison/doc/figs/
example-shift.dot 3 node [fontname=courier shape=box]
4 edge [fontname=courier]
example-reduce.dot 3 node [fontname=courier shape=box]
4 edge [fontname=courier]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java 61 String fontname; field in class:FontTableBox.FontRecord
66 public FontRecord(int fontId, String fontname) {
68 this.fontname = fontname;
74 fontname = IsoTypeReader.readString(bb, length);
79 IsoTypeWriter.writeUInt8(bb, fontname.length());
80 bb.put(Utf8.convert(fontname));
84 return Utf8.utf8StringLengthInBytes(fontname) + 3;
91 ", fontname='" + fontname + '\''
    [all...]
  /external/skia/src/sfnt/
SkOTUtils.h 27 * UniqueFontIdentifier, FullFontName, and PostscriptName are fontName.
32 * fontName and fontNameLen must be specified in terms of ASCII chars.
34 static SkData* RenameFont(SkStream* fontData, const char* fontName, int fontNameLen);
  /external/icu4c/samples/layout/
GDIFontMap.cpp 29 const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
31 LEFontInstance *result = new GDIFontInstance(fSurface, fontName, pointSize, status);
FontMap.h 37 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status) = 0;
43 le_int32 getFontIndex(const char *fontName);
GnomeFontMap.cpp 31 const LEFontInstance *GnomeFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
33 LEFontInstance *result = new GnomeFontInstance(fEngine, fontName, pointSize, status);
GDIFontMap.h 32 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
GnomeFontMap.h 32 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
FontMap.cpp 40 char *c, *scriptName, *fontName, *line, buffer[BUFFER_SIZE];
64 fontName = strip(&c[1]);
68 defaultFont = getFontIndex(fontName);
89 fFontIndices[script] = getFontIndex(fontName);
127 le_int32 FontMap::getFontIndex(const char *fontName)
132 if (strcmp(fontName, fFontNames[index]) == 0) {
164 le_int32 len = strlen(fontName);
167 fFontNames[index] = strcpy(s, fontName);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontCustomPlatformData.cpp 35 bool renameFont(SharedBuffer* fontData, const String& fontName);
68 String fontName = base64Encode(reinterpret_cast<char*>(&fontUuid), sizeof(fontUuid));
69 ASSERT(fontName.length() < LF_FACESIZE);
70 return fontName.replace('/', '_');
76 String fontName = createUniqueFontName();
78 if (renameFont(localBuffer.get(), fontName) && g_customFontCache->registerFont(fontName, localBuffer.get()))
79 return new FontCustomPlatformData(fontName);
FontCustomPlatformData.h 38 virtual bool registerFont(const String& fontName, const SharedBuffer*) = 0;
39 virtual void unregisterFont(const String& fontName) = 0;
  /external/icu4c/test/letest/
xmlreader.h 14 const char *fontName,
gendata.cpp 39 const char *fontName;
192 char *fontName = getCString(element->getAttribute(name_attr));
194 PortableFontInstance *pfi = new PortableFontInstance(fontName, 12, leStatus);
197 printf("Error: could not open font: %s\n", fontName);
198 freeCString(fontName);
211 fontName, uversion, pfi->getFontChecksum());
217 fontName, version, pfi->getFontChecksum());
222 freeCString(fontName);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
QuicktimeTextSampleEntry.java 50 String fontName = "";
79 fontName = new String(myFontName);
81 fontName = null;
87 return 52 + (fontName != null ? fontName.length() : 0);
204 return fontName;
207 public void setFontName(String fontName) {
208 this.fontName = fontName;
229 if (fontName != null)
    [all...]
  /external/skia/legacy/src/animator/
SkPaintParts.cpp 75 SK_MEMBER(fontName, String),
96 SkDebugf("%*s<typeface fontName=\"%s\" ", SkDisplayList::fIndent, "", fontName.c_str());
SkPaintParts.h 68 return SkTypeface::CreateFromName(fontName.c_str(), style); }
71 SkString fontName;
  /external/skia/src/animator/
SkPaintParts.cpp 75 SK_MEMBER(fontName, String),
96 SkDebugf("%*s<typeface fontName=\"%s\" ", SkDisplayList::fIndent, "", fontName.c_str());
SkPaintParts.h 68 return SkTypeface::CreateFromName(fontName.c_str(), style); }
71 SkString fontName;
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformData.cpp 160 String fontName = base64Encode(reinterpret_cast<char*>(&fontUuid), sizeof(fontUuid));
161 ASSERT(fontName.length() < LF_FACESIZE);
162 return fontName;
185 String fontName = createUniqueFontName();
201 LONG loadEmbeddedFontResult = TTLoadEmbeddedFont(&fontReference, TTLOAD_PRIVATE, &privStatus, LICENSE_PREVIEWPRINT, &status, readEmbedProc, &eotStream, const_cast<LPWSTR>(fontName.charactersWithNullTermination()), 0, 0);
203 fontName = String();
205 fontReference = renameAndActivateFont(buffer, fontName);
210 return new FontCustomPlatformData(fontReference, fontName);
  /external/freetype/include/freetype/
ftmac.h 95 /* fond = GetResource( 'FOND', fontName ); */
116 /* fontName :: Mac OS name of the font (e.g., Times New Roman */
130 FT_GetFile_From_Mac_Name( const char* fontName,
145 /* fontName :: Mac OS name of the font in ATS framework. */
158 FT_GetFile_From_Mac_ATS_Name( const char* fontName,
174 /* fontName :: Mac OS name of the font in ATS framework. */
189 FT_GetFilePath_From_Mac_ATS_Name( const char* fontName,

Completed in 181 milliseconds

1 2 3 4