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

1 2

  /external/skia/src/gpu/
GrBatchFontCache.h 52 // If a TextStrike is abandoned by the cache, then the caller must get a new strike
88 // The user of the cache may hold a long-lived ref to the returned strike. However, actions by
89 // another client of the cache may cause the strike to be purged while it is still reffed.
91 // interactions with the cache since the strike was received.
93 GrBatchTextStrike* strike = fCache.find(*(scaler->getKey())); local
94 if (NULL == strike) {
95 strike = this->generateStrike(scaler);
97 return strike;
136 bool addToAtlas(GrBatchTextStrike* strike, GrBatchAtlas::AtlasID* id,
140 fPreserveStrike = strike;
    [all...]
GrBatchFontCache.cpp 115 GrBatchTextStrike* strike = &*iter; local
116 strike->removeID(id);
118 // clear out any empty strikes. We will preserve the strike whose call to addToAtlas
120 if (strike != fontCache->fPreserveStrike && 0 == strike->fAtlasedGlyphs) {
121 fontCache->fCache.remove(*(strike->fFontScalerKey));
122 strike->fIsAbandoned = true;
123 strike->unref();
150 The text strike is specific to a given font/style/matrix setup, which is
GrFontScaler.h 65 explicit GrFontScaler(SkGlyphCache* strike);
GrFontScaler.cpp 53 GrFontScaler::GrFontScaler(SkGlyphCache* strike) {
54 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
GrAtlasTextContext.cpp 1614 GrBatchTextStrike* strike = NULL; variable
    [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 249 FT_Byte* strike; local
252 strike = face->sbit_table + 8 + strike_index * 48;
254 metrics->x_ppem = (FT_UShort)strike[44];
255 metrics->y_ppem = (FT_UShort)strike[45];
257 metrics->ascender = (FT_Char)strike[16] << 6; /* hori.ascender */
258 metrics->descender = (FT_Char)strike[17] << 6; /* hori.descender */
262 metrics->max_advance = ( (FT_Char)strike[22] + /* min_origin_SB */
263 strike[18] + /* max_width */
264 (FT_Char)strike[23] /* min_advance_SB */
382 /* now find the strike corresponding to the index *
    [all...]
  /external/pdfium/third_party/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 249 FT_Byte* strike; local
252 strike = face->sbit_table + 8 + strike_index * 48;
254 metrics->x_ppem = (FT_UShort)strike[44];
255 metrics->y_ppem = (FT_UShort)strike[45];
257 metrics->ascender = (FT_Char)strike[16] << 6; /* hori.ascender */
258 metrics->descender = (FT_Char)strike[17] << 6; /* hori.descender */
262 metrics->max_advance = ( (FT_Char)strike[22] + /* min_origin_SB */
263 strike[18] + /* max_width */
264 (FT_Char)strike[23] /* min_advance_SB */
378 /* now find the strike corresponding to the index *
    [all...]
  /external/owasp/sanitizer/empiricism/
canned-data.js 110 "strike": true,
231 "strike",
346 "strike",
461 "strike",
576 "strike",
691 "strike",
807 "strike",
922 "strike",
1037 "strike",
1152 "strike",
    [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/libvterm/src/
pen.c 153 state->pen.strike = 0; setpenattr_bool(state, VTERM_ATTR_STRIKE, 0);
175 setpenattr_bool(state, VTERM_ATTR_STRIKE, state->pen.strike);
257 state->pen.strike = 1;
298 state->pen.strike = 0;
391 if(state->pen.strike)
447 val->boolean = state->pen.strike;
screen.c 23 unsigned int strike : 1; member in struct:__anon13975
414 screen->pen.strike = val->boolean;
753 cell->attrs.strike = intcell->pen.strike;
790 intcell->pen.strike = cell->attrs.strike;
877 if((attrs & VTERM_ATTR_STRIKE_MASK) && (a->pen.strike != b->pen.strike))
vterm_internal.h 32 unsigned int strike:1; member in struct:VTermPen
  /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",
  /packages/apps/Terminal/src/com/android/terminal/
Terminal.java 48 boolean strike; field in class:Terminal.CellRun
  /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/libvterm/include/
vterm.h 228 unsigned int strike : 1; member in struct:__anon13965::__anon13966
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/common/
html.js 138 STRIKE: 'strike',
  /external/v8/src/
string.js 909 CHECK_OBJECT_COERCIBLE(this, "String.prototype.strike");
910 return "<strike>" + this + "</strike>";
979 "strike", StringStrike,
  /external/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 81 "String.prototype": "['anchor', 'big', 'blink', 'bold', 'charAt', 'charCodeAt', 'concat', 'constructor', 'fixed', 'fontcolor', 'fontsize', 'indexOf', 'italics', 'lastIndexOf', 'length', 'link', 'localeCompare', 'match', 'normalize', 'replace', 'search', 'slice', 'small', 'split', 'strike', 'sub', 'substr', 'substring', 'sup', 'toLocaleLowerCase', 'toLocaleUpperCase', 'toLowerCase', 'toString', 'toUpperCase', 'trim', 'trimLeft', 'trimRight', 'valueOf']",
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 587 if (a.attrs.strike != b.attrs.strike) return false;
  /external/lldb/examples/python/
gdbremote.py 83 def strike(self, on = True): member in class:TerminalColors
84 '''Enable or disable strike through depending on the "on" paramter.'''
    [all...]

Completed in 1934 milliseconds

1 2