Lines Matching defs:Limit
73 string Limit(int lower, int upper) {
199 // Limit on the number of pairs of brackets in a phone number.
207 // Limit on the number of leading (plus) characters.
209 // Limit on the number of consecutive punctuation characters.
215 // Limit on the number of blocks separated by punctuation. Uses
278 bracket_pair_limit_(Limit(0, 3)),
285 lead_limit_(Limit(0, 2)),
286 punctuation_limit_(Limit(0, 4)),
289 block_limit_(Limit(0, digit_block_limit_)),
292 digit_sequence_(StrCat("\\p{Nd}", Limit(1, digit_block_limit_))),