HomeSort by relevance Sort by last modified time
    Searched refs:Consume (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternLexer.cs 66 Consume();
73 Consume();
78 Consume();
82 Consume();
87 Consume();
91 Consume();
95 Consume();
99 Consume();
103 Consume();
107 Consume();
    [all...]
TreeParser.cs 113 // always consume the current node
114 input.Consume();
119 input.Consume();
134 input.Consume();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 68 Consume();
78 Consume();
84 Consume();
89 Consume();
95 Consume();
100 Consume();
105 Consume();
110 Consume();
115 Consume();
121 Consume();
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 37 // Consume() method of RegExp which may differ depending on its various
48 // phonenumberutil.cc. Consume(), Match() and Replace() methods must be
62 virtual bool Consume(RegExpInput* input_string,
68 // Helper methods calling the Consume method that assume the match must start
70 inline bool Consume(RegExpInput* input_string,
74 return Consume(input_string, true, matched_string1, matched_string2,
78 inline bool Consume(RegExpInput* input_string,
81 return Consume(input_string, true, matched_string1, matched_string2, NULL);
84 inline bool Consume(RegExpInput* input_string, string* matched_string) const {
85 return Consume(input_string, true, matched_string, NULL, NULL)
    [all...]
shortnumberutil.cc 74 : emergency_number_pattern->Consume(normalized_number_input.get());
  /external/chromium_org/net/base/
test_data_stream.cc 20 Consume(bytes_to_copy);
31 Consume(bytes_to_compare);
58 // Consume data from the spill buffer.
59 void TestDataStream::Consume(int bytes) {
test_data_stream.h 36 // Consume data from the spill buffer.
37 void Consume(int bytes);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 54 Stream.Consume; // O
59 Stream.Consume; // n
64 Stream.Consume; // e
69 Stream.Consume; // #13
74 Stream.Consume; // #10
79 Stream.Consume; // T
84 Stream.Consume; // w
89 Stream.Consume; // o
94 Stream.Consume; // EOF
99 Stream.Consume; // EO
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 46 void Consume();
Lexer.cs 221 input.Consume();
227 input.Consume();
237 Recover(mte); // don't really recover; just consume in lexer
240 input.Consume();
254 input.Consume();
340 input.Consume();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 43 void Consume();
UnbufferedTokenStream.cs 131 public override void Consume()
133 base.Consume();
Lexer.cs 267 input.Consume();
274 input.Consume();
287 Recover( mte ); // don't really recover; just consume in lexer
290 input.Consume();
307 input.Consume();
413 input.Consume();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ANTLRxxxxStreamFixture.cs 103 inputStream.Consume();
106 inputStream.Consume();
111 inputStream.Consume();
127 inputStream.Consume();
144 inputStream.Consume(); // O
149 inputStream.Consume(); // n
154 inputStream.Consume(); // e
159 inputStream.Consume(); // \r
164 inputStream.Consume(); // \n
169 inputStream.Consume(); //
    [all...]
ITreeNodeStreamFixture.cs 211 { // consume til end
213 stream.Consume();
219 // consume til end again :)
221 { // consume til end
223 stream.Consume();
247 { // consume til middle
249 stream.Consume();
253 stream.Consume(); // consume 107
254 stream.Consume(); // consume U
    [all...]
  /external/chromium_org/media/base/
audio_fifo.h 19 // Push(), while a second thread calls Consume().
32 // Consume() will crash if the FIFO does not contain |frames_to_consume|
35 void Consume(AudioBus* destination, int start_frame, int frames_to_consume);
audio_pull_fifo.h 38 void Consume(AudioBus* destination, int frames_to_consume);
audio_pull_fifo_unittest.cc 44 // Consume data using different sizes, acquire audio frames from the FIFO
51 pull_fifo_.Consume(audio_bus_.get(), frames_to_consume);
86 TEST_P(AudioPullFifoTest, Consume) {
91 // parameter to AudioPullFifo::Consume() when the consumer asks for data.
audio_fifo_unittest.cc 5 // TODO(henrika): add test which included |start_frame| in Consume() call.
58 TEST_F(AudioFifoTest, Consume) {
68 SCOPED_TRACE("Consume 50%");
70 fifo.Consume(bus.get(), 0, bus->frames());
76 SCOPED_TRACE("Consume 100%");
78 fifo.Consume(bus.get(), 0, bus->frames());
105 fifo.Consume(bus.get(), 0, bus->frames());
111 // during a sequence of Push/Consume calls which involves wrapping. We ensure
121 fifo.Consume(bus2.get(), 0, frames_in_fifo);
126 // Perform a sequence of Push/Consume calls and verify that the data writte
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 131 bool Parser::Consume(const char* text, const char* error) {
140 bool Parser::Consume(const char* text) {
347 DO(Consume("syntax", "File must begin with 'syntax = \"proto2\";'."));
348 DO(Consume("="));
352 DO(Consume(";"));
395 DO(Consume("message"));
403 DO(Consume("{"));
463 DO(Consume("=", "Missing field number."));
499 DO(Consume(";"));
517 DO(Consume("]"));
    [all...]
  /external/chromium_org/net/spdy/
spdy_buffer_unittest.cc 66 // Construct a SpdyBuffer and call Consume() on it, which should
68 // as calling the consume callbacks.
69 TEST_F(SpdyBufferTest, Consume) {
75 base::Bind(&IncrementBy, &x1, SpdyBuffer::CONSUME));
77 base::Bind(&IncrementBy, &x2, SpdyBuffer::CONSUME));
81 buffer.Consume(5);
86 buffer.Consume(kDataSize - 5);
108 // Consume().
112 buffer.Consume(5);
118 buffer.Consume(kDataSize - 5)
    [all...]
spdy_buffer.h 24 // ref-counted and will include a way to get notified when Consume()
34 // Called via a call to Consume().
35 CONSUME,
42 // consume. May be called any number of times with CONSUME as the
57 // any consume callbacks with a DISCARD source.
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/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 131 bool Parser::Consume(const char* text, const char* error) {
140 bool Parser::Consume(const char* text) {
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/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 458 if (!RE2::Consume(&source_, crlf_free_pattern()) ||
459 !RE2::Consume(&source_, crlf_pattern())) {
476 CHECK(RE2::Consume(&source_, dash_boundary_pattern_));
478 CHECK(RE2::Consume(&source_, closing_pattern()));
479 if (RE2::Consume(&source_, epilogue_pattern()))
484 if (!RE2::Consume(&source_, transfer_padding_pattern()))
507 if (!RE2::Consume(&source_, crlf_pattern())) {
540 if (!RE2::Consume(&source_, preamble_pattern())) {
547 if (!RE2::Consume(&source_, dash_boundary_pattern_) ||
548 !RE2::Consume(&source_, transfer_padding_pattern())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 283 input.Consume();
290 input.Consume();
303 Recover( mte ); // don't really recover; just consume in lexer
306 input.Consume();
324 input.Consume();
430 input.Consume();

Completed in 331 milliseconds

1 2 3 4 5 6