Home | History | Annotate | Download | only in i18n

Lines Matching full:token

285     UnicodeString token;
298 mParser->getNextToken(ruleData, &ruleIndex, token, type, status);
340 curAndConstraint->opNum=getNumberValue(token);
344 curAndConstraint->rangeLow=getNumberValue(token);
347 curAndConstraint->rangeHigh=getNumberValue(token);
366 ruleChain->keyword = token;
376 PluralRules::getNumberValue(const UnicodeString& token) const {
380 i = token.extract(0, token.length(), digits, ARRAY_SIZE(digits), US_INV);
963 UnicodeString& token,
983 token=UnicodeString(ruleData, *ruleIndex, curIndex-*ruleIndex);
986 getKeyType(token, type, status);
996 token=UnicodeString(ruleData, *ruleIndex, curIndex-*ruleIndex);
999 getKeyType(token, type, status);
1028 token=UnicodeString(ruleData, *ruleIndex, curIndex-*ruleIndex);
1031 getKeyType(token, type, status);
1048 token=UnicodeString(ruleData, *ruleIndex, curIndex-*ruleIndex);
1049 getKeyType(token, type, status);
1093 RuleParser::getKeyType(const UnicodeString& token, tokenType& keyType, UErrorCode &status)
1100 else if (token==PK_VAR_N) {
1103 else if (token==PK_IS) {
1106 else if (token==PK_AND) {
1109 else if (token==PK_IN) {
1112 else if (token==PK_WITHIN) {
1115 else if (token==PK_NOT) {
1118 else if (token==PK_MOD) {
1121 else if (token==PK_OR) {
1124 else if ( isValidKeyword(token) ) {
1133 RuleParser::isValidKeyword(const UnicodeString& token) {
1134 if ( token.length()==0 ) {
1137 if ( idStartFilter->contains(token.charAt(0) )==TRUE ) {
1139 for (i=1; i< token.length(); i++) {
1140 if (idContinueFilter->contains(token.charAt(i))== FALSE) {