Searched defs:Skip (Results 1 - 25 of 25) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokens.cs42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
H A DLexer.cs152 else if ( state.token == Tokens.Skip )
184 public virtual void Skip() method in class:Antlr.Runtime.Lexer
186 state.token = Tokens.Skip;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
92 public static readonly T Skip = new T() field in class:Antlr.Runtime.T
H A DLexer.cs128 } else if (state.token == Tokens.Skip) {
150 public virtual void Skip() { method in class:Antlr.Runtime.Lexer
151 state.token = Tokens.Skip;
/external/webkit/Source/WebKit/win/
H A DCOMEnumVariant.h49 virtual HRESULT STDMETHODCALLTYPE Skip(ULONG celt);
150 HRESULT STDMETHODCALLTYPE COMEnumVariant<ContainerType>::Skip(ULONG celt) function in class:COMEnumVariant
H A DWebFrame.cpp820 virtual HRESULT STDMETHODCALLTYPE Skip(ULONG celt) function in class:EnumChildFrames
1155 // Skip option elements, other duds
1379 if (elements.at(i)->isEnumeratable()) { // Skip option elements, other duds
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs187 public virtual void Skip() method in class:Antlr.Runtime.SlimLexer
190 //state.token = Tokens.Skip;
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc151 bool GzipInputStream::Skip(int count) { function in class:google::protobuf::io::GzipInputStream
H A Dcoded_stream_unittest.cc280 // Skip this test for the 64-bit values.
443 // Skip 64-bit values.
654 // Skip
671 EXPECT_TRUE(coded_input.Skip(strlen("<To be skipped>")));
698 // Skip forward in the same buffer then peek again.
699 EXPECT_TRUE(coded_input.Skip(3));
704 // Skip to end of buffer and peek -- should get next buffer.
705 EXPECT_TRUE(coded_input.Skip(5));
727 // Skip forward in the same buffer then peek again.
728 EXPECT_TRUE(coded_input.Skip(
1067 bool Skip(int count) { GOOGLE_LOG(FATAL) << "Not implemented."; return false; } function in class:google::protobuf::io::__anon10692::ReallyBigInputStream
[all...]
H A Dtokenizer_unittest.cc143 bool Skip(int count) { return array_stream_.Skip(count); } function in class:google::protobuf::io::__anon10695::TestInputStream
H A Dzero_copy_stream_impl.cc96 bool FileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream
97 return impl_.Skip(count);
152 int FileInputStream::CopyingFileInputStream::Skip(int count) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
167 return CopyingInputStream::Skip(count);
286 bool IstreamInputStream::Skip(int count) { function in class:google::protobuf::io::IstreamInputStream
287 return impl_.Skip(count);
380 bool ConcatenatingInputStream::Skip(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
383 // skipped when Skip() fails.
385 if (streams_[0]->Skip(count)) return true;
444 bool LimitingInputStream::Skip(in function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl_lite.cc87 bool ArrayInputStream::Skip(int count) { function in class:google::protobuf::io::ArrayInputStream
189 int CopyingInputStream::Skip(int count) { function in class:google::protobuf::io::CopyingInputStream
267 bool CopyingInputStreamAdaptor::Skip(int count) { function in class:google::protobuf::io::CopyingInputStreamAdaptor
285 int skipped = copying_stream_->Skip(count);
H A Dcoded_stream.cc154 bool CodedInputStream::Skip(int count) { function in class:google::protobuf::io::CodedInputStream
179 // We hit the limit. Skip up to it then fail.
182 input_->Skip(bytes_until_limit);
188 return input_->Skip(count);
546 bool CodedOutputStream::Skip(int count) { function in class:google::protobuf::io::CodedOutputStream
/external/llvm/lib/Target/ARM/
H A DMLxExpansionPass.cpp268 unsigned Skip = 0; local
281 Skip = 0;
288 if (++Skip == 2)
292 Skip = 0;
/external/webkit/Source/WebCore/platform/win/
H A DWCDataObject.cpp48 STDMETHOD(Skip)(ULONG);
124 STDMETHODIMP WCEnumFormatEtc::Skip(ULONG celt) function in class:WebCore::WCEnumFormatEtc
/external/chromium/testing/gtest/scripts/
H A 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/gtest/scripts/
H A 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/chromium/net/base/
H A Ddnsrr_resolver.cc459 bool Skip(unsigned n) { function in class:net::Buffer
572 if (!buf.Skip(2) || // skip id
573 !buf.Skip(1) || // skip first flags byte
/external/clang/lib/Parse/
H A DParseTemplate.cpp142 // Skip until the semi-colon or a }.
367 // Somebody probably forgot to close the template. Skip ahead and
1136 bool Parser::IsTemplateArgumentList(unsigned Skip) { argument
1142 while (Skip) {
1144 --Skip;
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp215 void RBaseStream::Skip( int bytes ) function in class:RBaseStream
470 void RLBitStream::Skip( int bytes ) function in class:RLBitStream
581 void RMBitStream::Skip( int bytes ) function in class:RMBitStream
/external/v8/src/
H A Ddateparser.h116 bool Skip(uint32_t c) { function in class:v8::internal::DateParser::BASE_EMBEDDED
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp933 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1; local
934 Buf += Name.substr(Pos + Skip);
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1682 bool Skip = isCommIntrinsic ? 1 : 0; // First operand is intrinsic id. local
1683 for (unsigned i = Skip, e = getNumChildren()-1; i != e; ++i)
3430 // Skip if the top level predicates do not match.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1069 procedure Skip;
2311 /// <summary>Skip tokens on any channel but this one; this is how we skip whitespace... </summary>
2459 procedure Skip;
5600 procedure TLexer.Skip;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 628 milliseconds