/external/webkit/Source/WebCore/css/ |
mediaControlsAndroid.css | 97 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button { 98 -webkit-appearance: media-seek-back-button; 104 audio::-webkit-media-controls-seek-forward-button, video::-webkit-media-controls-seek-forward-button { 105 -webkit-appearance: media-seek-forward-button;
|
/frameworks/av/libvideoeditor/vss/src/ |
M4AMRR_CoreReader.c | 53 * For the seek, the file is splitted in 40 segments for faster search 82 M4OSA_UInt32* m_pSeekIndex; /* Seek Index Table */ 83 M4OSA_UInt32 m_seekInterval; /* Stores the seek Interval stored in the Index */ 243 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, 334 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, M4OSA_kFileSeekCurrent, 391 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, 405 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, 411 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, 521 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, 606 /* Coming to seek for the first time, need to build the seekIndex Table * [all...] |
/external/libvpx/libvpx/nestegg/include/nestegg/ |
nestegg.h | 71 #define NESTEGG_SEEK_SET 0 /**< Seek offset relative to beginning of stream. */ 72 #define NESTEGG_SEEK_CUR 1 /**< Seek offset relative to current position in stream. */ 73 #define NESTEGG_SEEK_END 2 /**< Seek offset relative to end of stream. */ 95 /** User supplied seek callback. 96 @param offset Offset within the stream to seek to. 97 @param whence Seek direction. One of #NESTEGG_SEEK_SET, 100 @retval 0 Seek succeeded. 102 int (* seek)(int64_t offset, int whence, void * userdata); member in struct:__anon10887 173 /** Seek @a track to @a tstamp. Stream seek will terminate at the earlies [all...] |
/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
IIntStream.cs | 82 /// <see cref="IIntStream.Release"/> and <see cref="IIntStream.Seek"/>. 98 /// It's like Seek(last marker's input position). 107 /// the backward seek. 118 /// normally used to seek ahead in the input stream. 122 /// will use seek to move backwards such as when backtracking. 137 /// The index is 0..n-1. A seek to position i means that LA(1) will return 141 void Seek(int index);
|
/external/libvorbis/examples/ |
seeking_example.c | 62 fprintf(stderr,"data position after seek doesn't match pcm position\n"); 111 /* because we want to do sample-level verification that the seek 142 fprintf(stderr,"seek failed: %d\n",ret); 161 fprintf(stderr,"seek failed: %d\n",ret); 180 fprintf(stderr,"seek failed: %d\n",ret); 204 fprintf(stderr,"seek failed: %d\n",ret); 223 fprintf(stderr,"seek failed: %d\n",ret);
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
ANTLRStringStream.js | 184 * the marker off. It's like seek(last marker's input position). 195 this.seek(state.p); 205 * rewind() except it releases resources without the backward seek. 221 * normally used to seek ahead in the input stream. No buffering is 222 * required to do this unless you know your stream will use seek to 238 * <p>The index is 0..n-1. A seek to position i means that LA(1) will 245 * @param {Number} index the position to seek to. 247 seek: function(index) { 252 // seek forward, consume until p hits index
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
LookaheadStream.cs | 204 Seek( marker ); 214 * Seek to a 0-indexed position within data buffer. Can't handle 215 * case where you seek beyond end of existing buffer. Normally used 216 * to seek backwards in the buffer. Does not force loading of nodes. 221 public virtual void Seek( int index )
|
/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/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;
|
ANTLRDebugTreeNodeStream.m | 159 - (void) seek:(NSUInteger) index 161 [input seek:index]; 162 // todo: seek missing in debug protocol
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/bin/ |
i686-linux-elfedit | |
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/bin/ |
mipsel-linux-android-elfedit | |
/prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/bin/ |
i686-linux-android-elfedit | |
/external/chromium/net/base/ |
file_stream_unittest.cc | 58 // Seek to the beginning of the file and read. 60 ASSERT_EQ(0, read_stream.Seek(FROM_BEGIN, 0)); 74 ASSERT_EQ(0, write_stream.Seek(FROM_BEGIN, 0)); 90 int64 new_offset = stream.Seek(FROM_BEGIN, 5); 210 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset); 246 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset); 280 int64 new_offset = stream.Seek(FROM_BEGIN, kOffset); 283 new_offset = stream.Seek(FROM_CURRENT, kOffset); 286 new_offset = stream.Seek(FROM_CURRENT, -kOffset); 291 new_offset = stream.Seek(FROM_END, -kTestDataLen) [all...] |
/bionic/libc/stdio/ |
stdio.c | 40 * Small standard I/O/seek/close functions. 41 * These maintain the `known seek offset' for seek optimisation.
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-streams.rb | 110 @stream.seek(3) 118 @stream.seek(4) 129 @stream.seek(4) 142 @stream.seek(4) 157 @stream.seek(4) 175 @stream.seek( 5 ) 183 @stream.seek(4) 209 @stream.seek(4) 376 @stream.seek(2).peek.should == EOF 377 @stream.seek(0).peek.should == 1 [all...] |
/external/libvorbis/doc/vorbisfile/ |
ov_pcm_seek_lap.html | 32 numbers of channels. Any extra channels from the origin of the seek 60 <dd>Position in pcm samples to seek to in the bitstream.</dd> 81 <li>OV_EOF - Indicates stream is at end of file immediately after a seek
|
ov_pcm_seek_page_lap.html | 41 the seek are ignored; playback of these channels simply ends. Extra 69 <dd>Position in pcm samples to seek to in the bitstream.</dd> 90 <li>OV_EOF - Indicates stream is at end of file immediately after a seek
|
ov_time_seek_lap.html | 33 numbers of channels. Any extra channels from the origin of the seek 61 <dd>Location to seek to within the file, specified in seconds.</dd> 82 <li>OV_EOF - Indicates stream is at end of file immediately after a seek
|
/frameworks/wilhelm/src/itf/ |
ISeek.c | 17 /* Seek implementation */ 30 // maximum position is a special value that indicates a seek is not pending 37 // at this point the seek is merely pending, so do not yet update other fields
|
/hardware/ti/omap3/dspbridge/inc/ |
host_os.h | 82 #define SEEK_SET 0 /* Seek from beginning of file. */ 83 #define SEEK_CUR 1 /* Seek from current position. */ 84 #define SEEK_END 2 /* Seek from end of file. */
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
host_os.h | 78 #define SEEK_SET 0 /* Seek from beginning of file. */ 79 #define SEEK_CUR 1 /* Seek from current position. */ 80 #define SEEK_END 2 /* Seek from end of file. */
|