Lines Matching defs:source
209 UChar source[] = { 0x041C, 0x043E, 0x0441, 0x043A, 0x0432,
223 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
232 printUChars("src", source);
290 the source pointer will be equal to sourceLimit. If the output
302 const char *source;
335 source = inBuf;
344 &source, sourceLimit, NULL,
371 } while (source < sourceLimit); // while simply out of space
402 const char *source;
450 source = inBuf;
453 while(source < sourceLimit)
455 p = ucnv_getNextUChar(conv, &source, sourceLimit, &status);
535 char source[] = { 0x63, 0x61, 0x74, (char)0x94, 0x4C, (char)0x82, 0x6E, (char)0x82, 0x6A, 0x00 };
548 len = ucnv_toUChars(conv, target, 100, source, static_cast<int32_t>(strlen(source)), &status);
556 printBytes("src", source, static_cast<int32_t>(strlen(source)) );
575 const char *source, *sourceLimit;
587 source = sourceChars;
593 printBytes("src", source, static_cast<int32_t>(sourceLimit - source));
595 while(source < sourceLimit)
599 &source,
603 // printBytes("src",source,sourceLimit-source);
621 UBool convsample_20_didSubstitute(const char *source)
635 /* print out the original source */
636 printBytes("src", source);
643 len = ucnv_toUChars(conv, uchars, 100, source, static_cast<int32_t>(strlen(source)), &status);
678 /* print out the original source */
715 UBool convsample_21_didSubstitute(const char *source)
735 /* print out the original source */
736 printBytes("src", source);
743 len = ucnv_toUChars(conv, uchars, 100, source, static_cast<int32_t>(strlen(source)), &status);
835 /* print out the original source */
881 const char *source;
923 source = inBuf;
932 &source, sourceLimit, NULL,
954 } while (source < sourceLimit); // while simply out of space
985 const UChar *source;
1028 source = inBuf;
1037 &source, sourceLimit, NULL,
1058 } while (source < sourceLimit); // while simply out of space
1089 const char *source = input;
1096 &source, input + sizeof(input),