Searched refs:strike (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/skia/src/gpu/
H A DGrTextStrike_impl.h14 void GrFontCache::detachStrikeFromList(GrTextStrike* strike) { argument
15 if (strike->fPrev) {
16 SkASSERT(fHead != strike);
17 strike->fPrev->fNext = strike->fNext;
19 SkASSERT(fHead == strike);
20 fHead = strike->fNext;
23 if (strike->fNext) {
24 SkASSERT(fTail != strike);
25 strike
35 GrTextStrike* strike = fCache.find(*(scaler->getKey())); local
[all...]
H A DGrTextStrike.cpp94 GrTextStrike* strike = SkNEW_ARGS(GrTextStrike, local
96 fCache.add(strike);
99 fHead->fPrev = strike;
102 fTail = strike;
104 strike->fPrev = NULL;
105 strike->fNext = fHead;
106 fHead = strike;
108 return strike;
126 void GrFontCache::purgeStrike(GrTextStrike* strike) { argument
127 fCache.remove(*(strike
142 GrTextStrike* strike = fHead; local
180 const GrTextStrike* strike = fHead; local
[all...]
H A DGrTextStrike.h27 * glyphid->strike
135 void purgeStrike(GrTextStrike* strike);
H A DGrFontScaler.cpp53 GrFontScaler::GrFontScaler(SkGlyphCache* strike) { argument
54 fStrike = strike;
147 // The windows font host sometimes has BW glyphs in a non-BW strike. So it is important here to
148 // check the glyph's format, not the strike's format, and to be able to convert to any of the
/external/skia/src/gpu/
H A DGrTextStrike_impl.h22 static bool LessThan(const GrTextStrike& strike, const Key& key) { argument
23 return *strike.getFontScalerKey() < *key.fFontScalerKey;
25 static bool Equals(const GrTextStrike& strike, const Key& key) { argument
26 return *strike.getFontScalerKey() == *key.fFontScalerKey;
33 void GrFontCache::detachStrikeFromList(GrTextStrike* strike) { argument
34 if (strike->fPrev) {
35 SkASSERT(fHead != strike);
36 strike->fPrev->fNext = strike->fNext;
38 SkASSERT(fHead == strike);
55 GrTextStrike* strike = fCache.find(key); local
[all...]
H A DGrTextStrike.cpp91 GrTextStrike* strike = SkNEW_ARGS(GrTextStrike, local
93 fCache.insert(key, strike);
96 fHead->fPrev = strike;
99 fTail = strike;
101 strike->fPrev = NULL;
102 strike->fNext = fHead;
103 fHead = strike;
105 return strike;
118 void GrFontCache::purgeStrike(GrTextStrike* strike) { argument
119 const GrFontCache::Key key(strike
135 GrTextStrike* strike = fHead; local
173 const GrTextStrike* strike = fHead; local
[all...]
H A DGrTextStrike.h27 * glyphid->strike
131 void purgeStrike(GrTextStrike* strike);
H A DSkGrFontScaler.cpp71 SkGrFontScaler::SkGrFontScaler(SkGlyphCache* strike) { argument
72 fStrike = strike;
165 // The windows font host sometimes has BW glyphs in a non-BW strike. So it is important here to
166 // 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/
H A Dttbdf.c89 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;
H A Dttsbit.c139 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 correspondin
[all...]
H A Dttsbit0.c135 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 correspondin
[all...]
/external/freetype/src/sfnt/
H A Dttbdf.c89 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;
H A Dttsbit.c236 FT_Byte* strike; local
239 strike = face->sbit_table + 8 + strike_index * 48;
241 metrics->x_ppem = (FT_UShort)strike[44];
242 metrics->y_ppem = (FT_UShort)strike[45];
244 metrics->ascender = (FT_Char)strike[16] << 6; /* hori.ascender */
245 metrics->descender = (FT_Char)strike[17] << 6; /* hori.descender */
249 metrics->max_advance = ( (FT_Char)strike[22] + /* min_origin_SB */
250 strike[18] + /* max_width */
251 (FT_Char)strike[23] /* min_advance_SB */
365 /* now find the strike correspondin
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dttbdf.c89 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;
H A Dttsbit.c139 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 correspondin
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dhtml-string-funcs.js36 strike: 'strike', sub: 'sub', sup: 'sup' };
/external/chromium_org/v8/test/mjsunit/es6/
H A Dstring-html.js128 assertEquals('_'.strike(), '<strike>_</strike>');
129 assertEquals('<'.strike(), '<strike><</strike>');
130 assertEquals(String.prototype.strike.call(0x2A), '<strike>42</strike>');
132 String.prototype.strike
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrFontScaler.h65 explicit GrFontScaler(SkGlyphCache* strike);
/external/chromium_org/third_party/freetype/src/pfr/
H A Dpfrload.c353 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/freetype/src/pfr/
H A Dpfrload.c353 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/libvterm/src/
H A Dpen.c143 state->pen.strike = 0; setpenattr_bool(state, VTERM_ATTR_STRIKE, 0);
165 setpenattr_bool(state, VTERM_ATTR_STRIKE, state->pen.strike);
241 state->pen.strike = 1;
282 state->pen.strike = 0;
375 if(state->pen.strike)
431 val->boolean = state->pen.strike;
H A Dscreen.c23 unsigned int strike : 1; member in struct:__anon25025
405 screen->pen.strike = val->boolean;
712 cell->attrs.strike = intcell->pen.strike;
746 intcell->pen.strike = cell->attrs.strike;
833 if((attrs & VTERM_ATTR_STRIKE_MASK) && (a->pen.strike != b->pen.strike))
/external/chromium_org/ui/gfx/
H A Drender_text_mac.h64 bool strike; member in struct:gfx::RenderTextMac::TextRun
H A Drender_text_win.h33 bool strike; member in struct:gfx::internal::TextRun
/external/skia/include/gpu/
H A DSkGr.h109 explicit SkGrFontScaler(SkGlyphCache* strike);

Completed in 4384 milliseconds

12