HomeSort by relevance Sort by last modified time
    Searched defs:rune (Results 1 - 18 of 18) sorted by null

  /external/libutf/
utflen.c 24 Rune rune; local
34 s += chartorune(&rune, s);
utfnlen.c 24 Rune rune; local
38 s += chartorune(&rune, s);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
scanner.go 77 s.rune()
291 func isLetter(c rune) bool {
295 func isDigit(c rune) bool {
332 func (s *scanner) isCompatRune(c rune, start bool) bool {
363 func (s *scanner) number(c rune) {
497 func (s *scanner) rune() { func
589 func (s *scanner) escape(quote rune) bool {
  /prebuilts/go/darwin-x86/test/
rune.go 7 // Test rune constants, expressions and types.
10 package rune package
22 r = []rune{r0, r1, r2, r3, r4, r5, r6, r7}
rename.go 46 rune +
92 rune = 29
91 rune = 29 const
rename1.go 50 rune = 29
49 rune = 29 const
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
scanner.go 77 s.rune()
291 func isLetter(c rune) bool {
295 func isDigit(c rune) bool {
332 func (s *scanner) isCompatRune(c rune, start bool) bool {
363 func (s *scanner) number(c rune) {
497 func (s *scanner) rune() { func
589 func (s *scanner) escape(quote rune) bool {
  /prebuilts/go/linux-x86/test/
rune.go 7 // Test rune constants, expressions and types.
10 package rune package
22 r = []rune{r0, r1, r2, r3, r4, r5, r6, r7}
rename.go 46 rune +
92 rune = 29
91 rune = 29 const
rename1.go 50 rune = 29
49 rune = 29 const
  /prebuilts/go/darwin-x86/src/regexp/syntax/
compile.go 95 var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
96 var anyRune = []rune{0, unicode.MaxRune}
105 if len(re.Rune) == 0 {
109 for j := range re.Rune {
110 f1 := c.rune(re.Rune[j:j+1], re.Flags)
119 return c.rune(re.Rune, re.Flags)
121 return c.rune(anyRuneNotNL, 0)
123 return c.rune(anyRune, 0
266 func (c *compiler) rune(r []rune, flags Flags) frag { func
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
compile.go 95 var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
96 var anyRune = []rune{0, unicode.MaxRune}
105 if len(re.Rune) == 0 {
109 for j := range re.Rune {
110 f1 := c.rune(re.Rune[j:j+1], re.Flags)
119 return c.rune(re.Rune, re.Flags)
121 return c.rune(anyRuneNotNL, 0)
123 return c.rune(anyRune, 0
266 func (c *compiler) rune(r []rune, flags Flags) frag { func
    [all...]
  /external/regex-re2/util/
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...]
  /prebuilts/go/darwin-x86/src/builtin/
builtin.go 90 // rune is an alias for int32 and is equivalent to int32 in all ways. It is
92 type rune rune type
  /prebuilts/go/linux-x86/src/builtin/
builtin.go 90 // rune is an alias for int32 and is equivalent to int32 in all ways. It is
92 type rune rune type
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 383 char32 rune = 0; local
387 rune = (rune << 4) + hex_digit_to_int(*++p); // Advance p.
395 d += runetochar(d, &rune);
400 char32 rune = 0; local
404 // Don't change rune until we're sure this
406 char32 newrune = (rune << 4) + hex_digit_to_int(*++p);
414 rune = newrune;
423 d += runetochar(d, &rune);
    [all...]
  /external/regex-re2/re2/
parse.cc 62 // Pushes the literal rune r onto the stack.
63 bool PushLiteral(Rune r);
123 bool ParseCCCharacter(StringPiece* s, Rune *rp,
219 Rune r = re->ccb_->begin()->lo;
224 Rune r = re->ccb_->begin()->lo;
243 CaseFold* LookupCaseFold(CaseFold *f, int n, Rune r) {
270 // Returns the result of applying the fold f to the rune r.
271 Rune ApplyFold(CaseFold *f, Rune r) {
296 // Returns the next Rune in r's folding cycle (see unicode_casefold.h)
547 Rune rune; local
735 Rune rune = re->runes_[re->nrunes_ - 1]; local
1086 Rune rune = re2->rune_; local
    [all...]
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...]

Completed in 284 milliseconds