Home | History | Annotate | Download | only in ustring

Lines Matching refs:two

173     /* Compare two strings case-insensitively using full case folding */
426 // this copies the few UChars into the "two" object
427 UnicodeString two=one;
428 printf("length of short string copy: %d\n", two.length());
441 two=one;
442 printf("length of longer string copy: %d\n", two.length());
461 two.fastCopyFrom(one);
462 printUnicodeString("fastCopyFrom(readonly alias of \"writeable\" array): ", two);
464 one.getBuffer()==two.getBuffer());
466 two=one;
468 one.getBuffer()==two.getBuffer());
481 two=four;
482 two.setCharAt(1, 0x21);
483 for(i=0; i<two.length(); ++i) {
528 * In C, we need two macros: one to declare the UChar[] array, and