HomeSort by relevance Sort by last modified time
    Searched refs:fRules (Results 1 - 19 of 19) sorted by null

  /external/icu/icu4c/source/common/
rbbirb.h 58 const UnicodeString &fRules;
76 RBBISymbolTable(RBBIRuleScanner *, const UnicodeString &fRules, UErrorCode &status);
127 const UnicodeString &fRules; // The rule string that we are compiling
rbbiscan.cpp 142 fSymbolTable = new RBBISymbolTable(this, rb->fRules, *rb->fStatus);
289 fRB->fRules.extractBetween(RHSExprNode->fFirstPos, RHSExprNode->fLastPos, RHSExprNode->fText);
447 fRB->fRules.extractBetween(n->fFirstPos, n->fLastPos, n->fText);
461 fRB->fRules.extractBetween(n->fFirstPos, n->fLastPos, n->fText);
474 fRB->fRules.extractBetween(n->fFirstPos, n->fLastPos, n->fText);
503 fRB->fRules.extractBetween(n->fFirstPos, n->fLastPos, n->fText);
518 UnicodeString opt(fRB->fRules, fOptionStart, fScanIndex-fOptionStart);
558 fRB->fRules.extractBetween(n->fFirstPos+1, n->fLastPos, n->fText);
827 if (fNextIndex >= fRB->fRules.length()) {
830 ch = fRB->fRules.char32At(fNextIndex)
    [all...]
rbbirb.cpp 48 : fRules(rules)
149 UnicodeString strippedRules((const UnicodeString&)RBBIRuleScanner::stripRules(fRules));
rbbistbl.cpp 42 :fRules(rules), fRuleScanner(rs), ffffString(UChar(0xffff))
  /external/icu/icu4c/source/i18n/
decimfmtimpl.cpp 55 fRules(NULL),
82 fRules(NULL),
105 fRules(NULL),
118 if (other.fRules != NULL) {
119 fRules = new PluralRules(*other.fRules);
120 if (fRules == NULL && U_SUCCESS(status)) {
155 if (fRules != NULL && other.fRules != NULL) {
156 *fRules = *other.fRules
    [all...]
decimfmtimpl.h 383 // fMonetary, fRules, fAffixParser, fCurrencyAffixInfo,
399 PluralRules *fRules;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RBBIRuleScanner.java 120 fSymbolTable = new RBBISymbolTable(this, rb.fRules);
219 // fRB.fRules.extractBetween(RHSExprNode.fFirstPos,
221 RHSExprNode.fText = fRB.fRules.substring(RHSExprNode.fFirstPos,
349 n.fText = fRB.fRules.substring(n.fFirstPos, n.fLastPos);
360 n.fText = fRB.fRules.substring(n.fFirstPos, n.fLastPos);
371 n.fText = fRB.fRules.substring(n.fFirstPos, n.fLastPos);
396 n.fText = fRB.fRules.substring(n.fFirstPos, n.fLastPos);
410 String opt = fRB.fRules.substring(fOptionStart, fScanIndex);
447 n.fText = fRB.fRules.substring(n.fFirstPos + 1, n.fLastPos);
695 if (fNextIndex >= fRB.fRules.length())
    [all...]
RBBISymbolTable.java 17 String fRules;
36 fRules = rules;
RBBIRuleBuilder.java 29 String fRules; // The rule string that we are compiling
143 fRules = rules;
168 String strippedRules = RBBIRuleScanner.stripRules(fRules);