/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
|
/external/clang/test/Analysis/ |
stream.c | 5 #define SEEK_SET 0 /* Seek from beginning of file. */ 6 #define SEEK_CUR 1 /* Seek from current position. */ 7 #define SEEK_END 2 /* Seek from end of file. */
|
/external/libvorbis/doc/vorbisfile/ |
ov_raw_seek.html | 24 <p>When seek speed is a priority, this is the best seek funtion to use. 42 <dd>Position in compressed bytes to seek to in the bitstream.</dd>
|
ov_time_seek_page_lap.html | 30 seek through the last few samples to reach an exact time, but it is 41 the seek are ignored; playback of these channels simply ends. Extra 68 <dd>Location to seek to within the file, specified in seconds.</dd> 89 <li>OV_EOF - Indicates stream is at end of file immediately after a seek
|
/external/llvm/test/Scripts/ |
elf-dump | 12 # Snarf all the data so we can seek. 20 def seek(self, pos): member in class:Reader 21 self.file.seek(pos) 113 f.seek(self.sh_offset[0]) 125 f.seek(section.sh_offset[0] + index * section.sh_entsize[0]) 148 f.seek(section.sh_offset[0] + index * section.sh_entsize[0]) 205 f.seek(16) # Seek to end of e_ident. 238 f.seek(e_shoff[0] + index * e_shentsize[0]) 243 f.seek(sections[e_shstrndx[0]].sh_offset[0] [all...] |
macho-dumpx | 12 # Snarf all the data so we can seek. 24 def seek(self, pos): member in class:Reader 25 self.file.seek(pos) 171 f.seek(stroff) 177 f.seek(symoff) 183 f.seek(prev_pos) 228 f.seek(indirectsymoff) 235 f.seek(prev_pos) 265 f.seek(reloc_offset) 274 f.seek(offset [all...] |
/frameworks/av/libvideoeditor/osal/inc/ |
M4OSA_FileWriter.h | 80 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon18766 108 /* Pierre Lebeaupin 2008/04/29: WARNING! the feature of file*Seek which returns 109 the position in the file (from the beginning) after the seek in the "position"
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
teststreams.py | 123 """StringStream.seek(): forward""" 127 stream.seek(4) 137 ## """StringStream.seek(): backward""" 141 ## stream.seek(4) 142 ## stream.seek(1) 155 stream.seek(4) 172 stream.seek(4) 191 stream.seek(4) 209 stream.seek(4) 228 stream.seek(4 [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTokenStream.cs | 141 public virtual void Seek(int index) { 142 // TODO: implement seek in dbg interface 143 // db.seek(index); 144 input.Seek(index);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTokenStream.cs | 166 public virtual void Seek( int index ) 168 // TODO: implement seek in dbg interface 169 // db.seek(index); 170 input.Seek( 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/ObjC/Framework/test/runtime/stream/ |
ANTLRStringStreamTest.m | 83 [stream seek:10]; 94 [stream seek:10]; 98 [stream seek:5]; 101 [stream seek:10];
|
/external/blktrace/btt/ |
Android.mk | 5 latency.c misc.c output.c proc.c seek.c trace.c \
|
/external/webkit/LayoutTests/http/tests/resources/ |
post-and-verify.cgi | 19 seek FILE, $values{'start'}, 0;
|
/frameworks/base/core/jni/android/graphics/ |
Typeface.cpp | 75 off64_t pos = fAsset->seek(0, SEEK_SET); 88 // asset->seek returns new total offset 91 off64_t oldOffset = fAsset->seek(0, SEEK_CUR); 94 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
|
/frameworks/wilhelm/tests/listening/ |
seekTorture.c | 17 // This test program tortures the seek APIs by positioning "randomly" in a file. 97 // play back a file in permuted order using the seek map 113 // loop repeatedly, inflicting seek pain each cycle 125 printf("seek %u\n", (unsigned) newPos);
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
8bit.sed | 11 # Alas, how shall I seek my love
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
SeekBar1.java | 28 * Demonstrates how to use a seek bar 42 mSeekBar = (SeekBar)findViewById(R.id.seek);
|
/external/skia/include/utils/win/ |
SkIStream.h | 69 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove 100 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
|
/external/skia/legacy/include/utils/win/ |
SkIStream.h | 69 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove 100 virtual HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER liDistanceToMove
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
LookaheadStream.cs | 170 Seek(marker); 175 Seek(_lastMarker); 179 * Seek to a 0-indexed position within data buffer. Can't handle 180 * case where you seek beyond end of existing buffer. Normally used 181 * to seek backwards in the buffer. Does not force loading of nodes. 186 public virtual void Seek(int 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/ObjC/Framework/ |
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
|
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; }
|
/external/libvpx/libvpx/nestegg/test/ |
test.c | 150 fprintf(stderr, "seek to middle\n"); 168 fprintf(stderr, "middle seek failed\n"); 174 fprintf(stderr, "seek to ~end\n"); 192 fprintf(stderr, "end seek failed\n"); 198 fprintf(stderr, "seek to ~start\n"); 216 fprintf(stderr, "start seek failed\n");
|