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

1 2 3 4 5

  /frameworks/base/core/java/android/widget/
Advanceable.java 31 public void advance(); method in interface:Advanceable
34 * Called by the AppWidgetHost once before it begins to call advance(), allowing the
  /external/webkit/Source/JavaScriptCore/runtime/
WeakRandom.h 68 return advance() / (UINT_MAX + 1.0);
72 unsigned advance() function in class:JSC::WeakRandom
  /external/tcpdump/
print-ipcomp.c 57 int advance; local
83 advance = sizeof(struct ipcomp);
86 return advance;
print-ip6.c 53 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"; the curren
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLEntitySearch.cpp 111 void HTMLEntitySearch::advance(UChar nextCharacter) function in class:WebCore::HTMLEntitySearch
  /packages/apps/Email/tests/src/com/android/email/
MockClock.java 29 public void advance() { method in class:MockClock
33 public void advance(long milliseconds) { method in class:MockClock
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_iterator_base_funcs.h 57 * functions, such as distance() and advance().
168 advance(_InputIterator& __i, _Distance __n) function
181 std::advance(__x, __n);
190 std::advance(__x, -__n);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator_base_funcs.h 57 * functions, such as distance() and advance().
168 advance(_InputIterator& __i, _Distance __n) function
181 std::advance(__x, __n);
190 std::advance(__x, -__n);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator_base_funcs.h 57 * functions, such as distance() and advance().
168 advance(_InputIterator& __i, _Distance __n) function
181 std::advance(__x, __n);
190 std::advance(__x, -__n);
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_iterator_base_funcs.h 57 * functions, such as distance() and advance().
168 advance(_InputIterator& __i, _Distance __n) function
181 std::advance(__x, __n);
190 std::advance(__x, -__n);
  /bionic/libc/inet/
inet_ntop.c 108 int advance; local
173 advance = snprintf(tp, ep - tp, "%x", words[i]);
174 if (advance <= 0 || advance >= ep - tp)
176 tp += advance;
  /dalvik/dx/src/com/android/dx/io/instructions/
BaseCodeCursor.java 56 * Advance the cursor by the indicated amount.
58 protected final void advance(int amount) { method in class:BaseCodeCursor
  /external/guava/src/com/google/common/io/
MultiInputStream.java 44 advance(); method
60 private void advance() throws IOException { method in class:MultiInputStream
84 advance(); method
96 advance(); method
MultiReader.java 38 advance(); method
44 private void advance() throws IOException { method in class:MultiReader
57 advance(); method
71 advance(); method
  /external/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 87 Data advance; local
89 SkAssertResult(getAdvance(fontHandle, gId, &advance));
91 advance = SK_MinS16;
93 if (advance == lastAdvance) {
123 curRange->fAdvance.append(1, &advance);
124 lastAdvance = advance;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SyncProgressMonitor.java 44 public void advance(int work) { method in class:SyncProgressMonitor
  /system/bluetooth/brfpatch/
brfpatch.c 64 // advance beyond next whitespace. Return -1 if end of string reached
65 static int advance(char **buf) { function
83 FAILIF(advance(&buf), "Could not find opcode in: %s\n", buffer);
91 while (!advance(&buf)) {
  /external/icu4c/samples/layout/
ScriptCompositeFontInstance.cpp 36 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/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nbody.js 95 NBodySystem.prototype.advance = function(dt){
165 bodies.advance(0.01);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 95 NBodySystem.prototype.advance = function(dt){
165 bodies.advance(0.01);
  /external/webkit/Source/WebCore/platform/text/
SegmentedString.cpp 200 void SegmentedString::advance(unsigned count, UChar* consumedCharacters) function in class:WebCore::SegmentedString
205 advance();
  /frameworks/base/services/audioflinger/
AudioResamplerCubic.h 53 static inline void advance(state* p, int16_t in) { function in class:android::AudioResamplerCubic
  /external/freetype/include/freetype/
ftincrem.h 103 * advance ::
104 * Horizontal component of glyph advance, in font units.
107 * Vertical component of glyph advance, in font units.
119 FT_Long advance; member in struct:FT_Incremental_MetricsRec_
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 75 void advance() { function in class:llvm::ScoreboardHazardRecognizer::Scoreboard
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 148 CGSize advance; local
153 wkGetGlyphAdvances(font, m, m_isSystemFont, isPrinterFont, glyph, advance);
155 return advance.width + m_syntheticBoldOffset;

Completed in 1010 milliseconds

1 2 3 4 5