HomeSort by relevance Sort by last modified time
    Searched defs:seek (Results 26 - 50 of 200) sorted by null

12 3 4 5 6 7 8

  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
BridgeBufferIterator.java 37 public void seek(int offset) { method in class:BridgeBufferIterator
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 264 off_t FileBase::seek(off_t pOffset) { function in class:FileBase
  /frameworks/rs/cpu_ref/linkloader/utils/
serialize.h 86 void seek(off_t off, bool from_begin = false) { function in class:ArchiveReader
105 seek(size);
111 seek(size);
118 seek(TypeTraits<T>::size);
141 seek(align - delta);
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 42 public void seek(int offset) { method in class:HeapBufferIterator
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 10 f.seek(pos) # set current position
11 f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
95 def seek(self, pos, mode = 0): member in class:StringIO
99 positioning); other values are 1 (seek relative to the current
100 position) and 2 (seek relative to the file's end).
294 f.seek(len(lines[0]))
296 f.seek(0)
301 f.seek(-len(line), 1)
304 raise RuntimeError, 'bad result after seek back'
305 f.seek(len(line2), 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
StringIO.py 10 f.seek(pos) # set current position
11 f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
95 def seek(self, pos, mode = 0): member in class:StringIO
99 positioning); other values are 1 (seek relative to the current
100 position) and 2 (seek relative to the file's end).
294 f.seek(len(lines[0]))
296 f.seek(0)
301 f.seek(-len(line), 1)
304 raise RuntimeError, 'bad result after seek back'
305 f.seek(len(line2), 1
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRStringStream.java 174 seek(state.p);
194 public void seek(int index) { method in class:ANTLRStringStream
199 // seek forward, consume until p hits index
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTokenStream.java 127 public void seek(int index) { method in class:DebugTokenStream
128 // TODO: implement seek in dbg interface
129 // db.seek(index);
130 input.seek(index);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
LookaheadStream.java 141 seek(marker); // assume marker is top
146 seek(lastMarker); // rewind but do not release marker
149 /** Seek to a 0-indexed position within data buffer. Can't handle
150 * case where you seek beyond end of existing buffer. Normally used
151 * to seek backwards in the buffer. Does not force loading of nodes.
155 public void seek(int index) { p = index; } method in class:LookaheadStream
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 134 === seek
136 <tt>stream.seek(position)</tt> moves the stream cursor to an absolute position
137 within the stream, basically like typical ruby <tt>IO#seek</tt> style methods.
138 However, unlike <tt>IO#seek</tt>, ANTLR streams currently always use absolute
211 # :method: seek( position )
213 abstract :seek
616 def seek( index ) method in class:ANTLR3.that.StringStream
879 seek( marker )
892 seek( pos )
911 # note: seek does not check whether or not th
914 def seek( index ) method in class:ANTLR3.that.CommonTokenStream
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.cpp 129 void FileWriter::seek(long long position, ExceptionState& exceptionState) function in class:blink::FileWriter
  /external/chromium_org/third_party/cython/src/Cython/
Utils.py 206 f.seek(0)
226 f.seek(0)
264 def seek(self, pos): member in class:NormalisedNewlineStream
266 self.stream.seek(0)
290 f.seek(0)
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.cpp 95 bool SkDWriteFontFileStream::seek(size_t position) { function in class:SkDWriteFontFileStream
102 return seek(fPos + offset);
107 that->seek(fPos);
  /external/chromium_org/third_party/zlib/
gzguts.h 107 /* seek request */
109 int seek; /* true if seek request pending */ member in struct:__anon21022
  /external/guava/guava/src/com/google/common/collect/
BstOperations.java 40 public static <K, N extends BstNode<K, N>> N seek( method in class:BstOperations
51 return seek(comparator, tree.childOrNull(side), key);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_rwops.h 43 /** Seek to 'offset' relative to whence, one of stdio's whence values:
47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
113 /** @name Seek Reference Points */
115 #define RW_SEEK_SET 0 /**< Seek from the beginning of data */
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
117 #define RW_SEEK_END 2 /**< Seek relative to the end of data */
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 95 bool SkDWriteFontFileStream::seek(size_t position) { function in class:SkDWriteFontFileStream
102 return seek(fPos + offset);
107 that->seek(fPos);
  /external/stlport/test/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
  /ndk/tests/device/test-gnustl-full/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
  /ndk/tests/device/test-stlport/unit/
sstream_test.cpp 34 CPPUNIT_TEST(seek);
54 void seek();
386 void SstreamTest::seek() function in class:SstreamTest
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_rwops.h 43 /** Seek to 'offset' relative to whence, one of stdio's whence values:
47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
113 /** @name Seek Reference Points */
115 #define RW_SEEK_SET 0 /**< Seek from the beginning of data */
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
117 #define RW_SEEK_END 2 /**< Seek relative to the end of data */
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_rwops.h 43 /** Seek to 'offset' relative to whence, one of stdio's whence values:
47 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); member in struct:SDL_RWops
113 /** @name Seek Reference Points */
115 #define RW_SEEK_SET 0 /**< Seek from the beginning of data */
116 #define RW_SEEK_CUR 1 /**< Seek relative to current read point */
117 #define RW_SEEK_END 2 /**< Seek relative to the end of data */
122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)

Completed in 692 milliseconds

12 3 4 5 6 7 8