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

1 2

  /external/fonttools/Lib/fontTools/ttLib/tables/
otTables.py 61 startID = font.getGlyphID(start, requireReal=True)
66 endID = font.getGlyphID(end, requireReal=True) + 1
85 getGlyphID = font.getGlyphID
88 glyphIDs = [getGlyphID(glyphName) for glyphName in glyphs ]
150 inputGIDS = [ font.getGlyphID(name) for name in input ]
170 getGlyphID = font.getGlyphID
171 gidItems = [(getGlyphID(a), getGlyphID(b)) for a,b in items
    [all...]
sbixBitmap.py 59 self.gid = struct.pack(">H", ttFont.getGlyphID(self.glyphName))
99 self.imageData = struct.pack(">H", ttFont.getGlyphID(attrs["glyphname"]))
L_T_S_H_.py 35 yPels[ttFont.getGlyphID(name)] = self.yPels[name]
_k_e_r_n.py 123 getGlyphID = ttFont.getGlyphID
124 kernTable = sorted((getGlyphID(left), getGlyphID(right), value) for ((left,right),value) in self.kernTable.items())
C_O_L_R_.py 61 gid = ttFont.getGlyphID(glyphName)
72 layerMap.append(struct.pack(">HH", ttFont.getGlyphID(layer.name), layer.colorID))
87 gid = ttFont.getGlyphID(glyphName)
E_B_L_C_.py 173 glyphIds = list(map(ttFont.getGlyphID, indexSubTable.names))
362 glyphIds = map(ttFont.getGlyphID, self.names)
449 glyphIds = list(map(ttFont.getGlyphID, self.names))
530 glyphIds = list(map(ttFont.getGlyphID, self.names))
572 glyphIds = list(map(ttFont.getGlyphID, self.names))
603 glyphIds = list(map(ttFont.getGlyphID, self.names))
V_O_R_G_.py 73 gid = ttFont.getGlyphID(glyphName)
_c_m_a_p.py 203 valueList = map(ttFont.getGlyphID, valueList)
409 gid = ttFont.getGlyphID(name)
730 gid = ttFont.getGlyphID(name)
853 valueList = map(ttFont.getGlyphID, valueList)
    [all...]
E_B_D_T_.py 715 curComponent.glyphCode = ttFont.getGlyphID(curComponent.name)
739 curComponent.glyphCode = ttFont.getGlyphID(curComponent.name)
otConverters.py 163 value = font.getGlyphID(value)
_g_l_y_f.py 142 def getGlyphID(self, glyphName):
895 glyphID = glyfTable.getGlyphID(self.glyphName)
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ClassTable.java 32 public int getGlyphID()
178 int startID = classTable[startIndex].getGlyphID();
185 if (classTable[endIndex].getGlyphID() != nextID ||
234 writer.writeData(classTable[i].getGlyphID());
  /external/skia/tools/fonts/
SkTestScalerContext.cpp 95 glyph->fAdvanceX = SkFixedToFloat(fTestFont->fWidths[glyph->getGlyphID()]);
104 SkGlyphID glyphID = glyph->getGlyphID();
215 this->getTestTypeface()->getPath(glyph->getGlyphID(), &path);
233 this->getTestTypeface()->getPath(glyph.getGlyphID(), &path);
SkRandomScalerContext.cpp 65 switch (glyph->getGlyphID() % 4) {
137 switch (glyph.getGlyphID() % 4) {
  /external/skqp/tools/
SkTestScalerContext.cpp 95 glyph->fAdvanceX = SkFixedToFloat(fTestFont->fWidths[glyph->getGlyphID()]);
104 SkGlyphID glyphID = glyph->getGlyphID();
215 this->getTestTypeface()->getPath(glyph->getGlyphID(), &path);
233 this->getTestTypeface()->getPath(glyph.getGlyphID(), &path);
SkRandomScalerContext.cpp 65 switch (glyph->getGlyphID() % 4) {
137 switch (glyph.getGlyphID() % 4) {
  /external/skia/src/core/
SkGlyph.h 242 SkGlyphID getGlyphID() const {
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 389 uint16_t glyphId = glyph->getGlyphID();
444 UINT16 glyphId = glyph->getGlyphID();
532 UINT16 glyphId = glyph.getGlyphID();
781 UINT16 index = glyph.getGlyphID();
    [all...]
SkFontHost_FreeType.cpp     [all...]
  /external/skqp/src/core/
SkGlyph.h 242 SkGlyphID getGlyphID() const {
  /external/skqp/src/ports/
SkScalerContext_win_dw.cpp 389 uint16_t glyphId = glyph->getGlyphID();
444 UINT16 glyphId = glyph->getGlyphID();
532 UINT16 glyphId = glyph.getGlyphID();
781 UINT16 index = glyph.getGlyphID();
    [all...]
SkFontHost_FreeType.cpp     [all...]
  /external/fonttools/Lib/fontTools/ttLib/
__init__.py 557 def getGlyphID(self, glyphName, requireReal=False):
565 return self.getGlyphID(glyphName)
597 return self.getGlyphID(glyphName)
  /external/skqp/src/gpu/text/
GrStencilAndCoverTextContext.cpp 543 fallback->appendGlyph(glyph.getGlyphID(), pos);
545 fInstanceData->append(glyph.getGlyphID(), fTextInverseRatio * pos.x(),
  /external/skia/src/gpu/text/
GrAtlasTextContext.cpp 550 GrGlyph::PackedID id = GrGlyph::Pack(skGlyph.getGlyphID(),
    [all...]

Completed in 1121 milliseconds

1 2