Lines Matching refs:u_uastrcpy
290 u_uastrcpy(str, "abc"); in TestSampleMessageFormat()
292 u_uastrcpy(pattern, "There are {0} files on {1,date}"); in TestSampleMessageFormat()
293 u_uastrcpy(expected, "There are abc files on Jul 10, 1996"); in TestSampleMessageFormat()
317 u_uastrcpy(pattern, "The disk \"{0}\" contains {1,number,integer} file(s)"); in TestSampleMessageFormat()
318 u_uastrcpy(expected, "The disk \"MyDisk\" contains 23 file(s)"); in TestSampleMessageFormat()
319 u_uastrcpy(str, "MyDisk"); in TestSampleMessageFormat()
349 u_uastrcpy(pattern, "You made a {0} of {1,number,currency}"); in TestSampleMessageFormat()
350 u_uastrcpy(expected, "You made a deposit of $500.00"); in TestSampleMessageFormat()
351 u_uastrcpy(str, "deposit"); in TestSampleMessageFormat()
399 u_uastrcpy(str, "disturbance in force"); in TestNewFormatAndParseAPI()
400 u_uastrcpy(tzID, "PST"); in TestNewFormatAndParseAPI()
414 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestNewFormatAndParseAPI()
415 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestNewFormatAndParseAPI()
501 u_uastrcpy(str, "disturbance in force"); in TestSampleFormatAndParseWithError()
503 u_uastrcpy(tzID, "PST"); in TestSampleFormatAndParseWithError()
515 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestSampleFormatAndParseWithError()
516 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestSampleFormatAndParseWithError()
599 u_uastrcpy(str, "disturbance in force"); in TestSampleFormatAndParse()
601 u_uastrcpy(tzID, "PST"); in TestSampleFormatAndParse()
614 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestSampleFormatAndParse()
615 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestSampleFormatAndParse()
688 u_uastrcpy(str, "Kirti"); in TestMsgFormatSelect()
690 u_uastrcpy(str1, "female"); in TestMsgFormatSelect()
692 …u_uastrcpy(pattern, "{0} est {1, select, female {all\\u00E9e} other {all\\u00E9}} \\u00E0 Paris."); in TestMsgFormatSelect()
693 u_uastrcpy(expected, "Kirti est all\\u00E9e \\u00E0 Paris."); in TestMsgFormatSelect()
718 u_uastrcpy(str, "Noname"); in TestMsgFormatSelect()
720 u_uastrcpy(str1, "other"); in TestMsgFormatSelect()
722 …u_uastrcpy(pattern, "{0} est {1, select, female {{2,number,integer} all\\u00E9e} other {all\\u00E9… in TestMsgFormatSelect()
723 u_uastrcpy(expected, "Noname est all\\u00E9 \\u00E0 Paris."); in TestMsgFormatSelect()
758 u_uastrcpy(str, "MyDisk"); in TestMsgFormatChoice()
767 … u_uastrcpy(pattern, "The disk {1} contains {0,choice,0#no files|1#one file|1<{0,number} files}"); in TestMsgFormatChoice()
768 u_uastrcpy(expected, "The disk MyDisk contains 100 files"); in TestMsgFormatChoice()
790 u_uastrcpy(expected, "The disk MyDisk contains no files"); in TestMsgFormatChoice()
813 u_uastrcpy(expected, "The disk MyDisk contains one file"); in TestMsgFormatChoice()
852 u_uastrcpy(source, "You deposited an amount of $500.00"); in TestParseMessage()
853 u_uastrcpy(pattern, "You {0} an amount of {1,number,currency}"); in TestParseMessage()
854 u_uastrcpy(res,"deposited"); in TestParseMessage()
869 u_uastrcpy(source, "There are 123 files on MyDisk created"); in TestParseMessage()
870 u_uastrcpy(pattern, "There are {0,number,integer} files on {1} created"); in TestParseMessage()
871 u_uastrcpy(res,"MyDisk"); in TestParseMessage()
907 u_uastrcpy(str, "MyDisk"); in TestMessageFormatWithValist()
964 u_uastrcpy(source, "You deposited an amount of $500.00"); in TestParseMessageWithValist()
965 u_uastrcpy(pattern, "You {0} an amount of {1,number,currency}"); in TestParseMessageWithValist()
966 u_uastrcpy(res,"deposited"); in TestParseMessageWithValist()
980 u_uastrcpy(source, "There are 123 files on MyDisk created"); in TestParseMessageWithValist()
981 u_uastrcpy(pattern, "There are {0,number,integer} files on {1} created"); in TestParseMessageWithValist()
982 u_uastrcpy(res,"MyDisk"); in TestParseMessageWithValist()
1009 u_uastrcpy(string, "foo"); in TestJ904()
1014 u_uastrcpy(pattern, PAT); in TestJ904()