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

  /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 36 GrTextStrike* strike = new GrTextStrike(this, scaler->getKey(), local
38 fCache.insert(key, strike);
41 fHead->fPrev = strike;
44 fTail = strike;
46 strike->fPrev = NULL;
47 strike->fNext = fHead;
48 fHead = strike;
50 return strike;
62 GrTextStrike* strike = fTail; local
63 while (strike) {
92 const GrTextStrike* strike = fHead; local
    [all...]
SkGrFontScaler.cpp 70 SkGrFontScaler::SkGrFontScaler(SkGlyphCache* strike) {
71 fStrike = strike;
  /external/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/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/v8/test/mjsunit/
html-string-funcs.js 36 strike: 'strike', sub: 'sub', sup: 'sup' };
function-names.js 120 "strike", "sub", "sup"];
undeletable-functions.js 112 "big", "blink", "bold", "fixed", "italics", "small", "strike", "sub", "sup",
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-76054.js 91 status = 'strike()';
92 actual = s.strike();
  /external/skia/include/gpu/
SkGr.h 179 explicit SkGrFontScaler(SkGlyphCache* strike);
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLElement11.js 80 Retrieve the id attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("idLink","Test-STRIKE",vid);
HTMLElement127.js 80 Retrieve the class attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("classNameLink","STRIKE-class",vclassname);
HTMLElement40.js 80 Retrieve the title attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("titleLink","STRIKE Element",vtitle);
HTMLElement69.js 80 Retrieve the lang attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
HTMLElement98.js 80 Retrieve the dir attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLElement11.js 80 Retrieve the id attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("idLink","Test-STRIKE",vid);
HTMLElement127.js 80 Retrieve the class attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("classNameLink","STRIKE-class",vclassname);
HTMLElement40.js 80 Retrieve the title attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
104 assertEquals("titleLink","STRIKE Element",vtitle);
HTMLElement69.js 80 Retrieve the lang attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
HTMLElement98.js 80 Retrieve the dir attribute of the STRIKE element and examine its value.
99 nodeList = doc.getElementsByTagName("strike");
  /external/v8/src/
string.js 915 return "<strike>" + this + "</strike>";
1013 "strike", StringStrike,
  /external/webkit/Source/WebCore/css/
html.css 787 s, strike, del {

Completed in 4250 milliseconds