OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstByteMark
(Results
1 - 3
of
3
) sorted by null
/external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c
191
static const UTF8
firstByteMark
[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
264
case 1: *--target = (UTF8)(ch |
firstByteMark
[bytesToWrite]);
444
case 1: *--target = (UTF8) (ch |
firstByteMark
[bytesToWrite]);
/external/llvm/lib/Support/
ConvertUTF.c
102
static const UTF8
firstByteMark
[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
279
case 1: *--target = (UTF8)(ch |
firstByteMark
[bytesToWrite]);
332
case 1: *--target = (UTF8) (ch |
firstByteMark
[bytesToWrite]);
/external/webkit/Source/JavaScriptCore/wtf/unicode/
UTF8.cpp
126
static const unsigned char
firstByteMark
[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
194
case 1: *--target = (char)(ch |
firstByteMark
[bytesToWrite]);
Completed in 36 milliseconds