/external/protobuf/src/google/protobuf/io/ |
D | zero_copy_stream_impl.cc | 97 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 …]
|
D | zero_copy_stream_impl.h | 93 bool Skip(int count); 108 int Skip(int count); 227 bool Skip(int count); 314 bool Skip(int count); 340 bool Skip(int count);
|
D | zero_copy_stream_impl_lite.h | 76 bool Skip(int count); 185 virtual int Skip(int count); 213 bool Skip(int count);
|
D | zero_copy_stream_impl_lite.cc | 91 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()
|
D | coded_stream_unittest.cc | 232 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/ |
D | file_io_test.cc | 57 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()
|
D | memory_io_test.cc | 63 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/ |
D | demux.c | 135 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/ |
D | SubList.cs | 46 .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()
|
D | LexerExtensions.cs | 39 lexer.Skip(); in skip()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenConstants.cs | 76 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
|
D | Lexer.cs | 128 } 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/ |
D | dateparser-inl.h | 172 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/ |
D | bitstrm.h | 73 void Skip( int bytes ); 132 void Skip( int bytes ); 152 void Skip( int bytes );
|
/external/protobuf/gtest/scripts/ |
D | pump.py | 251 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/ |
D | pump.py | 261 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/ |
D | font_input_stream.cc | 132 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/ |
D | Lexer.cs | 152 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()
|
D | Tokens.cs | 42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in Antlr.Runtime.Tokens
|
/external/llvm/lib/Target/ARM/ |
D | MLxExpansionPass.cpp | 334 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/ |
D | LexerExtensions.cs | 39 lexer.Skip(); in skip()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/ |
D | VecMath_Lexer.g3 | 7 WS : (' '|'\r'|'\n')+ {Skip();} ;
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | IMatchFinder.cs | 22 void Skip(UInt32 num); in Skip() method
|
/external/v8/test/mjsunit/ |
D | mjsunit.status | 45 # 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/ |
D | 7zDec.c | 54 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()
|