Home | History | Annotate | Download | only in cintltst

Lines Matching defs:testString

483     const UChar testString[] = {0x0061, 0x0062, 0x0063, 0x0064, 0x0064, 0x0061, 0};
507 if (u_strpbrk(testString, a) != &testString[0]) {
510 if (u_strpbrk(testString, dc) != &testString[2]) {
513 if (u_strpbrk(testString, cd) != &testString[2]) {
516 if (u_strpbrk(testString, cdh) != &testString[2]) {
519 if (u_strpbrk(testString, f) != NULL) {
522 if (u_strpbrk(testString, fg) != NULL) {
525 if (u_strpbrk(testString, gf) != NULL) {
528 if (u_strpbrk(testString, empty) != NULL) {
573 if (u_strcspn(testString, a) != 0) {
576 if (u_strcspn(testString, dc) != 2) {
579 if (u_strcspn(testString, cd) != 2) {
582 if (u_strcspn(testString, cdh) != 2) {
585 if (u_strcspn(testString, f) != u_strlen(testString)) {
588 if (u_strcspn(testString, fg) != u_strlen(testString)) {
591 if (u_strcspn(testString, gf) != u_strlen(testString)) {
634 if (u_strspn(testString, a) != 1) {
637 if (u_strspn(testString, ab) != 2) {
640 if (u_strspn(testString, ba) != 2) {
643 if (u_strspn(testString, f) != 0) {
646 if (u_strspn(testString, dc) != 0) {
649 if (u_strspn(testString, abcd) != u_strlen(testString)) {
652 if (u_strspn(testString, empty) != 0) {