Home
last modified time | relevance | path

Searched refs:Rune (Results 1 - 9 of 9) sorted by relevance

/third_party/libphonenumber/cpp/src/phonenumbers/utf/
H A Dutf.h19 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 Drune.c59 * 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 Dunilib.cc49 Rune rune; in SpanInterchangeValid()
H A Dunicodetext.cc89 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 DJSON.cpp407 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 Dtok.go58 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 Dencoding_utils.h31 Rune r; in DecodeUTF8Char()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/
H A Dlexer.go29 tok.Location{Line: 1, Column: 1, Rune: 0, Filepath: filepath},
110 l.loc.Rune++
H A Dlexer_test.go33 return tok.Location{Line: l, Column: c, Rune: r, Filepath: filepath}

Completed in 4 milliseconds