Home | History | Annotate | Download | only in cintltst

Lines Matching full:teststring

478     const UChar testString[] = {0x0061, 0x0062, 0x0063, 0x0064, 0x0064, 0x0061, 0};
502 if (u_strpbrk(testString, a) != &testString[0]) {
505 if (u_strpbrk(testString, dc) != &testString[2]) {
508 if (u_strpbrk(testString, cd) != &testString[2]) {
511 if (u_strpbrk(testString, cdh) != &testString[2]) {
514 if (u_strpbrk(testString, f) != NULL) {
517 if (u_strpbrk(testString, fg) != NULL) {
520 if (u_strpbrk(testString, gf) != NULL) {
523 if (u_strpbrk(testString, empty) != NULL) {
568 if (u_strcspn(testString, a) != 0) {
571 if (u_strcspn(testString, dc) != 2) {
574 if (u_strcspn(testString, cd) != 2) {
577 if (u_strcspn(testString, cdh) != 2) {
580 if (u_strcspn(testString, f) != u_strlen(testString)) {
583 if (u_strcspn(testString, fg) != u_strlen(testString)) {
586 if (u_strcspn(testString, gf) != u_strlen(testString)) {
629 if (u_strspn(testString, a) != 1) {
632 if (u_strspn(testString, ab) != 2) {
635 if (u_strspn(testString, ba) != 2) {
638 if (u_strspn(testString, f) != 0) {
641 if (u_strspn(testString, dc) != 0) {
644 if (u_strspn(testString, abcd) != u_strlen(testString)) {
647 if (u_strspn(testString, empty) != 0) {