Searched defs:advance (Results 126 - 150 of 191) sorted by relevance

12345678

/external/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h779 // If the first node isn't one we're interested in, advance to one that
785 advance();
790 void advance() { function in class:llvm::MachineRegisterInfo::defusechain_iterator
832 advance();
836 advance();
841 advance();
882 // If the first node isn't one we're interested in, advance to one that
888 advance();
893 void advance() { function in class:llvm::MachineRegisterInfo::defusechain_instr_iterator
935 advance();
[all...]
/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h204 /// advance - Move to the next list position, return the applied
207 unsigned advance() { function in class:llvm::MCRegisterInfo::DiffListIterator
225 if (!advance())
505 // That may not be a valid unit, we need to advance by one to get the real
509 advance();
589 void advance() { function in class:llvm::MCRegAliasIterator
609 do advance();
/external/llvm/lib/CodeGen/
H A DRegisterPressure.cpp554 bool RegPressureTracker::advance() { function in class:RegPressureTracker
702 /// pressure. Unlike the advance/recede pressure tracking interface, this does
900 /// pressure. Unlike the advance/recede pressure tracking interface, this does
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssTokens.java106 advance();
145 advance();
159 public void advance() { method in class:CssTokens.TokenIterator
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttgload.c81 FT_TRACE5(( " advance width (font units): %d\n", *aw ));
93 /* apparently does: It uses the ppem value as the advance height, and */
128 FT_TRACE5(( " advance height (font units): %d\n", *ah ));
154 loader->advance = advance_width;
201 metrics.advance = loader->advance;
211 advance_width = (FT_UShort)metrics.advance;
218 metrics.advance = loader->vadvance;
227 advance_height = (FT_UShort)metrics.advance;
232 loader->advance
1785 FT_Pos advance; /* scaled vertical advance height */ local
[all...]
/external/skia/src/animator/
H A DSkScriptTokenizer.cpp224 int advance = 1; local
230 return advance;
260 advance += reverseOperands;
273 advance++;
289 return advance;
331 return advance;
455 (*scriptPtr)++; // advance beyond close paren
681 int advance = logicalOp(ch, nextChar); local
682 if (advance == 0)
683 advance
916 int advance = 1; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp355 advance();
371 void TextIterator::advance() function in class:blink::TextIterator
708 // Determine what the next text box will be, but don't advance yet
735 // come back again to finish handling this text box; don't advance to the next one.
1384 advance();
1387 void SimplifiedBackwardsTextIterator::advance() function in class:blink::SimplifiedBackwardsTextIterator
1643 m_textIterator.advance();
1724 void CharacterIterator::advance(int count) function in class:blink::CharacterIterator
1746 for (m_textIterator.advance(); !atEnd(); m_textIterator.advance()) {
1811 void BackwardsCharacterIterator::advance(int count) function in class:blink::BackwardsCharacterIterator
1865 void WordAwareIterator::advance() function in class:blink::WordAwareIterator
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzShaper.cpp277 inline void HarfBuzzShaper::HarfBuzzRun::setGlyphAndPositions(unsigned index, uint16_t glyphId, float advance, float offsetX, float offsetY) argument
280 m_advances[index] = advance;
328 // Add advance of glyphs which are part of the character.
641 for (iterator.advance(clusterLength); iterator.consume(character, clusterLength); iterator.advance(clusterLength)) {
917 float advance = harfBuzzPositionToFloat(glyphPositions[i].x_advance); local
936 advance += spacing;
944 currentRun->setGlyphAndPositions(i, glyph, advance, offsetX, offsetY);
949 glyphOrigin += FloatSize(advance + offsetX, offsetY);
951 totalAdvance += advance;
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeVerticalData.cpp503 float advance = advanceFUnit * font->sizePerUnit(); local
504 return advance;
507 // No vertical info in the font file; use height as advance.
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfreetype.h234 /* glyph has a positive advance downward. */
887 /* max_advance_width :: The maximum advance width, in font units, */
893 /* max_advance_height :: The maximum advance height, in font units, */
1348 /* max_advance :: The maximum advance width in 26.6 fractional */
1378 FT_Pos max_advance; /* max horizontal advance, in 26.6 pixels */
1479 /* linearHoriAdvance :: The advance width of the unhinted glyph. */
1486 /* linearVertAdvance :: The advance height of the unhinted glyph. */
1493 /* advance :: This shorthand is, depending on */
1495 /* advance width for the glyph (in 26.6 */
1608 /* origin_x += face->glyph->advance
1623 FT_Vector advance; member in struct:FT_GlyphSlotRec_
[all...]
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dpsaux.h546 /* advance :: The horizontal advance vector. */
576 FT_Vector advance; member in struct:T1_BuilderRec_
/external/chromium_org/third_party/freetype/src/autofit/
H A Daflatin.c498 /* Check whether all ASCII digits have the same advance width. */
506 FT_Fixed advance, old_advance = 0; local
523 &advance ) )
528 if ( advance != old_advance )
536 old_advance = advance;
H A Daflatin2.c434 FT_Fixed advance, old_advance = 0; local
437 /* check whether all ASCII digits have the same advance width; */
452 &advance ) )
457 if ( advance != old_advance )
465 old_advance = advance;
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.c294 builder->advance.x = 0;
295 builder->advance.y = 0;
745 FT_Vector left_bearing, advance; local
842 /* Save the left bearing, advance and glyph width of the base */
846 advance = builder->advance;
872 /* Restore the left side bearing, advance and glyph width */
875 builder->advance = advance;
1300 /* we only want the advance widt
2685 FT_UShort advance; local
2943 FT_Vector advance; local
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-coretext.cc864 double advance = CTFontGetAdvancesForGlyphs (font_data->ct_font, kCTFontHorizontalOrientation, &notdef, NULL, 1); local
882 info->mask = advance;
952 DEBUG_MSG (CORETEXT, run, "Run advance: %g", run_advance);
958 double advance = (j + 1 < num_glyphs ? positions[j + 1].x : positions[0].x + run_advance) - positions[j].x; local
959 info->mask = advance;
970 double advance = (j + 1 < num_glyphs ? positions[j + 1].y : positions[0].y + run_advance) - positions[j].y; local
971 info->mask = advance;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalker.cpp403 int advance = 1; local
425 if (advance < 0) {
508 if (advance < 0) {
558 SkDebugf("%*s advance=%d edgeIndex=%d flip=%s\n", tab, "",
559 advance, edgeIndex, advance > 0 ^ edgeIndex < 0 ?
562 if (advance > 0 ^ edgeIndex < 0) {
563 advance = -advance;
1330 bool advance() {
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp420 advances[i] = face->glyph->advance.x;
467 FT_Fixed advance = 0; local
468 if (getAdvances(face, gId, 1, FT_LOAD_NO_SCALE, &advance)) {
472 *data = advance;
660 int16_t advance = face->max_advance_width;
661 info->fGlyphWidths->fAdvance.append(1, &advance);
675 int16_t advance = advances[i];
676 info->fGlyphWidths->fAdvance.append(1, &advance);
1120 FT_Fixed advance; local
1124 &advance );
[all...]
/external/chromium_org/ui/gfx/
H A Drender_text_harfbuzz.cc115 // Returns the horizontal advance value of the |glyph|.
121 hb_position_t advance = 0; local
123 GetGlyphWidthAndExtents(&font_data->paint_, glyph, &advance, 0);
124 return advance;
725 // middle of string and advance backwards.
1041 // Find the next break and advance the iterators as needed.
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc587 int advance = 0; local
597 advance = byte_size_operand_ ? PrintRightByteOperand(data)
603 advance = byte_size_operand_ ? PrintRightByteOperand(data)
612 return advance;
/external/clang/lib/Basic/
H A DSourceManager.cpp1877 unsigned advance = SpellFIDSize - SpellRelativeOffs + 1; local
1878 ExpansionLoc = ExpansionLoc.getLocWithOffset(advance);
1879 ExpansionLength -= advance;
/external/freetype/include/
H A Dfreetype.h269 /* glyph has a positive advance downward. */
926 /* max_advance_width :: The maximum advance width, in font units, */
932 /* max_advance_height :: The maximum advance height, in font units, */
1406 /* max_advance :: The maximum advance width in 26.6 fractional */
1436 FT_Pos max_advance; /* max horizontal advance, in 26.6 pixels */
1537 /* linearHoriAdvance :: The advance width of the unhinted glyph. */
1544 /* linearVertAdvance :: The advance height of the unhinted glyph. */
1551 /* advance :: This shorthand is, depending on */
1553 /* (hinted) advance width for the glyph, in 26.6 */
1665 /* origin_x += face->glyph->advance
1680 FT_Vector advance; member in struct:FT_GlyphSlotRec_
[all...]
/external/freetype/include/internal/
H A Dpsaux.h546 /* advance :: The horizontal advance vector. */
576 FT_Vector advance; member in struct:T1_BuilderRec_
/external/freetype/src/autofit/
H A Daflatin.c812 /* Check whether all ASCII digits have the same advance width. */
820 FT_Fixed advance, old_advance = 0; local
838 &advance ) )
843 if ( advance != old_advance )
851 old_advance = advance;
H A Daflatin2.c435 FT_Fixed advance, old_advance = 0; local
438 /* check whether all ASCII digits have the same advance width; */
453 &advance ) )
458 if ( advance != old_advance )
466 old_advance = advance;
/external/freetype/src/cff/
H A Dcffgload.c294 builder->advance.x = 0;
295 builder->advance.y = 0;
741 FT_Vector left_bearing, advance; local
838 /* Save the left bearing, advance and glyph width of the base */
842 advance = builder->advance;
868 /* Restore the left side bearing, advance and glyph width */
871 builder->advance = advance;
1296 /* we only want the advance widt
2681 FT_UShort advance; local
2948 FT_Vector advance; local
[all...]

Completed in 1199 milliseconds

12345678