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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
Advanceable.java 30 public void advance(); method in interface:Advanceable
33 * Called by the AppWidgetHost once before it begins to call advance(), allowing the
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
advance_fwd.hpp 21 BOOST_MPL_AUX_COMMON_NAME_WKND(advance)
24 template< typename Iterator, typename N > struct advance;
  /external/guava/guava-tests/test/com/google/common/base/
StopwatchTest.java 98 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(4)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
PathDashPathEffect.java 38 * @param advance spacing between each stamp of shape
42 public PathDashPathEffect(Path shape, float advance, float phase,
44 native_instance = nativeCreate(shape.ni(), advance, phase,
48 private static native long nativeCreate(long native_path, float advance,
  /packages/apps/Email/tests/src/com/android/email/
MockClock.java 31 public void advance() { method in class:MockClock
35 public void advance(long milliseconds) { method in class:MockClock
  /art/compiler/dex/quick/
lazy_debug_frame_opcode_writer.cc 36 for (auto advance : advances_) {
37 DCHECK_GE(advance.pos, pos);
38 // Copy old data up to the point when advance was issued.
41 old_opcodes.begin() + advance.pos);
42 pos = advance.pos;
44 LIR* next_lir = NEXT_LIR(advance.last_lir_insn);
45 // Insert the advance command with its final offset.
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
StopwatchTest.java 97 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(4)
    [all...]
  /cts/tools/dasm/src/java_cup/
lexer.java 144 /** Advance the scanner one character in the input stream. This moves
147 protected static void advance() throws java.io.IOException method in class:lexer
247 advance(); advance(); method
262 advance(); method
263 advance(); method
268 advance(); method
276 advance(); advance(); method
280 advance(); method
288 advance(); method
303 advance(); advance(); method
317 advance(); method
321 advance(); advance(); method
342 advance(); method
349 advance(); method
408 advance(); method
417 advance(); method
427 advance(); method
432 advance(); method
435 advance(); advance(); method
469 advance(); method
    [all...]
  /external/tcpdump/
print-lwres.c 221 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 < 0
    [all...]
print-ipcomp.c 57 int advance; local
83 advance = sizeof(struct ipcomp);
86 return advance;
print-pim.c 625 int advance; local
719 int advance; local
722 advance = pimv2_addr_print(ptr, pimv2_unicast, 0);
723 if (advance < 0) {
727 ptr += advance;
786 if ((advance = pimv2_addr_print(bp, pimv2_group, 0)) < 0) {
790 bp += advance; len -= advance;
794 if ((advance = pimv2_addr_print(bp, pimv2_unicast, 0)) < 0) {
798 bp += advance; len -= advance
    [all...]
print-ip6.c 85 register int advance; local
143 advance = sizeof(struct ip6_hdr);
145 while (cp < ndo->ndo_snapend && advance > 0) {
146 cp += advance;
147 len -= advance;
158 advance = hbhopt_print(cp);
162 advance = dstopt_print(cp);
166 advance = frag6_print(cp, (const u_char *)ip6);
167 if (ndo->ndo_snapend <= cp + advance)
176 * XXX - we don't use "advance"; the curren
    [all...]
  /external/icu/icu4c/source/test/letest/
SimpleFontInstance.cpp 59 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/
SimpleFontInstance.cpp 54 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/
FakeTicker.java 47 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/llvm/include/llvm/Support/
LineIterator.h 58 /// \brief Advance to the next (non-empty, non-comment) line.
60 advance();
65 advance();
83 /// \brief Advance the iterator to the next line.
84 void advance();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
BitstreamReader.java 55 advance(); method
88 private void advance() throws IOException { method in class:BitstreamReader
101 advance(); method
106 advance(); method
118 advance(); method
149 advance(); method
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
at_impl.hpp 18 #include <boost/mpl/advance.hpp>
32 typedef typename advance<
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
next_prior.hpp 35 std::advance(x, n);
45 std::advance(x, -n);
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 47 advance(); method
63 private void advance() throws IOException { method in class:MultiInputStream
87 advance(); method
99 advance(); method
MultiReader.java 39 advance(); method
45 private void advance() throws IOException { method in class:MultiReader
58 advance(); method
72 advance(); method
  /frameworks/minikin/include/minikin/
Measurement.h 27 float advance);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
MockClock.java 20 /** Current time. Only updated with advance(). */
42 public void advance() { method in class:MockClock
  /frameworks/minikin/libs/minikin/
Measurement.cpp 33 float advance = 0.0f; local
39 advance += charAdvance;
64 advance -= clusterWidth * numGraphemeClustersAfter / numGraphemeClusters;
67 return advance;
77 * measured caret comes closest to the provided advance param, and which is on a grapheme
84 float advance) {
97 if (x > advance) {
106 // "getRunAdvance(layout, buf, start, count, i) - advance" but more efficient
109 + xSearchStart - advance;
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 36 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();

Completed in 1369 milliseconds

1 2 3 4 5 6 7 8 91011>>