Home | History | Annotate | Download | only in intltest

Lines Matching refs:p3

2504     int    p0, p1, p2, p3;    // Indices of the significant code points around the
2510 UChar32 c0, c1, c2, c3; // The code points at p0, p1, p2 & p3.
2520 p0 = p1 = p2 = p3 = prevPos;
2529 p2 = p3; c2 = c3;
2531 // Advancd p3 by one codepoint
2532 p3 = fText->moveIndex32(p3, 1);
2533 c3 = fText->char32At(p3);
2736 int p0, p1, p2, p3; // Indices of the significant code points around the
2742 UChar32 c0, c1, c2, c3; // The code points at p0, p1, p2 & p3.
2752 p0 = p1 = p2 = p3 = prevPos;
2761 p2 = p3; c2 = c3;
2763 // Advancd p3 by X(Extend | Format)* Rule 4
2766 p3 = fText->moveIndex32(p3, 1);
2767 c3 = fText->char32At(p3);
3061 int p0, p1, p2, p3; // Indices of the significant code points around the
3067 UChar32 c0, c1, c2, c3; // The code points at p0, p1, p2 & p3.
3078 p0 = p1 = p2 = p3 = prevPos;
3087 p2 = p3; c2 = c3;
3089 // Advancd p3 by X(Extend | Format)* Rule 4
3090 p3 = moveForward(p3);
3091 c3 = cAt(p3);