Searched refs:Consume (Results 26 - 50 of 143) sorted by relevance

123456

/external/pcre/dist/
H A Dpcre_scanner.cc133 bool Scanner::Consume(const RE& re, function in class:pcrecpp::Scanner
137 const bool result = re.Consume(&input_, arg0, arg1, arg2);
145 while (skip_->Consume(&input_)) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc131 bool Parser::Consume(const char* text, const char* error) { function in class:google::protobuf::compiler::Parser
140 bool Parser::Consume(const char* text) { function in class:google::protobuf::compiler::Parser
465 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
466 DO(Consume("="));
531 DO(Consume("message"));
682 DO(Consume("=", "Missing field number."));
758 DO(Consume("["));
771 DO(Consume("]"));
782 DO(Consume("default"));
783 DO(Consume("
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DDFA.cs109 input.Consume();
130 input.Consume();
142 input.Consume();
149 input.Consume();
H A DLexer.cs221 input.Consume();
227 input.Consume();
240 input.Consume();
254 input.Consume();
340 input.Consume();
H A DANTLRStringStream.cs152 public virtual void Consume() { method in class:Antlr.Runtime.ANTLRStringStream
257 Consume();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DDFA.cs130 input.Consume();
155 input.Consume();
167 input.Consume();
175 input.Consume();
H A DLexer.cs267 input.Consume();
274 input.Consume();
290 input.Consume();
307 input.Consume();
413 input.Consume();
H A DANTLRStringStream.cs168 public virtual void Consume() method in class:Antlr.Runtime.ANTLRStringStream
295 Consume();
H A DCommonTokenStream.cs93 public override void Consume() method in class:Antlr.Runtime.CommonTokenStream
/external/chromium_org/net/spdy/
H A Dspdy_buffer.h24 // ref-counted and will include a way to get notified when Consume()
34 // Called via a call to Consume().
72 // Consume the given number of bytes, which must be positive but not
74 void Consume(size_t consume_size);
78 // updated when Consume() is called. However, it may still be used
/external/chromium_org/net/websockets/
H A Dwebsocket_extension_parser.h36 void Consume(char c);
/external/chromium_org/extensions/browser/api/web_request/
H A Dform_data_parser.cc454 if (!RE2::Consume(&source_, crlf_free_pattern()) ||
455 !RE2::Consume(&source_, crlf_pattern())) {
472 CHECK(RE2::Consume(&source_, dash_boundary_pattern_));
474 CHECK(RE2::Consume(&source_, closing_pattern()));
475 if (RE2::Consume(&source_, epilogue_pattern()))
480 if (!RE2::Consume(&source_, transfer_padding_pattern()))
503 if (!RE2::Consume(&source_, crlf_pattern())) {
536 if (!RE2::Consume(&source_, preamble_pattern())) {
543 if (!RE2::Consume(&source_, dash_boundary_pattern_) ||
544 !RE2::Consume(
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs283 input.Consume();
290 input.Consume();
306 input.Consume();
324 input.Consume();
430 input.Consume();
H A DSlimStringStream.cs189 public void Consume() method in class:Antlr.Runtime.SlimStringStream
316 Consume();
/external/chromium_org/media/base/
H A Daudio_block_fifo_unittest.cc40 const AudioBus* bus = fifo->Consume();
85 // Perform a sequence of Push/Consume calls to different degrees, and verify
96 // Consume 1 block of data.
97 const AudioBus* bus = fifo.Consume();
108 // Consume all blocks of data.
110 const AudioBus* bus = fifo.Consume();
127 // Consume all the existing filled blocks of data.
129 const AudioBus* bus = fifo.Consume();
150 // Perform a sequence of Push/Consume calls to a 1 block FIFO.
160 // Consume
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarLexer.cs262 input.Consume();
321 input.Consume();
423 input.Consume();
H A DProfileGrammarLexer.cs262 input.Consume();
321 input.Consume();
423 input.Consume();
/external/chromium_org/tools/gn/
H A Dparser.h91 Token Consume(Token::Type type, const char* error_message);
92 Token Consume(Token::Type* types,
95 Token Consume();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs76 public virtual void Consume() { method in class:Antlr.Runtime.Debug.DebugTokenStream
82 input.Consume();
93 /** <summary>Consume all initial off-channel tokens</summary> */
H A DDebugTreeNodeStream.cs108 public virtual void Consume() { method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
110 input.Consume();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs86 public virtual void Consume() method in class:Antlr.Runtime.Debug.DebugTokenStream
94 input.Consume();
107 /** <summary>Consume all initial off-channel tokens</summary> */
H A DDebugTreeNodeStream.cs125 public virtual void Consume() method in class:Antlr.Runtime.Debug.DebugTreeNodeStream
128 input.Consume();
/external/chromium_org/base/win/
H A Devent_trace_consumer.h30 // consumer.Consume();
55 // Consume all open sessions from beginning to end.
56 HRESULT Consume();
120 HRESULT EtwTraceConsumerBase<ImplClass>::Consume() { function in class:base::win::EtwTraceConsumerBase
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter_re2.cc101 virtual bool Consume(RegExpInput* input_string, function in class:i18n::phonenumbers::RE2RegExp
111 return DispatchRE2Call(RE2::Consume, utf8_input, utf8_regexp_,
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DLookaheadStream.cs102 public virtual void Consume() { method in class:Antlr.Runtime.Misc.LookaheadStream

Completed in 3999 milliseconds

123456