Lines Matching refs:Append

761   theDest.Append((float)100.100);
762 NS_ASSERTION(theDest=="100.1","Append(float) error");
765 theDest.Append(12345);
766 NS_ASSERTION(theDest=="12345","Append(int) error");
769 theDest.Append(pbuf1,1);
770 NS_ASSERTION(theDest=="a","Append(PRUnichar*,count) error");
773 theDest.Append('a');
774 NS_ASSERTION(theDest=="a","Append(char) error");
780 theDest.Append(pbuf,20); //try appending more chars than actual length of pbuf
781 NS_ASSERTION(theDest!=pbuf,"Append(PRUnichar*) error");
786 theDest.Append(pbuf,5); //try appending fewer chars than actual length of pbuf
787 NS_ASSERTION(theDest==" worl","Append(PRUnichar*) error");
790 theDest.Append(pbuf); //try appending all of pbuf
791 NS_ASSERTION(theDest==pbuf,"Append(PRUnichar*) error");
795 theDest.Append(ss); //try appending NULL
796 NS_ASSERTION(theDest=="","Append(nullstr) error");
798 theDest.Append(pbuf,0); //try appending nothing
799 NS_ASSERTION(theDest=="","Append(nullstr) error");
811 s1.Append(c);
828 c.Append(s);
830 s.Append(buf,5);
836 theDest.Append(temp2);
837 theDest.Append(" xxx ");
838 theDest.Append(pbuf);
839 theDest.Append('4');
840 theDest.Append(PRUnichar('Z'));
1115 s.Append("0123456789");
1182 NS_ASSERTION(str1=="-12345","Append(int) error");
1332 s0.Append(" ");
1338 s0.Append(" abc 123 xyz ");
1348 s0.Append("\n\n\n \r \r \r \t \t \t");
1366 s1.Append("\n\n\n \r \r \r \t \t \t");
1537 theString.Append(str[index]);
1583 thePrevString.Append(str[index]);
1658 theConst.Append("0123456789");
1698 s.Append("abcde");
1716 printf("Append(abcde) NSString: %f STL: %f\n",watch1.Elapsed(),watch2.Elapsed());
1729 s.Append('a');
1747 printf("Append('a') NSString: %f STL: %f\n",watch1.Elapsed(),watch2.Elapsed());
1872 source1.Append(pbuf);
1919 s1.Append("1234567890",10);
1970 theConst.Append("0123456789");
2008 s.Append("abcde",5);
2024 printf("Append(abcde) NSCString: %f STL: %f\n",watch1.Elapsed(),watch2.Elapsed());
2038 s.Append('a');
2055 printf("Append('a') NSCString: %f STL: %f\n",watch1.Elapsed(),watch2.Elapsed());
2171 source1.Append(buffer);
2213 s1.Append("1234567890",10);