/external/chromium_org/third_party/re2/re2/testing/ |
possible_match_test.cc | 137 EXPECT_FALSE(RE2("[\\s\\S]+", RE2::Latin1). 140 EXPECT_FALSE(RE2("[\\0-\xFF]+", RE2::Latin1). 143 EXPECT_FALSE(RE2(".+hello", RE2::Latin1). 146 EXPECT_FALSE(RE2(".*hello", RE2::Latin1). 149 EXPECT_FALSE(RE2(".*", RE2::Latin1). 199 RE2 re(regexp, RE2::Latin1);
|
mimics_pcre_test.cc | 65 flags = flags | Regexp::Latin1; 70 << (j==0 ? "latin1" : "utf");
|
required_prefix_test.cc | 45 flags = flags | Regexp::Latin1; 52 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf") << " " << re->Dump(); 55 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf"); 57 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf"); 59 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf");
|
compile_test.cc | 108 Regexp* re = Regexp::Parse(t.regexp, Regexp::PerlX|Regexp::Latin1, NULL);
|
tester.cc | 146 { single_line|Regexp::Latin1, "single-line, latin1" }, 149 { multi_line|Regexp::Latin1, "multiline, latin1" }, 218 // Regexp::Latin1 will be accomodated below. 229 if (flags & Regexp::Latin1) 254 if (flags & Regexp::Latin1)
|
re2_test.cc | 438 TEST(QuoteMeta, Latin1) { 439 TestQuoteMeta("3\xb2 = 9", RE2::Latin1); 1013 RE2 re_test1(".........", RE2::Latin1); 1021 RE2 re_test3("(.)", RE2::Latin1); 1029 RE2 re_test5(utf8_string, RE2::Latin1); 1035 RE2 re_test7(utf8_pattern, RE2::Latin1); 1048 RE2 match_sentence(pattern, RE2::Latin1); 1057 RE2 match_sentence(pattern, RE2::Latin1); [all...] |
regexp_benchmark.cc | [all...] |
/external/chromium_org/v8/src/ |
unicode-inl.h | 60 uint16_t Latin1::ConvertNonLatin1ToLatin1(uint16_t c) { 61 DCHECK(c > Latin1::kMaxChar);
|
unicode.h | 116 class Latin1 {
|
scanner.h | 207 if (code_unit <= unibrow::Latin1::kMaxChar) {
|
objects.h | [all...] |
jsregexp.cc | 572 // being internal and external, and even between being Latin1 and UC16, [all...] |
/external/chromium_org/v8/test/cctest/ |
test-strings.cc | [all...] |
/external/chromium_org/third_party/re2/re2/ |
regexp.h | 42 // If parsed with the flag Regexp::Latin1, both the regular expression 282 Latin1 = 1<<5, // Regexp and text are in Latin1, not UTF-8.
|
re2.h | 49 // The RE2::Latin1 option causes them to be interpreted as Latin-1. 53 // CHECK(RE2::FullMatch(latin1_string, RE2(latin1_pattern, RE2::Latin1))); 253 Latin1, // treat input as Latin-1 (default UTF-8) [all...] |
re2.cc | 58 : encoding_(opt == RE2::Latin1 ? EncodingLatin1 : EncodingUTF8), 159 flags |= Regexp::Latin1; 461 // If this is the part of a UTF8 or Latin1 character, we need [all...] |
regexp.cc | 643 if (re->parse_flags() & Latin1) { 664 if ((re->parse_flags() & Latin1) || re->rune_ < Runeself) {
|
prefilter.cc | 214 static Info* CClass(CharClass* cc, bool latin1); 405 // Constructs Info for literal rune for Latin1 encoded string. 448 bool latin1) { 462 if (latin1) { 481 Walker(bool latin1) : latin1_(latin1) {} 492 bool latin1() { return latin1_; } function in class:re2::Prefilter::Info::Walker 503 bool latin1 = re->parse_flags() & Regexp::Latin1; local 504 Prefilter::Info::Walker w(latin1); [all...] |
parse.cc | 171 if (flags_ & Latin1) [all...] |
compile.cc | 120 kEncodingLatin1, // Latin1 (0-FF) 497 // In Latin1 mode, there's no point in caching. 553 // Latin1 is easy: runes *are* bytes. 956 if (flags & Regexp::Latin1) [all...] |
/external/bison/build-aux/ |
texinfo.tex | [all...] |