Home
last modified time | relevance | path

Searched refs:Skip (Results 1 – 25 of 228) sorted by relevance

12345678910

/external/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc97 bool FileInputStream::Skip(int count) { in Skip() function in google::protobuf::io::FileInputStream
98 return impl_.Skip(count); in Skip()
153 int FileInputStream::CopyingFileInputStream::Skip(int count) { in Skip() function in google::protobuf::io::FileInputStream::CopyingFileInputStream
168 return CopyingInputStream::Skip(count); in Skip()
287 bool IstreamInputStream::Skip(int count) { in Skip() function in google::protobuf::io::IstreamInputStream
288 return impl_.Skip(count); in Skip()
381 bool ConcatenatingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::ConcatenatingInputStream
386 if (streams_[0]->Skip(count)) return true; in Skip()
447 bool LimitingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::LimitingInputStream
450 input_->Skip(limit_); in Skip()
[all …]
Dzero_copy_stream_impl.h93 bool Skip(int count);
108 int Skip(int count);
227 bool Skip(int count);
314 bool Skip(int count);
340 bool Skip(int count);
Dzero_copy_stream_impl_lite.h76 bool Skip(int count);
185 virtual int Skip(int count);
213 bool Skip(int count);
Dzero_copy_stream_impl_lite.cc91 bool ArrayInputStream::Skip(int count) { in Skip() function in google::protobuf::io::ArrayInputStream
201 int CopyingInputStream::Skip(int count) { in Skip() function in google::protobuf::io::CopyingInputStream
279 bool CopyingInputStreamAdaptor::Skip(int count) { in Skip() function in google::protobuf::io::CopyingInputStreamAdaptor
297 int skipped = copying_stream_->Skip(count); in Skip()
Dcoded_stream_unittest.cc232 virtual bool Skip(int count) { in TEST_F() function in google::protobuf::io::__anon5322f6d80111::TEST_F::In
887 EXPECT_TRUE(coded_input.Skip(strlen("<To be skipped>"))); in TEST_1D()
915 EXPECT_TRUE(coded_input.Skip(3)); in TEST_F()
921 EXPECT_TRUE(coded_input.Skip(5)); in TEST_F()
944 EXPECT_TRUE(coded_input.Skip(3)); in TEST_F()
951 EXPECT_TRUE(coded_input.Skip(5)); in TEST_F()
974 EXPECT_TRUE(coded_output.Skip(3)); in TEST_F()
980 EXPECT_TRUE(coded_output.Skip(5)); in TEST_F()
986 EXPECT_TRUE(coded_output.Skip(22)); in TEST_F()
1139 ASSERT_TRUE(coded_input.Skip(128)); in TEST_F()
[all …]
/external/sfntly/cpp/src/test/
Dfile_io_test.cc57 is.Skip(89); in TestFileInputStream()
63 is.Skip(-89); in TestFileInputStream()
67 is.Skip(100); in TestFileInputStream()
70 is.Skip(-400); in TestFileInputStream()
118 is.Skip(89); in TestFontInputStreamBasic()
125 font_is2.Skip(-200); in TestFontInputStreamBasic()
137 font_is.Skip(TTF_OFFSET[SAMPLE_TTF_FEAT]); in TestFontInputStreamTableLoading()
Dmemory_io_test.cc63 EXPECT_EQ(is.Skip(30), 30); // position 50 in TestMemoryInputStream()
68 EXPECT_EQ(is.Skip(-20), -20); // position 40 in TestMemoryInputStream()
73 EXPECT_EQ(is.Skip(-60), -50); // Out of bound, position 0 in TestMemoryInputStream()
74 EXPECT_EQ(is.Skip(kTestBufferLen + 10), (int32_t)kTestBufferLen); in TestMemoryInputStream()
/external/webp/src/demux/
Ddemux.c135 static WEBP_INLINE void Skip(MemBuffer* const mem, size_t size) { in Skip() function
150 Skip(mem, 1); in ReadByte()
157 Skip(mem, 2); in ReadLE16s()
164 Skip(mem, 3); in ReadLE24s()
171 Skip(mem, 4); in ReadLE32()
227 Skip(mem, payload_available); in StoreFrame()
258 Skip(mem, payload_available); in StoreFrame()
415 Skip(mem, RIFF_HEADER_SIZE); in ReadHeader()
504 Skip(mem, chunk_size_padded - ANIM_CHUNK_SIZE); in ParseVP8XChunks()
507 goto Skip; in ParseVP8XChunks()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DSubList.cs46 .Skip( _startIndex ) in Contains()
163 .Skip( _startIndex ) in GetEnumerator()
267 return _source.Cast<object>().Skip( _startIndex ).Take( Count ).Contains( value ); in Contains()
334 return _source.Skip( _startIndex ).Take( Count ).GetEnumerator(); in GetEnumerator()
353 return _source.Skip( _startIndex ).Take( Count ).Contains( item ); in Contains()
DLexerExtensions.cs39 lexer.Skip(); in skip()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenConstants.cs76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in Antlr.Runtime.Tokens
92 public static readonly T Skip = new T() field in Antlr.Runtime.T
DLexer.cs128 } else if (state.token == Tokens.Skip) { in NextToken()
150 public virtual void Skip() { in Skip() method in Antlr.Runtime.Lexer
151 state.token = Tokens.Skip; in Skip()
/external/v8/src/
Ddateparser-inl.h172 if (in_->Skip(':')) return DateToken::Symbol(':'); in Scan()
173 if (in_->Skip('-')) return DateToken::Symbol('-'); in Scan()
174 if (in_->Skip('+')) return DateToken::Symbol('+'); in Scan()
175 if (in_->Skip('.')) return DateToken::Symbol('.'); in Scan()
176 if (in_->Skip(')')) return DateToken::Symbol(')'); in Scan()
/external/opencv/otherlibs/highgui/
Dbitstrm.h73 void Skip( int bytes );
132 void Skip( int bytes );
152 void Skip( int bytes );
/external/protobuf/gtest/scripts/
Dpump.py251 def Skip(lines, pos, regex): function
273 pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX)
274 pos = Skip(lines, pos, r'\(')
276 pos = Skip(lines, pos, r'\)')
283 pos = Skip(lines, pos, r'\)')
324 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
328 pos = Skip(lines, eq_token.end, r'\s*')
340 pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX)
347 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
/external/google-breakpad/src/testing/gtest/scripts/
Dpump.py261 def Skip(lines, pos, regex): function
283 pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX)
284 pos = Skip(lines, pos, r'\(')
286 pos = Skip(lines, pos, r'\)')
293 pos = Skip(lines, pos, r'\)')
330 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
334 pos = Skip(lines, eq_token.end, r'\s*')
346 pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX)
353 pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX)
/external/sfntly/cpp/src/sfntly/data/
Dfont_input_stream.cc132 int64_t FontInputStream::Skip(int64_t n) { in Skip() function in sfntly::FontInputStream
134 int64_t skipped = stream_->Skip(n); in Skip()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DLexer.cs152 else if ( state.token == Tokens.Skip ) in NextToken()
184 public virtual void Skip() in Skip() method in Antlr.Runtime.Lexer
186 state.token = Tokens.Skip; in Skip()
DTokens.cs42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in Antlr.Runtime.Tokens
/external/llvm/lib/Target/ARM/
DMLxExpansionPass.cpp334 unsigned Skip = 0; in ExpandFPMLxInstructions() local
347 Skip = 0; in ExpandFPMLxInstructions()
354 if (++Skip == 2) in ExpandFPMLxInstructions()
358 Skip = 0; in ExpandFPMLxInstructions()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DLexerExtensions.cs39 lexer.Skip(); in skip()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
DVecMath_Lexer.g37 WS : (' '|'\r'|'\n')+ {Skip();} ;
/external/lzma/CS/7zip/Compress/LZ/
DIMatchFinder.cs22 void Skip(UInt32 num); in Skip() method
/external/v8/test/mjsunit/
Dmjsunit.status45 # Skip long running test in debug and allow it to timeout in release mode.
157 # Skip long running tests that time out in debug mode.
196 # Skip endain dependent test for mips due to different typed views of the same
204 # Skip tests not suitable for GC stress.
249 # Pass but take too long to run. Skip.
327 # Skip tests not suitable for ASAN.
509 # Skip long running test that times out in debug mode and goes OOM on NaCl.
512 # Skip tests that timout with turbofan.
538 # Skip tests that are not suitable for deoptimization fuzzing.
/external/lzma/C/
D7zDec.c54 p->res = p->inStream->Skip(p->inStream, size); in ReadByte()
165 res = inStream->Skip((void *)inStream, inProcessed); in SzDecodeLzma()
214 res = inStream->Skip((void *)inStream, inProcessed); in SzDecodeLzma2()
238 RINOK(inStream->Skip((void *)inStream, curSize)); in SzDecodeCopy()

12345678910