Searched refs:Rune (Results 1 - 9 of 9) sorted by relevance
/third_party/libphonenumber/cpp/src/phonenumbers/utf/ |
H A D | utf.h | 19 typedef unsigned int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/ typedef 49 int runetochar(char* s, const Rune* r); 62 int chartorune(Rune* r, const char* s); 72 int charntorune(Rune* r, const char* s, int n); 79 int isvalidcharntorune(const char* str, int n, Rune* r, int* consumed); 83 int runelen(Rune r); 89 int runenlen(const Rune* r, int n); 124 /*const*/ char* utfrune(const char* s, Rune r); 132 /*const*/ char* utfrrune(const char* s, Rune r); 162 Rune* runestrca [all...] |
H A D | rune.c | 59 * well-formed but incomplete (i.e., to get the whole Rune 60 * we'd need to read past str+length) then we'll set the Rune 67 charntorune(Rune *rune, const char *str, int length) in charntorune() 83 *rune = (Rune)c; in charntorune() 105 *rune = (Rune)l; in charntorune() 127 *rune = (Rune)l; in charntorune() 145 *rune = (Rune)l; in charntorune() 170 chartorune(Rune *rune, const char *str) in chartorune() 181 *rune = (Rune)c; in chartorune() 198 *rune = (Rune) in chartorune() [all...] |
H A D | unilib.cc | 49 Rune rune; in SpanInterchangeValid()
|
H A D | unicodetext.cc | 89 Rune rune; in ConvertToInterchangeValid() 369 Rune rune = c; in push_back()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | JSON.cpp | 407 static void encodeUtf8(uint32_t Rune, std::string &Out) { in encodeUtf8() argument 408 if (Rune < 0x80) { in encodeUtf8() 409 Out.push_back(Rune & 0x7F); in encodeUtf8() 410 } else if (Rune < 0x800) { in encodeUtf8() 411 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6); in encodeUtf8() 412 uint8_t SecondByte = 0x80 | (Rune & 0x3F); in encodeUtf8() 415 } else if (Rune < 0x10000) { in encodeUtf8() 416 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12); in encodeUtf8() 417 uint8_t SecondByte = 0x80 | ((Rune & 0xFC0) >> 6); in encodeUtf8() 418 uint8_t ThirdByte = 0x80 | (Rune in encodeUtf8() [all...] |
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/tok/ |
H A D | tok.go | 58 Rune int 67 fmt.Fprintf(w, "%v:%v:%v[%v]", l.Filepath, l.Line, l.Column, l.Rune) 69 fmt.Fprintf(w, "%v:%v[%v]", l.Line, l.Column, l.Rune)
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | encoding_utils.h | 31 Rune r; in DecodeUTF8Char()
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/ |
H A D | lexer.go | 29 tok.Location{Line: 1, Column: 1, Rune: 0, Filepath: filepath}, 110 l.loc.Rune++
|
H A D | lexer_test.go | 33 return tok.Location{Line: l, Column: c, Rune: r, Filepath: filepath}
|
Completed in 4 milliseconds