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

  /external/libutf/
utf.h 6 typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/
10 UTFmax = 4, /* maximum bytes per rune */
12 Runeself = 0x80, /* rune and UTF sequences are the same (<) */
14 Runemax = 0x10FFFF, /* maximum rune value */
22 * rune routines
33 // runetochar copies (encodes) one rune, pointed to by r, to at most
36 int runetochar(char* s, const Rune* r);
40 // one rune, pointed to by r, and returns the number of bytes consumed.
49 int chartorune(Rune* r, const char* s);
59 int charntorune(Rune* r, const char* s, int n)
    [all...]
  /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);

Completed in 90 milliseconds