OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strikeIndex
(Results
1 - 3
of
3
) sorted by null
/external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py
139
for
strikeIndex
, bitmapGlyphDict in enumerate(self.strikeData):
140
writer.begintag('strikedata', [('index',
strikeIndex
)])
143
curBitmap.toXML(
strikeIndex
, curName, writer, ttFont)
153
strikeIndex
= safeEval(attrs['index'])
173
if
strikeIndex
>= len(self.strikeData):
174
self.strikeData += [None] * (
strikeIndex
+ 1 - len(self.strikeData))
175
assert self.strikeData[
strikeIndex
] is None, "Duplicate strike EBDT indices."
176
self.strikeData[
strikeIndex
] = bitmapGlyphDict
256
def _writeRawImageData(
strikeIndex
, glyphName, bitmapObject, writer, ttFont):
266
def _writeRowImageData(
strikeIndex
, glyphName, bitmapObject, writer, ttFont)
[
all
...]
E_B_L_C_.py
214
strikeIndex
= safeEval(attrs['index'])
220
if
strikeIndex
>= len(self.strikes):
221
self.strikes += [None] * (
strikeIndex
+ 1 - len(self.strikes))
222
assert self.strikes[
strikeIndex
] is None, "Duplicate strike EBLC indices."
223
self.strikes[
strikeIndex
] = curStrike
231
def toXML(self,
strikeIndex
, writer, ttFont):
232
writer.begintag('strike', [('index',
strikeIndex
)])
/external/skia/src/ports/
SkFontHost_FreeType.cpp
758
for (FT_Int
strikeIndex
= 0;
strikeIndex
< face->num_fixed_sizes; ++
strikeIndex
) {
759
FT_Pos thisPPEM = face->available_sizes[
strikeIndex
].y_ppem;
763
chosenStrikeIndex =
strikeIndex
;
769
chosenStrikeIndex =
strikeIndex
;
775
chosenStrikeIndex =
strikeIndex
;
[
all
...]
Completed in 630 milliseconds