Searched refs:advance (Results 1 - 25 of 142) sorted by relevance

123456

/external/webkit/JavaScriptCore/runtime/
H A DWeakRandom.h68 return advance() / (UINT_MAX + 1.0);
72 unsigned advance() function in class:JSC::WeakRandom
H A DCollectorHeapIterator.h41 void advance(size_t max);
83 // Iterators advance up to the next-to-last -- and not the last -- cell in a
85 inline void CollectorHeapIterator::advance(size_t max) function in class:JSC::CollectorHeapIterator
102 advance(HeapConstants::cellsPerBlock - 1);
107 advance(HeapConstants::cellsPerBlock - 1);
120 advance(HeapConstants::cellsPerBlock - 1);
134 advance(HeapConstants::cellsPerBlock - 1);
/external/tcpdump/
H A Dprint-ip6.c53 register int advance; local
111 advance = sizeof(struct ip6_hdr);
113 while (cp < snapend && advance > 0) {
114 cp += advance;
115 len -= advance;
126 advance = hbhopt_print(cp);
130 advance = dstopt_print(cp);
134 advance = frag6_print(cp, (const u_char *)ip6);
135 if (snapend <= cp + advance)
144 * XXX - we don't use "advance"; th
[all...]
H A Dprint-lwres.c221 int advance; local
226 advance = lwres_printname(l, p + 2);
227 if (advance < 0)
229 return 2 + advance;
304 int advance; local
391 advance = lwres_printname(l, s);
392 if (advance < 0)
394 s += advance;
408 advance = lwres_printaddr(&gnba->addr);
409 if (advance <
[all...]
H A Dprint-ipcomp.c57 int advance; local
83 advance = sizeof(struct ipcomp);
86 return advance;
H A Dprint-pim.c625 int advance; local
721 int advance; local
724 advance = pimv2_addr_print(ptr, pimv2_unicast, 0);
725 if (advance < 0) {
729 ptr += advance;
788 if ((advance = pimv2_addr_print(bp, pimv2_group, 0)) < 0) {
792 bp += advance; len -= advance;
796 if ((advance = pimv2_addr_print(bp, pimv2_unicast, 0)) < 0) {
800 bp += advance; le
[all...]
H A Dprint-bgp.c876 int advance; local
1214 advance = decode_prefix4(tptr, buf, sizeof(buf));
1215 if (advance == -1)
1217 else if (advance == -2)
1223 advance = decode_labeled_prefix4(tptr, buf, sizeof(buf));
1224 if (advance == -1)
1226 else if (advance == -2)
1234 advance = decode_labeled_vpn_prefix4(tptr, buf, sizeof(buf));
1235 if (advance == -1)
1237 else if (advance
[all...]
H A Dprint-ip.c371 int advance; member in struct:ip_print_demux_state
385 ipds->advance = ah_print(ipds->cp);
386 if (ipds->advance <= 0)
388 ipds->cp += ipds->advance;
389 ipds->len -= ipds->advance;
395 ipds->advance = esp_print(ndo, ipds->cp, ipds->len,
398 if (ipds->advance <= 0)
400 ipds->cp += ipds->advance;
401 ipds->len -= ipds->advance + padlen;
409 ipds->advance
[all...]
/external/webkit/WebCore/platform/graphics/win/
H A DFontWin.cpp48 it.advance(from);
50 it.advance(to);
55 it.advance(run.length());
71 controller.advance(from);
73 controller.advance(to, &glyphBuffer);
82 controller.advance(run.length());
95 controller.advance(run.length());
H A DUniscribeController.cpp37 // FIXME: Rearchitect this to be more like WidthIterator in Font.cpp. Have an advance() method
38 // that does stuff in that method instead of doing everything in the constructor. Have advance()
78 advance(m_run.length());
88 void UniscribeController::advance(unsigned offset, GlyphBuffer* glyphBuffer) function in class:WebCore::UniscribeController
298 float advance = advances[k] / cLogicalScale; local
303 float roundedAdvance = roundf(advance);
305 advance = roundedAdvance;
310 advance += fontData->syntheticBoldOffset();
318 advance = fontData->adjustedSpaceWidth();
321 // If we're a glyph with an advance, g
[all...]
H A DSimpleFontDataCGWin.cpp136 CGSize advance; local
141 wkGetGlyphAdvances(font, m, m_isSystemFont, isPrinterFont, glyph, advance);
143 return advance.width + m_syntheticBoldOffset;
/external/icu4c/test/letest/
H A DSimpleFontInstance.cpp54 void SimpleFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const
58 advance.fX = xUnitsToPoints(2048);
60 advance.fX = 0;
63 advance.fX = xUnitsToPoints(2048);
66 advance.fY = 0;
/external/guava/src/com/google/common/io/
H A DMultiInputStream.java44 advance();
60 private void advance() throws IOException { method in class:MultiInputStream
84 advance();
96 advance();
H A DMultiReader.java38 advance();
44 private void advance() throws IOException { method in class:MultiReader
57 advance();
71 advance();
/external/webkit/WebCore/platform/graphics/wx/
H A DFontWx.cpp72 it.advance(from);
74 it.advance(to);
79 it.advance(run.length());
99 controller.advance(from);
101 controller.advance(to, &glyphBuffer);
110 controller.advance(run.length());
128 controller.advance(run.length());
/external/skia/src/effects/
H A DSk1DPathEffect.cpp40 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, argument
43 if (advance <= 0 || path.isEmpty())
45 SkDEBUGF(("SkPath1DPathEffect can't use advance <= 0\n"));
55 if (phase > advance)
56 phase = SkScalarMod(phase, advance);
60 if (phase > advance)
61 phase = SkScalarMod(phase, advance);
62 phase = advance - phase;
64 // now catch the edge case where phase == advance (within epsilon)
65 if (phase >= advance)
[all...]
/external/freetype/src/base/
H A Dftsynth.c57 /* we don't touch the advance width */
140 if ( slot->advance.x )
141 slot->advance.x += xstr;
143 if ( slot->advance.y )
144 slot->advance.y += ystr;
/external/icu4c/samples/layout/
H A DScriptCompositeFontInstance.cpp36 void ScriptCompositeFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const
42 advance.fX = 0;
43 advance.fY = 0;
46 font->getGlyphAdvance(LE_GET_GLYPH(glyph), advance); local
/external/webkit/WebCore/platform/graphics/mac/
H A DFontComplexTextMac.cpp42 controller.advance(from);
44 controller.advance(to);
64 controller.advance(from);
66 controller.advance(to, &glyphBuffer);
H A DComplexTextController.cpp116 // FIXME: Instead of dividing the glyph's advance equally between the characters, this
354 void ComplexTextController::advance(unsigned offset, GlyphBuffer* glyphBuffer) function in class:WebCore::ComplexTextController
394 // FIXME: Instead of dividing the glyph's advance equially between the characters, this
460 CGSize advance = treatAsSpace ? CGSizeMake(fontData->spaceWidth(), advances[i].height) : advances[i]; local
464 advance.width = tabWidth - fmodf(m_run.xPos() + m_totalWidth, tabWidth);
466 advance.width = 0;
470 float roundedAdvanceWidth = roundf(advance.width);
472 advance.width = roundedAdvanceWidth;
474 advance.width += fontData->syntheticBoldOffset();
481 advance
[all...]
/external/stlport/test/unit/
H A Dadvance_test.cpp36 advance(location, 5);
/external/webkit/WebCore/platform/graphics/
H A DWidthIterator.h38 void advance(int to, GlyphBuffer* = 0);
/external/webkit/WebKit/mac/WebView/
H A DWebTextIterator.h46 @method advance
51 - (void)advance;
79 call currentRange every time you advance the iterator, performance will be extremely slow
H A DWebTextIterator.mm74 - (void)advance
76 _private->_textIterator->advance();
/external/webkit/WebCore/editing/
H A DTextIterator.h77 void advance();
161 void advance();
215 void advance(int numCharacters);
240 void advance(int);
262 void advance();

Completed in 218 milliseconds

123456