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

1234567891011>>

/external/guava/guava-tests/test/com/google/common/base/
H A DStopwatchTest.java87 ticker.advance(1);
90 ticker.advance(2);
93 ticker.advance(3);
98 ticker.advance(1);
101 ticker.advance(2);
105 ticker.advance(3);
110 ticker.advance(78);
114 ticker.advance(345);
119 ticker.advance(1);
121 ticker.advance(
[all...]
/external/guava/guava-testlib/src/com/google/common/testing/
H A DFakeTicker.java41 public FakeTicker advance(long time, TimeUnit timeUnit) { method in class:FakeTicker
42 return advance(timeUnit.toNanos(time));
46 public FakeTicker advance(long nanoseconds) { method in class:FakeTicker
/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...]
/external/chromium_org/third_party/icu/source/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/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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DBitstreamReader.java55 advance();
88 private void advance() throws IOException { method in class:BitstreamReader
101 advance();
106 advance();
118 advance();
149 advance();
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DImagePageGenerator.java32 public ImagePageGenerator(int startIndex, boolean advance) { argument
34 mAdvance = advance;
/external/chromium_org/third_party/WebKit/Source/web/
H A DIDBCursorBackendProxy.cpp53 void IDBCursorBackendProxy::advance(unsigned long count, PassRefPtr<IDBCallbacks> callbacks) function in class:WebKit::IDBCursorBackendProxy
55 m_idbCursor->advance(count, new WebIDBCallbacksImpl(callbacks));
H A DIDBCursorBackendProxy.h43 virtual void advance(unsigned long, PassRefPtr<WebCore::IDBCallbacks>);
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursorBackendInterface.h42 virtual void advance(unsigned long count, PassRefPtr<IDBCallbacks>) = 0;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBCursor.h48 virtual void advance(unsigned long, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBCursor
/external/guava/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/guava/guava-tests/test/com/google/common/testing/
H A DFakeTickerTest.java41 assertSame(ticker, ticker.advance(10));
43 ticker.advance(1, TimeUnit.MILLISECONDS);
63 ticker.advance(1L);
65 ticker.advance(1L);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dunicodestring.cc23 using std::advance;
64 advance(start_it, start);
68 advance(start_it, length);
77 advance(pos_it, pos);
95 advance(start_it, start);
97 advance(end_it, length);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSurroundingText.cpp51 forwardIterator.advance(maxLength - halfMaxLength);
63 backwardsIterator.advance(halfMaxLength);
84 iterator.advance(startOffsetInContent);
90 iterator.advance(endOffsetInContent - startOffsetInContent);
/external/chromium_org/third_party/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/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java58 protected final void advance(int amount) { method in class:BaseCodeCursor
/external/freetype/src/base/
H A Dftsynth.c58 /* we don't touch the advance width */
136 if ( slot->advance.x )
137 slot->advance.x += xstr;
139 if ( slot->advance.y )
140 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/guava/guava-tests/test/com/google/common/cache/
H A DCacheExpirationTest.java136 ticker.advance(EXPIRING_TIME * 10, MILLISECONDS);
204 ticker.advance(1, MILLISECONDS);
260 ticker.advance(1, MILLISECONDS);
266 ticker.advance(1, MILLISECONDS);
272 ticker.advance(2, MILLISECONDS);
276 ticker.advance(1, MILLISECONDS);
285 ticker.advance(1, MILLISECONDS);
287 ticker.advance(1, MILLISECONDS);
291 ticker.advance(1, MILLISECONDS);
293 ticker.advance(
[all...]

Completed in 498 milliseconds

1234567891011>>