Home | History | Annotate | Download | only in ucnv

Lines Matching defs:source

200   UChar source[] = { 0x041C, 0x043E, 0x0441, 0x043A, 0x0432,
214 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
223 printUChars("src", source);
281 the source pointer will be equal to sourceLimit. If the output
293 const char *source;
326 source = inBuf;
335 &source, sourceLimit, NULL,
362 } while (source < sourceLimit); // while simply out of space
393 const char *source;
441 source = inBuf;
444 while(source < sourceLimit)
446 p = ucnv_getNextUChar(conv, &source, sourceLimit, &status);
526 char source[] = { 0x63, 0x61, 0x74, (char)0x94, 0x4C, (char)0x82, 0x6E, (char)0x82, 0x6A, 0x00 };
539 len = ucnv_toUChars(conv, target, 100, source, strlen(source), &status);
547 printBytes("src", source, strlen(source) );
566 const char *source, *sourceLimit;
578 source = sourceChars;
584 printBytes("src",source,sourceLimit-source);
586 while(source < sourceLimit)
590 &source,
594 // printBytes("src",source,sourceLimit-source);
612 UBool convsample_20_didSubstitute(const char *source)
626 /* print out the original source */
627 printBytes("src", source);
634 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
669 /* print out the original source */
706 UBool convsample_21_didSubstitute(const char *source)
727 /* print out the original source */
728 printBytes("src", source);
735 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
828 /* print out the original source */
874 const char *source;
916 source = inBuf;
925 &source, sourceLimit, NULL,
948 } while (source < sourceLimit); // while simply out of space
979 const UChar *source;
1022 source = inBuf;
1031 &source, sourceLimit, NULL,
1053 } while (source < sourceLimit); // while simply out of space
1084 const char *source = input;
1091 &source, input + sizeof(input),