HomeSort by relevance Sort by last modified time
    Searched defs:Skip (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Tokens.cs 42 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
Lexer.cs 152 else if ( state.token == Tokens.Skip )
177 * Instruct the lexer to skip creating a token for current lexer rule
184 public virtual void Skip()
186 state.token = Tokens.Skip;
  /system/connectivity/shill/
protobuf_lite_streams.cc 60 int ProtobufLiteCopyingFileInputStream::Skip(int count) {
68 return CopyingInputStream::Skip(count);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 38 * All tokens go to the parser (unless skip() is called in that rule)
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
92 public static readonly T Skip = new T()
Lexer.cs 128 } else if (state.token == Tokens.Skip) {
143 * Instruct the lexer to skip creating a token for current lexer rule
150 public virtual void Skip() {
151 state.token = Tokens.Skip;
  /external/lzma/CPP/7zip/Common/
InBuffer.cpp 118 size_t CInBufferBase::Skip(size_t size)
  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 22 void Skip(UInt32 num);
LzBinTree.cs 252 public void Skip(UInt32 num)
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
gtest_progress_reporter.py 84 def Skip(self, test, reason):
progress_reporter.py 43 def Skip(self, test, reason):
131 progress_reporter.Skip(test, reason)
  /external/pcre/dist/
pcre_scanner.cc 87 void Scanner::Skip(const char* re) {
147 // Only one skip allowed.
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 108 int64_t FileInputStream::Skip(int64_t n) {
memory_input_stream.cc 102 int64_t MemoryInputStream::Skip(int64_t n) {
  /external/chromium-trace/catapult/third_party/typ/typ/
json_results.py 26 Skip = 'Skip'
28 values = (Pass, Failure, ImageOnlyFailure, Timeout, Crash, Skip)
88 full_results['num_failures_by_type']['SKIP'] = len(skipped_tests)
95 value['expected'] = 'SKIP'
96 value['actual'] = 'SKIP'
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 132 int64_t FontInputStream::Skip(int64_t n) {
134 int64_t skipped = stream_->Skip(n);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 180 * Instruct the lexer to skip creating a token for current lexer rule
187 public virtual void Skip()
190 //state.token = Tokens.Skip;
  /external/google-breakpad/src/common/
byte_cursor.h 226 // Skip SIZE bytes at the cursor. If doing so would advance us off
229 ByteCursor &Skip(size_t size) {
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 167 bool GzipInputStream::Skip(int count) {
zero_copy_stream_impl_lite.cc 91 bool ArrayInputStream::Skip(int count) {
201 int CopyingInputStream::Skip(int count) {
279 bool CopyingInputStreamAdaptor::Skip(int count) {
287 // First skip any bytes left over from a previous BackUp().
289 // We have more data left over than we're trying to skip. Just chop it.
297 int skipped = copying_stream_->Skip(count);
  /external/dng_sdk/source/
dng_stream.h 220 /// Skip forward in stream.
221 /// \param delta Number of bytes to skip forward.
223 void Skip (uint64 delta)
  /external/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 77 void Skip(MachineInstr &From, MachineOperand &To);
140 void SILowerControlFlowPass::Skip(MachineInstr &From, MachineOperand &To) {
163 // If the exec mask is non-zero, skip the next two instructions
196 Skip(MI, MI.getOperand(2));
215 Skip(MI, MI.getOperand(2));
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 334 unsigned Skip = 0;
347 Skip = 0;
354 if (++Skip == 2)
358 Skip = 0;
  /external/llvm/lib/Target/X86/
X86CallFrameOptimization.cpp 96 enum InstClassification { Convert, Skip, Exit };
309 return Skip;
365 if (Classification == Skip) {
  /external/lzma/C/
LzFind.h 98 Mf_Skip_Func Skip;
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 252 public void Skip(int num) throws IOException

Completed in 1807 milliseconds

1 2 3 4