HomeSort by relevance Sort by last modified time
    Searched refs:Rule (Results 26 - 50 of 373) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/tests/java/android/support/v4/
BaseInstrumentationTestCase.java 20 import android.support.test.rule.ActivityTestRule;
22 import org.junit.Rule;
27 @Rule
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
BundleChecker.java 34 private final Collection<Rule> bundleRules;
35 private final Collection<Rule> packageRules;
36 private final Collection<Rule> classRules;
37 private final Collection<Rule> sourceFileRules;
38 private final Collection<Rule> methodRules;
45 public BundleChecker(final Collection<Rule> rules,
49 this.bundleRules = new ArrayList<Rule>();
50 this.packageRules = new ArrayList<Rule>();
51 this.classRules = new ArrayList<Rule>();
52 this.sourceFileRules = new ArrayList<Rule>();
    [all...]
  /build/kati/
rule.h 30 class Rule {
32 Rule();
61 // If |rule| is not NULL, |rule_var| is filled.
63 Rule** rule, RuleVarAssignment* rule_var);
dep.cc 29 #include "rule.h"
48 void ApplyOutputPattern(const Rule& r,
75 Entry(const Rule* r, StringPiece s)
76 : rule(r), suffix(s) {
78 const Rule* rule; member in struct:__anon1258::RuleTrie::Entry
89 void Add(StringPiece name, const Rule* rule) {
91 rules_.push_back(Entry(rule, name));
99 p.first->second->Add(name.substr(1), rule);
    [all...]
dep.h 27 class Rule;
56 const vector<const Rule*>& rules,
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableParser.h 44 #pragma mark Dynamic Rule Scopes
45 #pragma mark Rule Return Scopes start
46 #pragma mark Rule return scopes end
SymbolTableLexer.h 21 #pragma mark Rule return scopes start
22 #pragma mark Rule return scopes end
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
RuleConfiguration.java 21 import org.jacoco.report.check.Rule;
24 * Wrapper for {@link Rule} objects to allow Maven style includes/excludes lists
29 final Rule rule; field in class:RuleConfiguration
35 rule = new Rule();
40 * element type this rule applies to
44 rule.setElement(ElementType.valueOf(element));
52 rule.setIncludes(StringUtils.join(includes.iterator(), ":"));
61 rule.setExcludes(StringUtils.join(excludes.iterator(), ":"))
    [all...]
  /frameworks/base/tools/split-select/
SplitSelector_test.cpp 56 KeyedVector<SplitDescription, sp<Rule> > rules = selector.getRules();
59 sp<Rule> rule = rules[idx]; local
60 ASSERT_TRUE(rule != NULL);
65 Rule expectedRule(test::AndRule()
66 .add(test::GtRule(Rule::SDK_VERSION, 3))
67 .add(test::GtRule(Rule::SCREEN_DENSITY, 180))
68 .add(test::LtRule(Rule::SCREEN_DENSITY, 263)));
69 EXPECT_RULES_EQ(rule, expectedRule);
Rule.cpp 17 #include "Rule.h"
32 Rule::Rule(const Rule& rhs)
42 String8 Rule::toJson(int indent) const {
177 sp<Rule> Rule::simplify(sp<Rule> rule) {
178 if (rule->op != AND_SUBRULES && rule->op != OR_SUBRULES)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
Rule.java 37 * ANTLR v3 Rule Information.
40 public class Rule extends DefaultListModel {
44 public Rule(String name) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.h 35 #pragma mark Dynamic Rule Scopes
36 #pragma mark Rule Return Scopes start
80 /** Demonstrates how semantic predicates get hoisted out of the rule in
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
CoreTutorialTest.java 16 import org.junit.Rule;
24 @Rule
  /external/jarjar/src/main/com/tonicsystems/jarjar/
PatternElement.java 36 String result = (pattern instanceof Rule) ? ((Rule)pattern).getResult() : "";
  /external/jarjar/src/test/com/tonicsystems/jarjar/
GenericsTest.java 28 Rule rule = new Rule(); local
29 rule.setPattern("java.lang.String");
30 rule.setResult("com.tonicsystems.String");
31 RemappingClassTransformer t = new RemappingClassTransformer(new PackageRemapper(Arrays.asList(rule), false));
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Rule.java 24 public interface Rule {
27 * Returns {@code true} if this rule should be applied to the supplied {@link CompilationUnit}.
38 /** Returns {@code true} if the rule must make a modification to be considered successful. */
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
Icu4jTransform.java 26 import com.google.currysrc.api.process.Rule;
    [all...]
Icu4jBasicTransform.java 23 import com.google.currysrc.api.process.Rule;
56 private final List<Rule> rules;
74 public List<Rule> getRuleList(File ignored) {
88 private static List<Rule> createTransformRules() {
89 List<Rule> rules =
Icu4jTestsTransform.java 23 import com.google.currysrc.api.process.Rule;
57 private final List<Rule> rules;
75 public List<Rule> getRuleList(File ignored) {
89 private static List<Rule> createTransformRules() {
90 List<Rule> rules =
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
CheckAndroidIcu4jSourceRules.java 23 import com.google.currysrc.api.process.Rule;
38 private final List<Rule> rules;
45 rules = Lists.<Rule>newArrayList(
51 public List<Rule> getRuleList(File file) {
  /external/junit/src/org/junit/
Rule.java 15 * annotated {@link Rule}s on a class, they will be applied in an order
24 * &#064;Rule
45 public @interface Rule {
  /external/junit/src/org/junit/rules/
MethodRule.java 3 import org.junit.Rule;
11 * {@link Rule} in turn, and each may return a substitute or modified
12 * {@link Statement}, which is passed to the next {@link Rule}, if any. For
31 * test-running rule.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end

Completed in 546 milliseconds

12 3 4 5 6 7 8 91011>>