Home
last modified time | relevance | path

Searched refs:RuleChain (Results 1 – 5 of 5) 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.h38 class RuleChain; variable
172 RuleChain *currentChain;
347 class RuleChain : public UMemory {
350 RuleChain *fNext = nullptr;
359 RuleChain() = default;
360 RuleChain(const RuleChain& other);
361 virtual ~RuleChain();
371 PluralKeywordEnumeration(RuleChain *header, UErrorCode& status);
Dplurrule.cpp112 mRules = new RuleChain(*other.mRules); in operator =()
397 RuleChain *rc = rulesForKeyword(keyword); in getSamples()
409 RuleChain *PluralRules::rulesForKeyword(const UnicodeString &keyword) const { in rulesForKeyword()
410 RuleChain *rc; in rulesForKeyword()
598 RuleChain *newChain = new RuleChain; in parse()
609 RuleChain *insertAfter = prules->mRules; in parse()
916 RuleChain::RuleChain(const RuleChain& other) : in RuleChain() function in RuleChain
935 this->fNext = new RuleChain(*other.fNext); in RuleChain()
946 RuleChain::~RuleChain() { in ~RuleChain()
952 RuleChain::select(const IFixedDecimal &number) const { in select()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/junit/rules/
DExpectedLogMessagesRuleTest.java8 import org.junit.rules.RuleChain;
18 @Rule public RuleChain chain = RuleChain.outerRule(expectedException).around(rule);
/external/icu/icu4c/source/i18n/unicode/
Dplurrule.h47 class RuleChain; variable
492 RuleChain *mRules;
498 RuleChain *rulesForKeyword(const UnicodeString &keyword) const;