• Home
  • Raw
  • Download

Lines Matching refs:u_uastrcpy

287     u_uastrcpy(str, "abc");      in TestSampleMessageFormat()
289 u_uastrcpy(pattern, "There are {0} files on {1,date}"); in TestSampleMessageFormat()
290 u_uastrcpy(expected, "There are abc files on Jul 10, 1996"); in TestSampleMessageFormat()
314 u_uastrcpy(pattern, "The disk \"{0}\" contains {1,number,integer} file(s)"); in TestSampleMessageFormat()
315 u_uastrcpy(expected, "The disk \"MyDisk\" contains 23 file(s)"); in TestSampleMessageFormat()
316 u_uastrcpy(str, "MyDisk"); in TestSampleMessageFormat()
346 u_uastrcpy(pattern, "You made a {0} of {1,number,currency}"); in TestSampleMessageFormat()
347 u_uastrcpy(expected, "You made a deposit of $500.00"); in TestSampleMessageFormat()
348 u_uastrcpy(str, "deposit"); in TestSampleMessageFormat()
396 u_uastrcpy(str, "disturbance in force"); in TestNewFormatAndParseAPI()
397 u_uastrcpy(tzID, "PST"); in TestNewFormatAndParseAPI()
410 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestNewFormatAndParseAPI()
411 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestNewFormatAndParseAPI()
497 u_uastrcpy(str, "disturbance in force"); in TestSampleFormatAndParseWithError()
499 u_uastrcpy(tzID, "PST"); in TestSampleFormatAndParseWithError()
511 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestSampleFormatAndParseWithError()
512 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestSampleFormatAndParseWithError()
592 u_uastrcpy(str, "disturbance in force"); in TestSampleFormatAndParse()
594 u_uastrcpy(tzID, "PST"); in TestSampleFormatAndParse()
607 u_uastrcpy(pattern, "On {0, date, long}, there was a {1} on planet {2,number,integer}"); in TestSampleFormatAndParse()
608 u_uastrcpy(expected, "On March 18, 1999, there was a disturbance in force on planet 7"); in TestSampleFormatAndParse()
679 u_uastrcpy(str, "Kirti"); in TestMsgFormatSelect()
681 u_uastrcpy(str1, "female"); in TestMsgFormatSelect()
683u_uastrcpy(pattern, "{0} est {1, select, female {all\\u00E9e} other {all\\u00E9}} \\u00E0 Paris."); in TestMsgFormatSelect()
684 u_uastrcpy(expected, "Kirti est all\\u00E9e \\u00E0 Paris."); in TestMsgFormatSelect()
709 u_uastrcpy(str, "Noname"); in TestMsgFormatSelect()
711 u_uastrcpy(str1, "other"); in TestMsgFormatSelect()
713u_uastrcpy(pattern, "{0} est {1, select, female {{2,number,integer} all\\u00E9e} other {all\\u00E9… in TestMsgFormatSelect()
714 u_uastrcpy(expected, "Noname est all\\u00E9 \\u00E0 Paris."); in TestMsgFormatSelect()
749 u_uastrcpy(str, "MyDisk"); in TestMsgFormatChoice()
758u_uastrcpy(pattern, "The disk {1} contains {0,choice,0#no files|1#one file|1<{0,number} files}"); in TestMsgFormatChoice()
759 u_uastrcpy(expected, "The disk MyDisk contains 100 files"); in TestMsgFormatChoice()
781 u_uastrcpy(expected, "The disk MyDisk contains no files"); in TestMsgFormatChoice()
804 u_uastrcpy(expected, "The disk MyDisk contains one file"); in TestMsgFormatChoice()
843 u_uastrcpy(source, "You deposited an amount of $500.00"); in TestParseMessage()
844 u_uastrcpy(pattern, "You {0} an amount of {1,number,currency}"); in TestParseMessage()
845 u_uastrcpy(res,"deposited"); in TestParseMessage()
860 u_uastrcpy(source, "There are 123 files on MyDisk created"); in TestParseMessage()
861 u_uastrcpy(pattern, "There are {0,number,integer} files on {1} created"); in TestParseMessage()
862 u_uastrcpy(res,"MyDisk"); in TestParseMessage()
898 u_uastrcpy(str, "MyDisk"); in TestMessageFormatWithValist()
955 u_uastrcpy(source, "You deposited an amount of $500.00"); in TestParseMessageWithValist()
956 u_uastrcpy(pattern, "You {0} an amount of {1,number,currency}"); in TestParseMessageWithValist()
957 u_uastrcpy(res,"deposited"); in TestParseMessageWithValist()
971 u_uastrcpy(source, "There are 123 files on MyDisk created"); in TestParseMessageWithValist()
972 u_uastrcpy(pattern, "There are {0,number,integer} files on {1} created"); in TestParseMessageWithValist()
973 u_uastrcpy(res,"MyDisk"); in TestParseMessageWithValist()
1000 u_uastrcpy(string, "foo"); in TestJ904()
1005 u_uastrcpy(pattern, PAT); in TestJ904()