Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:Match

48 // phonenumberutil.cc. Consume(), Match() and Replace() methods must be
55 // matched, false otherwise, advances position in the match.
57 // anchor_at_start - if true, match would be successful only if it appears at
59 // matched_string1 - the first string extracted from the match. Can be NULL.
60 // matched_string2 - the second string extracted from the match. Can be NULL.
61 // matched_string3 - the third string extracted from the match. Can be NULL.
68 // Helper methods calling the Consume method that assume the match must start
92 // Helper method calling the Consume method that assumes the match can start
102 // full_match - if true, match would be successful only if it matches the
104 // matched_string - the string extracted from the match. Can be NULL.
105 virtual bool Match(const string& input_string,
109 // Helper methods calling the Match method with the right arguments.
112 return Match(input_string, false, matched_string);
116 return Match(input_string, false, NULL);
121 return Match(input_string, true, matched_string);
125 return Match(input_string, true, NULL);
128 // Replaces match(es) in 'string_to_process'. If 'global' is true,
129 // replaces all the matches, otherwise only the first match.