Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:Consume

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);
88 inline bool Consume(RegExpInput* input_string) const {
89 return Consume(input_string, true, NULL, NULL, NULL);
92 // Helper method calling the Consume method that assumes the match can start
96 return Consume(input_string, false, matched_string, NULL, NULL);