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

1234567891011

/external/guava/guava-tests/test/com/google/common/base/
H A DStopwatchTest.java98 ticker.advance(1);
101 ticker.advance(2);
104 ticker.advance(3);
109 ticker.advance(1);
112 ticker.advance(2);
116 ticker.advance(3);
121 ticker.advance(78);
125 ticker.advance(345);
130 ticker.advance(1);
132 ticker.advance(
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DStopwatchTest.java97 ticker.advance(1);
100 ticker.advance(2);
103 ticker.advance(3);
108 ticker.advance(1);
111 ticker.advance(2);
115 ticker.advance(3);
120 ticker.advance(78);
124 ticker.advance(345);
129 ticker.advance(1);
131 ticker.advance(
[all...]
/external/tcpdump/
H A Dprint-lwres.c214 int advance; local
219 advance = lwres_printname(ndo, l, p + 2);
220 if (advance < 0)
222 return 2 + advance;
300 int advance; local
387 advance = lwres_printname(ndo, l, s);
388 if (advance < 0)
390 s += advance;
404 advance = lwres_printaddr(ndo, &gnba->addr);
405 if (advance <
[all...]
H A Dprint-ipcomp.c49 int advance; local
75 advance = sizeof(struct ipcomp);
78 return advance;
H A Dprint-ip6.c78 register int advance; local
141 advance = sizeof(struct ip6_hdr);
143 while (cp < ndo->ndo_snapend && advance > 0) {
144 cp += advance;
145 len -= advance;
156 advance = hbhopt_print(ndo, cp);
160 advance = dstopt_print(ndo, cp);
164 advance = frag6_print(ndo, cp, (const u_char *)ip6);
165 if (ndo->ndo_snapend <= cp + advance)
174 * XXX - we don't use "advance"; th
[all...]
H A Dprint-pim.c629 int advance; local
722 int advance; local
725 advance = pimv2_addr_print(ndo, ptr, pimv2_unicast, 0);
726 if (advance < 0) {
730 ptr += advance;
788 if ((advance = pimv2_addr_print(ndo, bp, pimv2_group, 0)) < 0) {
792 bp += advance; len -= advance;
796 if ((advance = pimv2_addr_print(ndo, bp, pimv2_unicast, 0)) < 0) {
800 bp += advance; le
[all...]
/external/icu/icu4c/source/test/letest/
H A DSimpleFontInstance.cpp59 void SimpleFontInstance::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const
63 advance.fX = xUnitsToPoints(2048);
65 advance.fX = 0;
69 advance.fX = xUnitsToPoints(2048);
72 advance.fY = 0;
/external/icu/icu4c/source/test/perf/leperf/
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/guava-testlib/src/com/google/common/testing/
H A DFakeTicker.java47 public FakeTicker advance(long time, TimeUnit timeUnit) { method in class:FakeTicker
48 return advance(timeUnit.toNanos(time));
52 public FakeTicker advance(long nanoseconds) { method in class:FakeTicker
/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/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java47 advance();
63 private void advance() throws IOException { method in class:MultiInputStream
87 advance();
99 advance();
H A DMultiReader.java39 advance();
45 private void advance() throws IOException { method in class:MultiReader
58 advance();
72 advance();
/external/skia/src/effects/
H A DSk1DPathEffect.cpp35 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, argument
38 SkASSERT(advance > 0 && !path.isEmpty());
43 if (phase > advance) {
44 phase = SkScalarMod(phase, advance);
47 if (phase > advance) {
48 phase = SkScalarMod(phase, advance);
50 phase = advance - phase;
52 // now catch the edge case where phase == advance (within epsilon)
53 if (phase >= advance) {
58 fAdvance = advance;
150 SkScalar advance = buffer.readScalar(); local
207 Create(const SkPath& path, SkScalar advance, SkScalar phase, Style style) argument
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssGrammar.java36 for (; it.hasNext(); it.advance()) {
39 it.advance();
51 if (bracketDepth != 0) { it.advance(); }
83 it.advance();
99 it.advance();
106 continue; // Skip the advance over token.
147 it.advance();
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.cpp39 advance();
51 void VarTokenizer::advance (void) function in class:glu::VarTokenizer
102 tokenizer.advance();
111 tokenizer.advance();
126 tokenizer.advance();
130 tokenizer.advance();
153 tokenizer.advance();
155 tokenizer.advance();
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DBaseCodeCursor.java58 protected final void advance(int amount) { method in class:BaseCodeCursor
H A DShortArrayCodeInput.java49 advance(1);
/external/freetype/src/base/
H A Dftsynth.c63 /* we don't touch the advance width */
145 if ( slot->advance.x )
146 slot->advance.x += xstr;
148 if ( slot->advance.y )
149 slot->advance.y += ystr;
/external/icu/icu4c/source/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/pdfium/third_party/freetype/src/base/
H A Dftsynth.c63 /* we don't touch the advance width */
145 if ( slot->advance.x )
146 slot->advance.x += xstr;
148 if ( slot->advance.y )
149 slot->advance.y += ystr;
/external/llvm/include/llvm/Support/
H A DLineIterator.h60 advance();
65 advance();
84 void advance();
/external/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp42 void advance(unsigned I = 1) { Ptr += I; } function in class:__anon11791::Cursor
83 C.advance();
94 C.advance();
120 C.advance(2);
125 C.advance(3);
130 C.advance();
140 for (C.advance(); C.peek() != '"'; C.advance()) {
148 C.advance();
156 C.advance(PrefixLengt
[all...]
/external/elfutils/tests/
H A Drun-readelf-line.sh64 [ 3c] advance line by constant 15 to 16
68 [ 41] advance line by constant -9 to 9
74 [ 48] advance line by constant 13 to 22
76 [ 4b] advance line by constant -13 to 9
78 [ 4e] advance line by constant 12 to 21
81 [ 52] advance address by 2 to 0x8048324
118 [ 84] advance line by constant 12 to 13
121 [ 88] advance address by 11 to 0x804833b
124 [ 94] advance line by constant 18 to 19
127 [ 98] advance lin
[all...]
/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...]
H A DCacheRefreshTest.java47 ticker.advance(1, MILLISECONDS);
57 ticker.advance(1, MILLISECONDS);
67 ticker.advance(1, MILLISECONDS);
75 ticker.advance(1, MILLISECONDS);
83 ticker.advance(1, MILLISECONDS);
91 ticker.advance(1, MILLISECONDS);

Completed in 800 milliseconds

1234567891011