HomeSort by relevance Sort by last modified time
    Searched refs:seek (Results 151 - 175 of 1049) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mmap.py 72 # test seeking around (try to overflow the seek implementation)
73 m.seek(0,0)
75 m.seek(42,1)
77 m.seek(0,2)
80 # Try to seek to negative position...
81 self.assertRaises(ValueError, m.seek, -1)
83 # Try to seek beyond end of mmap...
84 self.assertRaises(ValueError, m.seek, 1, 2)
86 # Try to seek to negative position...
87 self.assertRaises(ValueError, m.seek, -len(m)-1, 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mmap.py 72 # test seeking around (try to overflow the seek implementation)
73 m.seek(0,0)
75 m.seek(42,1)
77 m.seek(0,2)
80 # Try to seek to negative position...
81 self.assertRaises(ValueError, m.seek, -1)
83 # Try to seek beyond end of mmap...
84 self.assertRaises(ValueError, m.seek, 1, 2)
86 # Try to seek to negative position...
87 self.assertRaises(ValueError, m.seek, -len(m)-1, 2
    [all...]
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
Player.java 25 * seek, etc. Used by PlaybackManager as a backend to handle actual playback
39 public abstract void seek(final PlaylistItem item); method in class:Player
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 51 input.seek(0); // rewind the input
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugTokenStream.h 54 - (void) seek:(NSInteger)index;
ANTLRDebugTreeNodeStream.h 64 - (void) seek:(NSUInteger) index;
ANTLRLookaheadStream.h 63 - (void) seek:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugTokenStream.h 54 - (void) seek:(NSInteger)index;
ANTLRDebugTreeNodeStream.h 64 - (void) seek:(NSUInteger) index;
ANTLRLookaheadStream.h 63 - (void) seek:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugTokenStream.h 54 - (void) seek:(NSInteger)index;
ANTLRDebugTreeNodeStream.h 64 - (void) seek:(NSUInteger) index;
ANTLRLookaheadStream.h 63 - (void) seek:(NSInteger) i;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTokenStream.h 54 - (void) seek:(NSInteger)index;
ANTLRDebugTreeNodeStream.h 64 - (void) seek:(NSUInteger) index;
ANTLRLookaheadStream.h 67 - (void) seek:(NSInteger) i;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestBufferedTreeNodeStream.java 66 stream.seek(7); // seek to 107
  /external/autotest/client/site_tests/video_YouTubePage/files/
video_YouTubePageCommon.js 44 function seek(time) { function
108 window.__seek = seek;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
seek.py 5 """A Telemetry page_action that performs the "seek" action on media elements.
8 - seconds: The media time to seek to. Test fails if not provided.
9 - selector: If no selector is defined then the action attempts to seek the first
10 media element on the page. If 'all' then seek all media elements.
14 - log_time: If true the seek time is recorded, otherwise media
15 measurement will not be aware of the seek action. Used to
17 - label: A suffix string to name the seek perf measurement.
39 utils.InjectJavaScript(tab, 'seek.js')
54 raise page_action.PageActionFailed('Cannot seek media element(s) with '
  /external/lzma/Java/Tukaani/src/
XZSeekDecDemo.java 58 in.seek(pos);
  /external/skia/include/core/
SkStream.h 116 * If an attempt is made to seek past the end of the stream, the position will be set
119 virtual bool seek(size_t /*position*/) { return false; } function in class:SkStream
151 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
158 bool seek(size_t position) override = 0;
279 bool seek(size_t position) override;
340 bool seek(size_t position) override;
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 97 bool SkDWriteFontFileStream::seek(size_t position) { function in class:SkDWriteFontFileStream
104 return seek(fPos + offset);
109 that->seek(fPos);
206 if (!fStream->seek(static_cast<size_t>(fileOffset))) {
SkDWriteFontFileStream.h 33 bool seek(size_t position) override;

Completed in 2063 milliseconds

1 2 3 4 5 67 8 91011>>