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

1 2

  /external/chromium_org/third_party/skia/src/gpu/
GrTextStrike_impl.h 22 static bool LT(const GrTextStrike& strike, const Key& key) {
23 return *strike.getFontScalerKey() < *key.fFontScalerKey;
25 static bool EQ(const GrTextStrike& strike, const Key& key) {
26 return *strike.getFontScalerKey() == *key.fFontScalerKey;
33 void GrFontCache::detachStrikeFromList(GrTextStrike* strike) {
34 if (strike->fPrev) {
35 GrAssert(fHead != strike);
36 strike->fPrev->fNext = strike->fNext;
38 GrAssert(fHead == strike);
55 GrTextStrike* strike = fCache.find(key); local
    [all...]
GrTextStrike.cpp 45 GrTextStrike* strike = SkNEW_ARGS(GrTextStrike, local
48 fCache.insert(key, strike);
51 fHead->fPrev = strike;
54 fTail = strike;
56 strike->fPrev = NULL;
57 strike->fNext = fHead;
58 fHead = strike;
60 return strike;
72 GrTextStrike* strike = fTail; local
74 while (strike) {
100 GrTextStrike* strike = fTail; local
134 const GrTextStrike* strike = fHead; local
    [all...]
SkGrFontScaler.cpp 70 SkGrFontScaler::SkGrFontScaler(SkGlyphCache* strike) {
71 fStrike = strike;
153 // The windows font host sometimes has BW glyphs in a non-BW strike. So it is important here to
154 // check the glyph's format, not the strike's format, and to be able to convert to any of the
  /external/skia/src/gpu/
GrTextStrike_impl.h 22 static bool LT(const GrTextStrike& strike, const Key& key) {
23 return *strike.getFontScalerKey() < *key.fFontScalerKey;
25 static bool EQ(const GrTextStrike& strike, const Key& key) {
26 return *strike.getFontScalerKey() == *key.fFontScalerKey;
33 void GrFontCache::detachStrikeFromList(GrTextStrike* strike) {
34 if (strike->fPrev) {
35 GrAssert(fHead != strike);
36 strike->fPrev->fNext = strike->fNext;
38 GrAssert(fHead == strike);
55 GrTextStrike* strike = fCache.find(key); local
    [all...]
GrTextStrike.cpp 45 GrTextStrike* strike = SkNEW_ARGS(GrTextStrike, local
48 fCache.insert(key, strike);
51 fHead->fPrev = strike;
54 fTail = strike;
56 strike->fPrev = NULL;
57 strike->fNext = fHead;
58 fHead = strike;
60 return strike;
72 GrTextStrike* strike = fTail; local
74 while (strike) {
100 GrTextStrike* strike = fTail; local
134 const GrTextStrike* strike = fHead; local
    [all...]
SkGrFontScaler.cpp 70 SkGrFontScaler::SkGrFontScaler(SkGlyphCache* strike) {
71 fStrike = strike;
153 // The windows font host sometimes has BW glyphs in a non-BW strike. So it is important here to
154 // check the glyph's format, not the strike's format, and to be able to convert to any of the
  /external/chromium_org/third_party/freetype/src/sfnt/
ttsbit.c 494 /* check version number and strike count */
510 /* now read each strike table separately */
512 TT_SBit_Strike strike = face->sbit_strikes; local
521 if ( FT_STREAM_READ_FIELDS( strike_start_fields, strike ) ||
522 FT_STREAM_READ_FIELDS( sbit_line_metrics_fields, &strike->hori ) ||
523 FT_STREAM_READ_FIELDS( sbit_line_metrics_fields, &strike->vert ) ||
524 FT_STREAM_READ_FIELDS( strike_end_fields, strike ) )
528 strike++;
534 /* allocate the index ranges for each strike table */
536 TT_SBit_Strike strike = face->sbit_strikes local
616 TT_SBit_Strike strike = face->sbit_strikes; local
661 TT_SBit_Strike strike; local
826 TT_SBit_Strike strike; local
1456 TT_SBit_Strike strike; local
    [all...]
ttbdf.c 89 FT_Byte* strike; local
106 strike = p + count * 4;
117 strike += 10 * num_items;
122 if ( strike > bdf->strings )
149 FT_Byte* strike; local
164 strike = p + 4 * count;
186 strike += 10 * _count;
191 p = strike;
ttsbit0.c 135 FT_Byte* strike; local
141 strike = face->sbit_table + 8 + strike_index * 48;
143 metrics->x_ppem = (FT_UShort)strike[44];
144 metrics->y_ppem = (FT_UShort)strike[45];
146 metrics->ascender = (FT_Char)strike[16] << 6; /* hori.ascender */
147 metrics->descender = (FT_Char)strike[17] << 6; /* hori.descender */
151 metrics->max_advance = ( (FT_Char)strike[22] + /* min_origin_SB */
152 strike[18] + /* max_width */
153 (FT_Char)strike[23] /* min_advance_SB */
212 /* now find the strike corresponding to the index *
    [all...]
  /external/freetype/src/sfnt/
ttbdf.c 89 FT_Byte* strike; local
106 strike = p + count * 4;
117 strike += 10 * num_items;
122 if ( strike > bdf->strings )
149 FT_Byte* strike; local
164 strike = p + 4 * count;
186 strike += 10 * _count;
191 p = strike;
ttsbit.c 139 FT_Byte* strike; local
145 strike = face->sbit_table + 8 + strike_index * 48;
147 metrics->x_ppem = (FT_UShort)strike[44];
148 metrics->y_ppem = (FT_UShort)strike[45];
150 metrics->ascender = (FT_Char)strike[16] << 6; /* hori.ascender */
151 metrics->descender = (FT_Char)strike[17] << 6; /* hori.descender */
155 metrics->max_advance = ( (FT_Char)strike[22] + /* min_origin_SB */
156 strike[18] + /* max_width */
157 (FT_Char)strike[23] /* min_advance_SB */
218 /* now find the strike corresponding to the index *
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
SkGr.h 82 explicit SkGrFontScaler(SkGlyphCache* strike);
  /external/skia/include/gpu/
SkGr.h 82 explicit SkGrFontScaler(SkGlyphCache* strike);
  /external/freetype/src/pfr/
pfrload.c 353 PFR_Strike strike; local
395 strike = phy_font->strikes + phy_font->num_strikes;
399 for ( n = 0; n < count; n++, strike++ )
401 strike->x_ppm = ( flags0 & PFR_STRIKE_2BYTE_XPPM )
405 strike->y_ppm = ( flags0 & PFR_STRIKE_2BYTE_YPPM )
409 strike->flags = PFR_NEXT_BYTE( p );
411 strike->bct_size = ( flags0 & PFR_STRIKE_3BYTE_SIZE )
415 strike->bct_offset = ( flags0 & PFR_STRIKE_3BYTE_OFFSET )
419 strike->num_bitmaps = ( flags0 & PFR_STRIKE_2BYTE_COUNT )
  /external/chromium_org/ui/gfx/
render_text_mac.h 63 bool strike; member in struct:gfx::RenderTextMac::TextRun
render_text_win.h 33 bool strike; member in struct:gfx::internal::TextRun
render_text_mac.cc 174 run.underline, run.strike, run.diagonal_strike);
186 strike(false),
305 // this better. Also, support strike and diagonal_strike.
render_text.h 66 // Draw underline and strike-through text decorations.
69 void DrawDecorations(int x, int y, int width, bool underline, bool strike,
render_text_win.cc 163 strike(false),
525 run->strike, run->diagonal_strike);
586 run->strike = style.style(STRIKE);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
html-string-funcs.js 36 strike: 'strike', sub: 'sub', sup: 'sup' };
function-names.js 120 "strike", "sub", "sup"];
  /external/v8/test/mjsunit/
html-string-funcs.js 36 strike: 'strike', sub: 'sub', sup: 'sup' };
function-names.js 120 "strike", "sub", "sup"];
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 507 for (size_t strike = 0; strike < size_builders->size(); ++strike) {
509 (*size_builders)[strike]->IndexSubTableBuilders();
512 SubsetIndexSubTable((*index_builders)[index], new_loca[strike],
524 // one per strike
525 // holds strike metrics - sbitLineMetrics
528 // one per strike and then one per indexSubTable for that strike
  /external/chromium_org/tools/grit/grit/gather/
tr_html.py 77 'key', 'nobr', 'url', 'em', 's', 'sup', 'strike',

Completed in 889 milliseconds

1 2