Searched refs:seek (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java61 * 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/vboot_reference/scripts/image_signing/
H A Dfirmware_boot.sh58 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
59 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
64 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
65 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
70 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
71 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
76 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
77 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
82 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
83 dd if=bad.bin of=${output} conv=notrunc bs=1 seek
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSeekableInputStream.java22 * This will not seek past the end of the file. If the current position
23 * is already at or past the end of the file, this doesn't seek at all
26 * equivalent of <code>seek(length())</code> and the return value will
30 * the return value is <code>0</code>. It doesn't seek backward
36 * bytes would seek past the end of the file,
39 * @throws IOException might be thrown by {@link #seek(long)}
53 seek(pos + n);
80 public abstract void seek(long pos) throws IOException; method in class:SeekableInputStream
H A DSeekableFileInputStream.java97 * Calls {@link RandomAccessFile#seek(long) randomAccessFile.seek(long)}.
99 public void seek(long pos) throws IOException { method in class:SeekableFileInputStream
100 randomAccessFile.seek(pos);
/external/python/cpython2/Lib/test/
H A Dtest_largefile.py40 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(
[all...]
H A Dtest_memoryio.py43 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(
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DRandomAccessFileOutputStream.java49 raf.seek(filePosition);
55 raf.seek(filePosition);
61 raf.seek(filePosition);
H A DRandomAccessFileInputStream.java49 raf.seek(filePosition);
55 raf.seek(filePosition);
62 raf.seek(filePosition);
/external/autotest/client/site_tests/platform_DMVerityBitCorruption/
H A Dplatform_DMVerityBitCorruption.py23 dev.seek(run_count * block_size + self._adjustment)
25 dev.seek(run_count * block_size + self._adjustment)
35 dev.seek(block_count * block_size, os.SEEK_SET)
36 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR)
39 dev.seek(block_count * block_size, os.SEEK_SET)
40 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR)
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRIntStream.h50 // 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/
H A DANTLRIntStream.h50 // 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/
H A DANTLRIntStream.h50 // 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/ltp/testcases/network/stress/ns-tools/
H A Dcreate_file63 echo -n "Z" | dd of=$filename bs=1 seek=`expr $filesize - 1` >/dev/null 2>&1
/external/python/cpython2/Tools/iobench/
H A Diobench.py62 f.seek(0)
70 f.seek(0)
78 f.seek(0)
86 f.seek(0)
94 f.seek(0)
101 """ seek forward one unit at a time """
102 f.seek(0, 2)
104 f.seek(0, 0)
106 f.seek(i, 0)
111 """ seek forwar
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DIntStream.as60 * 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/
H A Drun-ranlib-test2.sh32 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
/external/python/cpython2/Tools/framer/
H A Dexample.py27 an_input_stream.seek(0) # OK, start over
87 def seek(self, position, mode=0): member in class:cStringIO.InputType
93 seek.pyarg = "i|i"
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRIntStream.h58 // 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;
H A DLookaheadStream.m150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
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; }
H A DLookaheadStream.h150 seek(marker); // assume marker is top
155 seek(lastMarker); // rewind but do not release marker
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/
H A DLookaheadStream.java141 seek(marker); // assume marker is top
146 seek(lastMarker); // rewind but do not release marker
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/avb/test/
H A Dimage_handler_unittest.py99 f.seek(0, os.SEEK_END)
101 f.seek(old_pos)
129 ih.seek(0x6000 + 1)
133 ih.seek(0x3000 - 10)
135 ih.seek(0x9000 - 3)
139 ih.seek(0xf000 - 2)
167 unsparse_file.seek(self.TEST_FILE_SIZE)
180 unsparse_file.seek(self.TEST_FILE_SIZE)
193 unsparse_file.seek(self.TEST_FILE_SIZE)
206 unsparse_file.seek(sel
[all...]
/external/autotest/client/site_tests/hardware_SAT/
H A Dhardware_SAT.py18 fd.seek(0x48)
25 fd.seek(mchbar + 0x5000)
27 fd.seek(mchbar + 0x5024)
/external/swiftshader/third_party/subzero/src/
H A DIceELFStreamer.h35 virtual void seek(uint64_t Off) = 0;
101 void seek(uint64_t Off) override { Out.seek(Off); }
/external/blktrace/btt/doc/
H A DMakefile5 btt.tex: activity.eps qhist.eps dhist.eps seek.eps

Completed in 690 milliseconds

1234567891011>>