/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SessionManager.java | 136 public PlaylistItem seek(String iid, long pos) { method in class:SessionManager 138 log("seek: iid=" + iid +", pos=" + pos); 149 mPlayer.seek(item);
|
LocalPlayer.java | 140 public void seek(final PlaylistItem item) { method in class:LocalPlayer 142 Log.d(TAG, "seek: item=" + item); 149 // Seek before onPrepared() arrives, 150 // need to performed delayed seek in onPrepared() 232 Log.d(TAG, "seek to initial pos: " + mSeekToPos);
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3tokenstream.c | 79 static void seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index); 229 stream->tstream->istream->seek = dbgSeek; 318 stream->tstream->istream->seek = seek; 345 ts->istream->seek = dbgSeek; 912 is->seek(is, (ANTLR3_UINT32)(marker)); 923 is->seek(is, (ANTLR3_UINT32)(marker)); 927 seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index) function 940 // TODO: Implement seek in debugger when Ter adds it to Java 942 seek(is, index) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BufferedTreeNodeStream.java | 326 seek(marker); 330 seek(lastMarker); 333 public void seek(int index) { method in class:BufferedTreeNodeStream 348 seek(index); 351 /** Seek back to previous index saved during last push() call. 356 seek(ret);
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
streams.py | 102 essentially calling release() and seek(). If there are markers 115 the marker off. It's like seek(last marker's input position). 126 rewind() except it releases resources without the backward seek. 135 def seek(self, index): member in class:IntStream 138 normally used to seek ahead in the input stream. No buffering is 139 required to do this unless you know your stream will use seek to 154 The index is 0..n-1. A seek to position i means that LA(1) will 462 self.seek(p) 475 def seek(self, index): member in class:ANTLRStringStream 485 # seek forward, consume until p hits inde 921 def seek(self, index): member in class:CommonTokenStream [all...] |
debug.py | 179 def seek(self, index): member in class:DebugTokenStream 180 # TODO: implement seek in dbg interface 181 # self._dbg.seek(index); 182 self.input.seek(index) [all...] |
tree.py | 2044 def seek(self, index): member in class:CommonTreeNodeStream [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_wrap_glibc.cc | 139 OP(seek); \ 256 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) { function 346 CHECK_REAL(seek); 347 return REAL(seek)(fd, offset, whence, new_offset);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
filesystem_mock.py | 484 def seek(self, offset, whence=os.SEEK_SET): member in class:ReadableTextFileObject 485 self.data.seek(offset, whence)
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 569 uint64_t raw_fd_ostream::seek(uint64_t off) { function in class:raw_fd_ostream
|
/external/stlport/test/unit/ |
fstream_test.cpp | 45 CPPUNIT_TEST(seek); 75 void seek(); 371 void FstreamTest::seek() function in class:FstreamTest
|
/ndk/tests/device/test-gnustl-full/unit/ |
fstream_test.cpp | 45 CPPUNIT_TEST(seek); 75 void seek(); 389 void FstreamTest::seek() function in class:FstreamTest
|
/ndk/tests/device/test-stlport/unit/ |
fstream_test.cpp | 45 CPPUNIT_TEST(seek); 75 void seek(); 389 void FstreamTest::seek() function in class:FstreamTest
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
DexData.java | 79 seek(0); 93 seek(8+4+20+4+4); 106 seek(8+4+20); // magic, checksum, signature 142 seek(mHeaderItem.stringIdsOff); 149 seek(stringOffsets[0]); 151 seek(stringOffsets[i]); // should be a no-op 165 seek(mHeaderItem.typeIdsOff); 183 seek(mHeaderItem.protoIdsOff); 210 seek(offset); 229 seek(mHeaderItem.fieldIdsOff) 432 void seek(int position) throws IOException { method in class:DexData [all...] |
/external/chromium/webkit/glue/ |
webmediaplayer_impl.cc | 431 void WebMediaPlayerImpl::seek(float seconds) { function in class:webkit_glue::WebMediaPlayerImpl 434 // WebKit fires a seek(0) at the very start, however pipeline already does a 435 // seek(0) internally. Avoid doing seek(0) the second time because this will 455 // Kick off the asynchronous seek! 456 pipeline_->Seek( 609 // If we are performing streaming, we report that we cannot seek at all. 611 // or not. We should be able to seek even if we are performing streaming.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebMediaPlayerClientImpl.cpp | 367 void WebMediaPlayerClientImpl::seek(double time) function in class:blink::WebMediaPlayerClientImpl 370 m_webMediaPlayer->seek(time);
|
/external/chromium_org/third_party/skia/src/core/ |
SkStream.cpp | 269 bool SkFILEStream::seek(size_t position) { function in class:SkFILEStream 279 that->seek(this->getPosition()); 397 bool SkMemoryStream::seek(size_t position) { function in class:SkMemoryStream 405 return this->seek(fOffset + offset); 410 that->seek(fOffset); 728 virtual bool seek(size_t position) SK_OVERRIDE { 746 return seek(fOffset + offset);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
BstOperationsTest.java | 60 assertEquals(a, BstOperations.seek(Ordering.natural(), d, 'a')); 61 assertEquals(b, BstOperations.seek(Ordering.natural(), d, 'b')); 62 assertNull(BstOperations.seek(Ordering.natural(), d, 'c')); 63 assertEquals(d, BstOperations.seek(Ordering.natural(), d, 'd')); 64 assertNull(BstOperations.seek(Ordering.natural(), d, 'e')); 65 assertEquals(f, BstOperations.seek(Ordering.natural(), d, 'f')); 66 assertEquals(g, BstOperations.seek(Ordering.natural(), d, 'g')); 80 assertNull(BstOperations.seek(Ordering.natural(), d, 'a')); 81 assertEquals(b, BstOperations.seek(Ordering.natural(), d, 'b')); 82 assertEquals(c, BstOperations.seek(Ordering.natural(), d, 'c')) [all...] |
/external/skia/src/core/ |
SkStream.cpp | 269 bool SkFILEStream::seek(size_t position) { function in class:SkFILEStream 279 that->seek(this->getPosition()); 397 bool SkMemoryStream::seek(size_t position) { function in class:SkMemoryStream 405 return this->seek(fOffset + offset); 410 that->seek(fOffset); 728 virtual bool seek(size_t position) SK_OVERRIDE { 746 return seek(fOffset + offset);
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
RemotePlaybackClient.java | 102 * {@link MediaControlIntent#ACTION_SEEK seek}, 311 * Sends a request to seek to a new position in a media item. 335 public void seek(String itemId, long positionMillis, Bundle extras, method in class:RemotePlaybackClient [all...] |
/libcore/luni/src/main/java/java/io/ |
RandomAccessFile.java | 465 seek(unreadPosition); 476 seek(unreadPosition); 596 public void seek(long offset) throws IOException { method in class:RandomAccessFile 633 seek(newLength); 658 seek(currentPos + newCount);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_pyio.py | 60 current seek position). In text mode, if encoding is not specified the 298 def seek(self, pos, whence=0): member in class:IOBase 311 self._unsupported("seek") 315 return self.seek(0, 1) 365 If False, seek(), tell() and truncate() will raise IOError. 366 This method may need to do a test seek(). 693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin 694 new_position = self.raw.seek(pos, whence) 696 raise IOError("seek() returned an invalid position") 713 # XXX: Should seek() be used, instead of passing the positio 848 def seek(self, pos, whence=0): member in class:BytesIO 1044 def seek(self, pos, whence=0): member in class:BufferedReader 1143 def seek(self, pos, whence=0): member in class:BufferedWriter 1240 def seek(self, pos, whence=0): member in class:BufferedRandom 1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_pyio.py | 60 current seek position). In text mode, if encoding is not specified the 298 def seek(self, pos, whence=0): member in class:IOBase 311 self._unsupported("seek") 315 return self.seek(0, 1) 365 If False, seek(), tell() and truncate() will raise IOError. 366 This method may need to do a test seek(). 693 def seek(self, pos, whence=0): member in class:_BufferedIOMixin 694 new_position = self.raw.seek(pos, whence) 696 raise IOError("seek() returned an invalid position") 713 # XXX: Should seek() be used, instead of passing the positio 848 def seek(self, pos, whence=0): member in class:BytesIO 1044 def seek(self, pos, whence=0): member in class:BufferedReader 1143 def seek(self, pos, whence=0): member in class:BufferedWriter 1240 def seek(self, pos, whence=0): member in class:BufferedRandom 1777 def seek(self, cookie, whence=0): member in class:TextIOWrapper [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 1117 seek( marker ) 1120 def seek( index ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream 1127 seek( index ) 1131 pos = @calls.pop and seek( pos ) [all...] |
/external/blktrace/btt/doc/ |
btt.tex | 232 \item[Device Seek Information] 243 The first of the two sections displays values for Q2Q seek distances -- 245 are to each other. The second section shows D2D seek distances -- 467 \item[seek details] A set of data files containing all IO-to-IO 469 section~\ref{sec:seek}. 687 \newpage\section{\label{sec:seek}Seek Data Files} 690 deltas, providing seek information which can then be plotted. The 696 \item Read data -- just seek deltas for reads 698 \item Write data -- just seek deltas for write [all...] |