Searched defs:bytesToWrite (Results 1 - 5 of 5) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c213 unsigned short bytesToWrite = 0; local
247 if (ch < (UTF32)0x80) { bytesToWrite = 1;
248 } else if (ch < (UTF32)0x800) { bytesToWrite = 2;
249 } else if (ch < (UTF32)0x10000) { bytesToWrite = 3;
250 } else if (ch < (UTF32)0x110000) { bytesToWrite = 4;
251 } else { bytesToWrite = 3;
255 target += bytesToWrite;
258 target -= bytesToWrite; result = targetExhausted; break;
260 switch (bytesToWrite) { /* note: everything falls through. */
264 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
410 unsigned short bytesToWrite = 0; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp137 unsigned short bytesToWrite = 0; local
145 bytesToWrite = 1;
147 bytesToWrite = 2;
149 target += bytesToWrite;
152 target -= bytesToWrite;
156 switch (bytesToWrite) { // note: everything falls through.
161 *--target = (char)(ch | firstByteMark[bytesToWrite]);
163 target += bytesToWrite;
179 unsigned short bytesToWrite = 0; local
213 bytesToWrite
[all...]
/external/llvm/lib/Support/
H A DConvertUTF.c229 unsigned short bytesToWrite = 0; local
263 if (ch < (UTF32)0x80) { bytesToWrite = 1;
264 } else if (ch < (UTF32)0x800) { bytesToWrite = 2;
265 } else if (ch < (UTF32)0x10000) { bytesToWrite = 3;
266 } else if (ch < (UTF32)0x110000) { bytesToWrite = 4;
267 } else { bytesToWrite = 3;
271 target += bytesToWrite;
274 target -= bytesToWrite; result = targetExhausted; break;
276 switch (bytesToWrite) { /* note: everything falls through. */
280 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
299 unsigned short bytesToWrite = 0; local
[all...]
/external/clang/lib/Lex/
H A DLiteralSupport.cpp423 unsigned short bytesToWrite = 0; local
425 bytesToWrite = 1;
427 bytesToWrite = 2;
429 bytesToWrite = 3;
431 bytesToWrite = 4;
442 ResultBuf += bytesToWrite;
443 switch (bytesToWrite) { // note: everything falls through.
447 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
450 ResultBuf += bytesToWrite;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 826 milliseconds