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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 61 * essentially calling release() and seek(). If there are markers
75 * the marker off. It's like seek(last marker's input position).
82 * rewind() except it releases resources without the backward seek.
90 * normally used to seek ahead in the input stream. No buffering is
91 * required to do this unless you know your stream will use seek to
105 * The index is 0..n-1. A seek to position i means that LA(1) will
109 void seek(int index); method in interface:IntStream
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 29 public abstract void seek(int offset); method in class:BufferIterator
  /cts/tests/tests/media/src/android/media/cts/
IvfReader.java 111 mIvfFile.seek(frameHead + FRAME_HEADER_SIZE);
125 mIvfFile.seek(0);
138 mIvfFile.seek(FOURCC_HEAD);
149 mIvfFile.seek(WIDTH_HEAD);
153 mIvfFile.seek(HEIGHT_HEAD);
157 mIvfFile.seek(FRAMECOUNT_HEAD);
168 mIvfFile.seek(frameHead);
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 23 off64_t pos = fAsset->seek(0, SEEK_SET);
25 SkDebugf("----- fAsset->seek(rewind) failed\n");
38 // asset->seek returns new total offset
41 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
43 SkDebugf("---- fAsset->seek(oldOffset) failed\n");
46 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
48 SkDebugf("---- fAsset->seek(%d) failed\n", size);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRIntStream.h 50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRIntStream.h 50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRIntStream.h 50 // essentially calling -release: and -seek:. If there are markers
61 // rewind() except it releases resources without the backward seek.
66 // normally used to seek ahead in the input stream. No buffering is
67 // required to do this unless you know your stream will use seek to
80 - (void) seek:(NSInteger) index;
  /external/webkit/Source/WebCore/fileapi/
FileWriterSync.idl 37 void seek(in long long position) raises (FileException);
FileWriterSync.h 57 void seek(long long position, ExceptionCode&);
  /external/qemu/distrib/sdl-1.2.15/test/
testfile.c 97 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
103 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
104 if (20!=rwops->seek(rwops,-7,RW_SEEK_END)) RWOP_ERR_QUIT(rwops);
109 if (0!=rwops->seek(rwops,-27,RW_SEEK_CUR)) RWOP_ERR_QUIT(rwops);
121 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
123 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
124 if (20!=rwops->seek(rwops,-7,RW_SEEK_END)) RWOP_ERR_QUIT(rwops);
129 if (0!=rwops->seek(rwops,-27,RW_SEEK_CUR)) RWOP_ERR_QUIT(rwops);
141 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
143 if (0!=rwops->seek(rwops,0L,RW_SEEK_SET)) RWOP_ERR_QUIT(rwops);
    [all...]
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBIterator.h 48 void seek(const Vector<char>& target);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 60 * essentially calling release() and seek(). If there are markers
74 * the marker off. It's like seek(last marker's input position).
81 * rewind() except it releases resources without the backward seek.
89 * normally used to seek ahead in the input stream. No buffering is
90 * required to do this unless you know your stream will use seek to
104 * The index is 0..n-1. A seek to position i means that LA(1) will
108 function seek(index:int):void;
  /external/elfutils/tests/
run-ranlib-test2.sh 40 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify.cgi 19 seek FILE, $values{'start'}, 0;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntStream.h 58 // essentially calling -release: and -seek:. If there are markers
69 // rewind() except it releases resources without the backward seek.
74 // normally used to seek ahead in the input stream. No buffering is
75 // required to do this unless you know your stream will use seek to
88 - (void) seek:(NSInteger) anIndex;
LookaheadStream.m 150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
158 /** Seek to a 0-indexed position within data buffer. Can't handle
159 * case where you seek beyond end of existing buffer. Normally used
160 * to seek backwards in the buffer. Does not force loading of nodes.
162 public void seek(int index) { p = index; }
LookaheadStream.h 150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
158 /** Seek to a 0-indexed position within data buffer. Can't handle
159 * case where you seek beyond end of existing buffer. Normally used
160 * to seek backwards in the buffer. Does not force loading of nodes.
162 public void seek(int index) { p = index; } function in class:FastQueue
  /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
  /frameworks/rs/driver/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);
  /external/blktrace/btt/doc/
Makefile 5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps
  /external/flac/include/FLAC/
callback.h 116 /** Signature for the seek callback.
166 * If the seek requirement for an interface is optional, you can signify that
167 * a data sorce is not seekable by setting the \a seek field to \c NULL.
172 FLAC__IOCallback_Seek seek; member in struct:__anon8069
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
RandomAccessFileTest.java 56 raf.seek(0);
62 raf.seek(0);
68 raf.seek(0);
254 raf.seek(0);
266 raf.seek(0);
278 raf.seek(0);
290 raf.seek(0);
303 raf.seek(0);
317 raf.seek(0);
333 raf.seek(0)
    [all...]
  /external/blktrace/btt/
Android.mk 5 latency.c misc.c output.c proc.c seek.c trace.c \
  /external/quake/tools/
dumpms2.py 41 # Seek ahead and read the vertex order information
42 f.seek(4 + 4 + 4 * numCommands)
47 f.seek(4 + 4)
  /external/webkit/Source/WebCore/css/
mediaControlsGtk.css 74 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
79 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button {

Completed in 701 milliseconds

1 2 3 4 5 6 7 8 91011>>