HomeSort by relevance Sort by last modified time
    Searched refs:seek (Results 1 - 25 of 542) 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
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.idl 36 [RaisesException] void seek(long long position);
FileWriterSync.h 55 void seek(long long position, ExceptionState&);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_largefile.py 40 print('create large file via seek (may be sparse file) ...')
43 f.seek(0)
44 f.seek(size)
58 print('play around with seek() and read() with the built largefile')
63 f.seek(0)
65 f.seek(0, 0)
67 f.seek(42)
69 f.seek(42, 0)
71 f.seek(42, 1)
73 f.seek(0, 1
    [all...]
test_memoryio.py 43 bytesIo.seek(0)
46 bytesIo.seek(3)
48 self.assertRaises(TypeError, bytesIo.seek, 0.0)
55 bytesIo.seek(5)
57 bytesIo.seek(10000)
69 self.assertEqual(f.seek(0), 0)
72 self.assertEqual(f.seek(5), 5)
75 self.assertEqual(f.seek(0), 0)
121 memio.seek(6)
130 memio.seek(0, 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_largefile.py 40 print('create large file via seek (may be sparse file) ...')
43 f.seek(0)
44 f.seek(size)
58 print('play around with seek() and read() with the built largefile')
63 f.seek(0)
65 f.seek(0, 0)
67 f.seek(42)
69 f.seek(42, 0)
71 f.seek(42, 1)
73 f.seek(0, 1
    [all...]
test_memoryio.py 43 bytesIo.seek(0)
46 bytesIo.seek(3)
48 self.assertRaises(TypeError, bytesIo.seek, 0.0)
55 bytesIo.seek(5)
57 bytesIo.seek(10000)
69 self.assertEqual(f.seek(0), 0)
72 self.assertEqual(f.seek(5), 5)
75 self.assertEqual(f.seek(0), 0)
121 memio.seek(6)
130 memio.seek(0, 2
    [all...]
  /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);
  /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/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/chromium_org/tools/telemetry/telemetry/page/actions/
seek_unittest.py 6 from telemetry.page.actions import seek namespace
22 """Tests that with no selector Seek action seeks first media element."""
24 action = seek.SeekAction(data)
32 """Tests that Seek action seeks video element matching selector."""
34 action = seek.SeekAction(data)
45 """Tests that Seek action seeks all video elements with selector='all'."""
47 action = seek.SeekAction(data)
59 """Tests that wait_for_seeked timeouts if video does not seek."""
64 action = seek.SeekAction(data)
72 """Tests that seek action fails with no seek time.""
    [all...]
  /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/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
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 38 off64_t pos = fAsset->seek(0, SEEK_SET);
40 SkDebugf("----- fAsset->seek(rewind) failed\n");
69 // asset->seek returns new total offset
72 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
74 SkDebugf("---- fAsset->seek(oldOffset) failed\n");
77 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
79 SkDebugf("---- fAsset->seek(%d) failed\n", size);
101 off64_t size = asset->seek(0, SEEK_SET);
  /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/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);
  /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:__anon20989
  /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...]

Completed in 3227 milliseconds

1 2 3 4 5 6 7 8 91011>>