Home | History | Annotate | Download | only in i18n

Lines Matching defs:success

1641                 // We really are at the end of input.  Success.
1653 // At new-line at end of input. Success
1665 break; // At CR/LF at end of input. Success
1677 // At last char of input. Success if it's a new line.
1684 // Off the end of input. Success.
1699 // We really are at the end of input. Success.
1724 // We really are at the end of input. Success.
1748 // We are at the start input. Success.
1756 // It's a new-line. ^ is true. Success.
1770 // We are at the start input. Success.
1785 UBool success = isWordBoundary(fp->fInputIdx);
1786 success ^= (opValue != 0); // flip sense for \B
1787 if (!success) {
1796 UBool success = isUWordBoundary(fp->fInputIdx);
1797 success ^= (opValue != 0); // flip sense for \B
1798 if (!success) {
1815 UBool success = (ctype == U_DECIMAL_DIGIT_NUMBER);
1816 success ^= (opValue != 0); // flip sense for \D
1817 if (success) {
1934 // 0: success if input char is in set.
1935 // 1: success if input char is not in set.
1942 UBool success = ((opValue & URX_NEG_SET) == URX_NEG_SET);
1950 success = !success;
1955 success = !success;
1958 if (!success) {
2403 // Success. Advance the current input position.