Home
last modified time | relevance | path

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

/external/junit/src/main/java/org/junit/rules/
DRuleChain.java58 public class RuleChain implements TestRule { class
59 private static final RuleChain EMPTY_CHAIN = new RuleChain(
70 public static RuleChain emptyRuleChain() { in emptyRuleChain()
81 public static RuleChain outerRule(TestRule outerRule) { in outerRule()
85 private RuleChain(List<TestRule> rules) { in RuleChain() method in RuleChain
97 public RuleChain around(TestRule enclosedRule) { in around()
104 return new RuleChain(rulesOfNewChain); in around()
/external/icu/icu4c/source/i18n/
Dplurrule_impl.h44 class RuleChain; variable
179 RuleChain *currentChain;
370 class RuleChain : public UMemory {
373 RuleChain *fNext = nullptr;
382 RuleChain() = default;
383 RuleChain(const RuleChain& other);
384 virtual ~RuleChain();
394 PluralKeywordEnumeration(RuleChain *header, UErrorCode& status);
Dplurrule.cpp128 mRules = new RuleChain(*other.mRules); in operator =()
488 RuleChain *rc = rulesForKeyword(keyword); in getSamples()
513 RuleChain *rc = rulesForKeyword(keyword); in getSamples()
525 RuleChain *PluralRules::rulesForKeyword(const UnicodeString &keyword) const { in rulesForKeyword()
526 RuleChain *rc; in rulesForKeyword()
715 RuleChain *newChain = new RuleChain; in parse()
726 RuleChain *insertAfter = prules->mRules; in parse()
1033 RuleChain::RuleChain(const RuleChain& other) : in RuleChain() function in RuleChain
1052 this->fNext = new RuleChain(*other.fNext); in RuleChain()
1063 RuleChain::~RuleChain() { in ~RuleChain()
[all …]
/external/icu/libicu/cts_headers/
Dplurrule_impl.h44 class RuleChain; variable
179 RuleChain *currentChain;
370 class RuleChain : public UMemory {
373 RuleChain *fNext = nullptr;
382 RuleChain() = default;
383 RuleChain(const RuleChain& other);
384 virtual ~RuleChain();
394 PluralKeywordEnumeration(RuleChain *header, UErrorCode& status);
/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/libicu/cts_headers/unicode/
Dplurrule.h50 class RuleChain; variable
571 RuleChain *mRules;
578 RuleChain *rulesForKeyword(const UnicodeString &keyword) const;
/external/icu/icu4c/source/i18n/unicode/
Dplurrule.h50 class RuleChain; variable
571 RuleChain *mRules;
578 RuleChain *rulesForKeyword(const UnicodeString &keyword) const;
/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/junit4/
DTestFailureValidation.kt19 ): RuleChain = in TestFailureValidation()
20 RuleChain in TestFailureValidation()