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

1 2

  /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...]
  /external/regex-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 431 TEST(QuoteMeta, Latin1) {
432 TestQuoteMeta("3\xb2 = 9", RE2::Latin1);
1004 RE2 re_test1(".........", RE2::Latin1);
1012 RE2 re_test3("(.)", RE2::Latin1);
1020 RE2 re_test5(utf8_string, RE2::Latin1);
1026 RE2 re_test7(utf8_pattern, RE2::Latin1);
1039 RE2 match_sentence(pattern, RE2::Latin1);
1048 RE2 match_sentence(pattern, RE2::Latin1);
    [all...]
  /external/chromium_org/v8/src/
unicode-inl.h 60 uint16_t Latin1::ConvertNonLatin1ToLatin1(uint16_t c) {
61 ASSERT(c > Latin1::kMaxChar);
unicode.h 116 class Latin1 {
scanner.h 205 if (code_unit <= unibrow::Latin1::kMaxChar) {
  /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...]
  /external/regex-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 40 : encoding_(opt == RE2::Latin1 ? EncodingLatin1 : EncodingUTF8),
141 flags |= Regexp::Latin1;
443 // 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) {

Completed in 359 milliseconds

1 2