Home
last modified time | relevance | path

Searched refs:Rune (Results 1 – 17 of 17) sorted by relevance

/external/regex-re2/re2/
Dregexp.h223 Rune lo;
224 Rune hi;
250 bool Contains(Rune r);
328 Rune rune() { DCHECK_EQ(op_, kRegexpLiteral); return rune_; } in rune()
332 Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; } in runes()
393 static Regexp* NewLiteral(Rune rune, ParseFlags flags);
395 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags);
463 static Rune* LeadingString(Regexp* re, int* nrune, ParseFlags* flags);
499 void AddRuneToString(Rune r);
557 Rune* runes_;
[all …]
Dunicode_casefold.h68 extern CaseFold* LookupCaseFold(CaseFold*, int, Rune rune);
71 extern Rune ApplyFold(CaseFold *f, Rune r);
Dparse.cc63 bool PushLiteral(Rune r);
123 bool ParseCCCharacter(StringPiece* s, Rune *rp,
219 Rune r = re->ccb_->begin()->lo; in PushRegexp()
224 Rune r = re->ccb_->begin()->lo; in PushRegexp()
243 CaseFold* LookupCaseFold(CaseFold *f, int n, Rune r) { in LookupCaseFold()
271 Rune ApplyFold(CaseFold *f, Rune r) { in ApplyFold()
306 Rune CycleFoldRune(Rune r) { in CycleFoldRune()
316 static void AddFoldedRange(CharClassBuilder* cc, Rune lo, Rune hi, int depth) { in AddFoldedRange()
340 Rune lo1 = lo; in AddFoldedRange()
341 Rune hi1 = min<Rune>(hi, f->hi); in AddFoldedRange()
[all …]
Dregexp.cc159 void Regexp::AddRuneToString(Rune r) { in AddRuneToString()
163 runes_ = new Rune[8]; in AddRuneToString()
166 Rune *old = runes_; in AddRuneToString()
167 runes_ = new Rune[nrunes_ * 2]; in AddRuneToString()
283 Regexp* Regexp::NewLiteral(Rune rune, ParseFlags flags) { in NewLiteral()
289 Regexp* Regexp::LiteralString(Rune* runes, int nrunes, ParseFlags flags) { in LiteralString()
653 Rune r = re->runes_[j]; in RequiredPrefix()
700 bool CharClassBuilder::AddRange(Rune lo, Rune hi) { in AddRange()
707 Rune lo1 = max<Rune>(lo, 'A'); in AddRange()
708 Rune hi1 = min<Rune>(hi, 'Z'); in AddRange()
[all …]
Dtostring.cc25 static void AppendCCRange(string* t, Rune lo, Rune hi);
120 static void AppendLiteral(string *t, Rune r, bool foldcase) { in AppendLiteral()
296 static void AppendCCChar(string* t, Rune r) { in AppendCCChar()
331 static void AppendCCRange(string* t, Rune lo, Rune hi) { in AppendCCRange()
Dprefilter.cc171 static Rune ToLowerRune(Rune r) { in ToLowerRune()
184 static Rune ToLowerRuneLatin1(Rune r) { in ToLowerRuneLatin1()
215 static Info* Literal(Rune r);
216 static Info* LiteralLatin1(Rune r);
394 static string RuneToString(Rune r) { in RuneToString()
400 static string RuneToStringLatin1(Rune r) { in RuneToStringLatin1()
406 Prefilter::Info* Prefilter::Info::Literal(Rune r) { in Literal()
414 Prefilter::Info* Prefilter::Info::LiteralLatin1(Rune r) { in LiteralLatin1()
469 for (Rune r = i->lo; r <= i->hi; r++) { in CClass()
Dcompile.cc193 void AddRuneRange(Rune lo, Rune hi, bool foldcase);
194 void AddRuneRangeLatin1(Rune lo, Rune hi, bool foldcase);
195 void AddRuneRangeUTF8(Rune lo, Rune hi, bool foldcase);
209 Frag Literal(Rune r, bool foldcase);
539 void Compiler::AddRuneRange(Rune lo, Rune hi, bool foldcase) { in AddRuneRange()
551 void Compiler::AddRuneRangeLatin1(Rune lo, Rune hi, bool foldcase) { in AddRuneRangeLatin1()
604 void Compiler::AddRuneRangeUTF8(Rune lo, Rune hi, bool foldcase) { in AddRuneRangeUTF8()
617 Rune max = MaxRune(i); in AddRuneRangeUTF8()
690 Frag Compiler::Literal(Rune r, bool foldcase) { in Literal()
Donepass.cc483 Rune lo = max<Rune>(ip->lo(), 'a') + 'A' - 'a'; in IsOnePass()
484 Rune hi = min<Rune>(ip->hi(), 'z') + 'A' - 'a'; in IsOnePass()
/external/regex-re2/util/
Dutf.h24 typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/ typedef
35 int runetochar(char* s, const Rune* r);
36 int chartorune(Rune* r, const char* s);
39 char* utfrune(const char*, Rune);
Drune.cc49 chartorune(Rune *rune, const char *str) in chartorune()
125 runetochar(char *str, const Rune *rune) in runetochar()
182 runelen(Rune rune) in runelen()
214 Rune rune; in utflen()
231 utfrune(const char *s, Rune c) in utfrune()
234 Rune r; in utfrune()
/external/regex-re2/re2/testing/
Ddump.cc74 Rune r = re->rune(); in DumpRegexpAppending()
80 Rune r = re->runes()[i]; in DumpRegexpAppending()
98 Rune r = re->rune(); in DumpRegexpAppending()
106 Rune r = re->runes()[i]; in DumpRegexpAppending()
Dcharclass_test.cc14 Rune lo;
15 Rune hi;
19 Rune lo;
20 Rune hi;
Dexhaustive3_test.cc29 static string UTF8(Rune r) { in UTF8()
Dstring_generator_test.cc54 Rune r; in RunTest()
Dregexp_generator.cc234 Rune r; in Explode()
/external/regex-re2/
Ducs2.diff42 void AddRuneRangeLatin1(Rune lo, Rune hi, bool foldcase);
43 void AddRuneRangeUTF8(Rune lo, Rune hi, bool foldcase);
45 - void AddRuneRangeUCS2(Rune lo, Rune hi, bool foldcase);
99 - void Compiler::AddRuneRangeUCS2(Rune lo, Rune hi, bool foldcase) {
152 Frag Compiler::Literal(Rune r, bool foldcase) {
406 - Rune r;
432 - Rune r;
466 - Rune r;
548 - Rune r;
/external/quake/quake/src/WinQuake/data/
DMANUAL.TXT121 Rune and another slipgate, which returns you to the start.