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

1 2

  /external/chromium_org/third_party/re2/re2/testing/
possible_match_test.cc 109 LOG(INFO) << "Checking regexp=" << CEscape(t.regexp);
139 << "min=" << CEscape(min) << ", max=" << CEscape(max);
142 << "min=" << CEscape(min) << ", max=" << CEscape(max);
145 << "min=" << CEscape(min) << ", max=" << CEscape(max);
148 << "min=" << CEscape(min) << ", max=" << CEscape(max);
151 << "min=" << CEscape(min) << ", max=" << CEscape(max)
    [all...]
tester.cc 174 VLOG(1) << CEscape(regexp_str);
181 LOG(INFO) << "Cannot parse: " << CEscape(regexp_str_)
189 LOG(INFO) << "Cannot compile: " << CEscape(regexp_str_);
196 << CEscape(regexp_str_)
207 LOG(INFO) << "Cannot reverse compile: " << CEscape(regexp_str_);
235 LOG(INFO) << "Cannot RE2: " << CEscape(re);
260 LOG(INFO) << "Cannot PCRE: " << CEscape(re);
346 LOG(ERROR) << "Reverse DFA inconsistency: " << CEscape(regexp_str_)
347 << " on " << CEscape(text);
482 LOG(ERROR) << "Skipped backtracking! " << CEscape(regexp_str_
    [all...]
regexp_generator.cc 212 printf(" %s\n", CEscape(post[i]).c_str());
216 printf(" %s\n", CEscape(regexps.top()).c_str());
  /external/regex-re2/re2/testing/
possible_match_test.cc 109 LOG(INFO) << "Checking regexp=" << CEscape(t.regexp);
139 << "min=" << CEscape(min) << ", max=" << CEscape(max);
142 << "min=" << CEscape(min) << ", max=" << CEscape(max);
145 << "min=" << CEscape(min) << ", max=" << CEscape(max);
148 << "min=" << CEscape(min) << ", max=" << CEscape(max);
151 << "min=" << CEscape(min) << ", max=" << CEscape(max)
    [all...]
tester.cc 174 VLOG(1) << CEscape(regexp_str);
181 LOG(INFO) << "Cannot parse: " << CEscape(regexp_str_)
189 LOG(INFO) << "Cannot compile: " << CEscape(regexp_str_);
196 << CEscape(regexp_str_)
207 LOG(INFO) << "Cannot reverse compile: " << CEscape(regexp_str_);
235 LOG(INFO) << "Cannot RE2: " << CEscape(re);
260 LOG(INFO) << "Cannot PCRE: " << CEscape(re);
346 LOG(ERROR) << "Reverse DFA inconsistency: " << CEscape(regexp_str_)
347 << " on " << CEscape(text);
482 LOG(ERROR) << "Skipped backtracking! " << CEscape(regexp_str_
    [all...]
regexp_generator.cc 212 printf(" %s\n", CEscape(post[i]).c_str());
216 printf(" %s\n", CEscape(regexps.top()).c_str());
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
substitute.cc 88 << CEscape(format) << "\".";
99 << CEscape(format) << "\".";
strutil.h 270 // CEscape()
276 LIBPROTOBUF_EXPORT string CEscape(const string& src);
279 // Like CEscape() but does not escape bytes with the upper bit set.
282 // Like CEscape() but uses hex (\x) escapes instead of octals.
  /external/protobuf/src/google/protobuf/stubs/
substitute.cc 88 << CEscape(format) << "\".";
99 << CEscape(format) << "\".";
  /external/chromium_org/third_party/re2/util/
strutil.cc 58 // CEscape()
62 string CEscape(const StringPiece& src) {
util.h 109 string CEscape(const StringPiece& src);
  /external/regex-re2/util/
strutil.cc 58 // CEscape()
62 string CEscape(const StringPiece& src) {
util.h 108 string CEscape(const StringPiece& src);
  /external/chromium_org/third_party/re2/re2/
re2.cc 639 << " [" << CEscape(subtext) << "]"
645 << " [" << CEscape(subtext) << "]"
651 << " [" << CEscape(subtext) << "]"
668 << " [" << CEscape(subtext) << "]"
674 << " [" << CEscape(subtext) << "]"
682 << " [" << CEscape(subtext) << "]"
704 << " [" << CEscape(subtext) << "]"
712 << " [" << CEscape(subtext) << "]"
722 << " [" << CEscape(subtext) << "]"
729 << " [" << CEscape(subtext) << "]
    [all...]
  /external/regex-re2/re2/
re2.cc 621 << " [" << CEscape(subtext) << "]"
627 << " [" << CEscape(subtext) << "]"
633 << " [" << CEscape(subtext) << "]"
650 << " [" << CEscape(subtext) << "]"
656 << " [" << CEscape(subtext) << "]"
664 << " [" << CEscape(subtext) << "]"
686 << " [" << CEscape(subtext) << "]"
694 << " [" << CEscape(subtext) << "]"
704 << " [" << CEscape(subtext) << "]"
711 << " [" << CEscape(subtext) << "]
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 307 CEscape(field->default_value_string()));
313 // All chars are ASCII. In this case CEscape() works fine.
314 return "\"" + CEscape(field->default_value_string()) + "\"";
319 CEscape(field->default_value_string()));
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 321 CEscape(field->default_value_string()));
327 // All chars are ASCII. In this case CEscape() works fine.
328 return "\"" + CEscape(field->default_value_string()) + "\"";
334 CEscape(field->default_value_string()));
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 589 " tokenized as an integer: " << CEscape(text);
622 " tokenized as a float: " << CEscape(text);
632 " have been tokenized as a string: " << CEscape(text);
tokenizer_unittest.cc 202 return out << CEscape(test_case.input);
331 return out << CEscape(test_case.input);
625 return out << CEscape(test_case.input);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 330 CEscape(field->default_value_string()));
336 // All chars are ASCII. In this case CEscape() works fine.
337 return "\"" + CEscape(field->default_value_string()) + "\"";
342 CEscape(field->default_value_string()));
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_primitive_field.cc 262 CEscape(descriptor->default_value_string()));
265 // All chars are ASCII. In this case CEscape() works fine.
266 default_value = "\"" + CEscape(descriptor->default_value_string()) + "\"";
270 CEscape(descriptor->default_value_string()));
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 860 " tokenized as an integer: " << CEscape(text);
893 " tokenized as a float: " << CEscape(text);
    [all...]
tokenizer_unittest.cc 203 return out << CEscape(test_case.input);
337 return out << CEscape(test_case.input);
530 return out << CEscape(test_case.input);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 206 return "unicode(\"" + CEscape(field.default_value_string()) +
209 return "\"" + CEscape(field.default_value_string()) + "\"";
380 OptionsValue("EnumOptions", CEscape(options_string)));
471 m["serialized_options"] = CEscape(options_string);
833 + CEscape(serialized_options)+ "')";
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 221 return "unicode(\"" + CEscape(field.default_value_string()) +
224 return "\"" + CEscape(field.default_value_string()) + "\"";
500 m["serialized_options"] = CEscape(options_string);
    [all...]

Completed in 271 milliseconds

1 2