Home
last modified time | relevance | path

Searched refs:RuleChain (Results 1 – 4 of 4) sorted by relevance

/external/junit/src/main/java/org/junit/rules/
DRuleChain.java43 public class RuleChain implements TestRule { class
44 private static final RuleChain EMPTY_CHAIN = new RuleChain(
55 public static RuleChain emptyRuleChain() { in emptyRuleChain()
66 public static RuleChain outerRule(TestRule outerRule) { in outerRule()
70 private RuleChain(List<TestRule> rules) { in RuleChain() method in RuleChain
81 public RuleChain around(TestRule enclosedRule) { in around()
85 return new RuleChain(rulesOfNewChain); in around()
/external/icu/icu4c/source/i18n/
Dplurrule_impl.h36 class RuleChain; variable
164 RuleChain *currentChain;
258 class RuleChain : public UMemory {
261 RuleChain *fNext;
269 RuleChain();
270 RuleChain(const RuleChain& other);
271 virtual ~RuleChain();
281 PluralKeywordEnumeration(RuleChain *header, UErrorCode& status);
Dplurrule.cpp98 mRules = new RuleChain(*other.mRules); in operator =()
376 RuleChain *rc = rulesForKeyword(keyword); in getSamples()
388 RuleChain *PluralRules::rulesForKeyword(const UnicodeString &keyword) const { in rulesForKeyword()
389 RuleChain *rc; in rulesForKeyword()
567 RuleChain *newChain = new RuleChain; in parse()
578 RuleChain *insertAfter = prules->mRules; in parse()
873 RuleChain::RuleChain(): fKeyword(), fNext(NULL), ruleHeader(NULL), fDecimalSamples(), fIntegerSampl… in RuleChain() function in RuleChain
877 RuleChain::RuleChain(const RuleChain& other) : in RuleChain() function in RuleChain
885 this->fNext = new RuleChain(*other.fNext); in RuleChain()
889 RuleChain::~RuleChain() { in ~RuleChain()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dplurrule.h45 class RuleChain; variable
496 RuleChain *mRules;
502 RuleChain *rulesForKeyword(const UnicodeString &keyword) const;