HomeSort by relevance Sort by last modified time
    Searched refs:Rune (Results 1 - 15 of 15) sorted by null

  /external/regex-re2/util/
utf.h 14 * This file and rune.cc have been converted to compile as C++ code
24 typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/
28 UTFmax = 4, /* maximum bytes per rune */
30 Runeself = 0x80, /* rune and UTF sequences are the same (<) */
32 Runemax = 0x10FFFF, /* maximum rune value */
35 int runetochar(char* s, const Rune* r);
36 int chartorune(Rune* r, const char* s);
39 char* utfrune(const char*, Rune);
rune.cc 49 chartorune(Rune *rune, const char *str)
60 *rune = c;
77 *rune = l;
92 *rune = l;
107 *rune = l;
120 *rune = Bad;
125 runetochar(char *str, const Rune *rune)
134 c = *rune;
214 Rune rune; local
    [all...]
  /external/regex-re2/re2/
unicode_casefold.h 65 // Returns the CaseFold* in the tables that contains rune.
66 // If rune is not in the tables, returns the first CaseFold* after rune.
67 // If rune is larger than any value in the tables, returns NULL.
68 extern CaseFold* LookupCaseFold(CaseFold*, int, Rune rune);
70 // Returns the result of applying the fold f to the rune r.
71 extern Rune ApplyFold(CaseFold *f, Rune r);
regexp.h 223 Rune lo;
224 Rune hi;
228 // This lets us look in a set to find the range covering a particular Rune.
250 bool Contains(Rune r);
328 Rune rune() { DCHECK_EQ(op_, kRegexpLiteral); return rune_; } function in class:re2::Regexp
332 Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; }
393 static Regexp* NewLiteral(Rune rune, ParseFlags flags);
395 static Regexp* LiteralString(Rune* runes, int nrunes, ParseFlags flags)
    [all...]