OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:charErrorBuffer
(Results
1 - 15
of
15
) sorted by null
/external/icu/icu4c/source/common/
ucnv_cb.c
107
/* Overflowed the target. Now, we'll write into the
charErrorBuffer
.
118
newTarget = (char *)(args->converter->
charErrorBuffer
+ errBuffLen);
120
newTargetLimit = (char *)(args->converter->
charErrorBuffer
+
121
sizeof(args->converter->
charErrorBuffer
));
149
newTarget - (char*)args->converter->
charErrorBuffer
);
ucnv_u7.c
527
cnv->
charErrorBuffer
[0]=MINUS;
577
cnv->
charErrorBuffer
[0]=MINUS;
607
cnv->
charErrorBuffer
[0]=toBase64[(c>>4)&0x3f];
630
cnv->
charErrorBuffer
[0]=toBase64[(c>>2)&0x3f];
638
cnv->
charErrorBuffer
[0]=toBase64[(c>>8)&0x3f];
639
cnv->
charErrorBuffer
[1]=toBase64[(c>>2)&0x3f];
662
cnv->
charErrorBuffer
[0]=toBase64[c&0x3f];
670
cnv->
charErrorBuffer
[0]=toBase64[(c>>6)&0x3f];
671
cnv->
charErrorBuffer
[1]=toBase64[c&0x3f];
701
cnv->
charErrorBuffer
[cnv->charErrorBufferLength++]=toBase64[bits]
[
all
...]
ucnvbocu.cpp
568
uint8_t *
charErrorBuffer
;
578
charErrorBuffer
=(uint8_t *)cnv->
charErrorBuffer
;
582
*
charErrorBuffer
++=(uint8_t)(diff>>16);
584
*
charErrorBuffer
++=(uint8_t)(diff>>8);
586
*
charErrorBuffer
=(uint8_t)diff;
792
uint8_t *
charErrorBuffer
;
802
charErrorBuffer
=(uint8_t *)cnv->
charErrorBuffer
;
806
*
charErrorBuffer
++=(uint8_t)(diff>>16)
[
all
...]
ucnvhz.c
49
args->converter->
charErrorBuffer
[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \
420
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = (char) targetUniChar;
424
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] =(char) (targetUniChar >> 8);
425
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = (char) targetUniChar;
437
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = (char) targetUniChar;
ucnv_bld.h
214
int8_t charErrorBufferLength; /* number of valid bytes in
charErrorBuffer
*/
217
int8_t UCharErrorBufferLength; /* number of valid UChars in
charErrorBuffer
*/
222
uint8_t
charErrorBuffer
[UCNV_ERROR_BUFFER_LENGTH]; /* codepage output from Error functions */
ucnv2022.cpp
458
converter->
charErrorBuffer
[0] = 0x1b;
459
converter->
charErrorBuffer
[1] = 0x24;
460
converter->
charErrorBuffer
[2] = 0x29;
461
converter->
charErrorBuffer
[3] = 0x43;
651
cnv->
charErrorBuffer
[0] = 0x1b;
652
cnv->
charErrorBuffer
[1] = 0x25;
653
cnv->
charErrorBuffer
[2] = 0x42;
[
all
...]
ucnv_cnv.c
76
t=(char *)cnv->
charErrorBuffer
;
ucnv_u32.c
297
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = temp[indexToWrite];
402
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = temp[indexToWrite];
779
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = temp[indexToWrite];
893
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = temp[indexToWrite];
[
all
...]
ucnv_u8.c
395
cnv->
charErrorBuffer
[0] = (uint8_t) ((ch & 0x3f) | 0x80);
454
cnv->
charErrorBuffer
[cnv->charErrorBufferLength++] = *tempPtr;
518
cnv->
charErrorBuffer
[0] = (uint8_t) ((ch & 0x3f) | 0x80);
591
cnv->
charErrorBuffer
[cnv->charErrorBufferLength++] = *tempPtr;
[
all
...]
ucnvisci.c
[
all
...]
ucnvmbcs.cpp
[
all
...]
ucnv_ct.c
443
args->converter->
charErrorBuffer
[args->converter->charErrorBufferLength++] = tmpTargetBuffer[i];
ucnvscsu.c
[
all
...]
ucnv_lmb.c
[
all
...]
ucnv.c
[
all
...]
Completed in 94 milliseconds