HomeSort by relevance Sort by last modified time
    Searched refs:Rule (Results 126 - 150 of 909) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
TestSuiteAdapter.java 39 private Rule currentRule;
50 currentRule = new Rule(name);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeRewriter.h 43 - (id)rule;
51 ANTLRfptr *rule; variable
60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeRewriter.h 43 - (id)rule;
51 ANTLRfptr *rule; variable
60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeRewriter.h 43 - (id)rule;
51 ANTLRfptr *rule; variable
60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.h 57 #pragma mark Dynamic Rule Scopes
58 #pragma mark Rule Return Scopes start
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
FuzzyLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h 65 #pragma mark Dynamic Rule Scopes
66 #pragma mark Rule Return Scopes start
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 77 #pragma mark Dynamic Rule Scopes
78 #pragma mark Rule Return Scopes start
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.h 33 #pragma mark Dynamic Rule Scopes
34 #pragma mark Rule Return Scopes start
119 - (TreeRewriteParser_rule_return *)rule;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RuleLabelScope.java 78 public Rule referencedRule;
80 public RuleLabelScope(Rule referencedRule, Token actionToken) {
85 /** If you label a rule reference, you can access that rule's
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ArbitraryMeasurmentInstrumentTest.java 26 import org.junit.Rule;
36 @Rule public CaliperTestWatcher runner = new CaliperTestWatcher();
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
ClassFileDumperTest.java 23 import org.junit.Rule;
32 @Rule
  /external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
ClassInfoTest.java 21 import org.junit.Rule;
29 @Rule
ExecDumpTest.java 24 import org.junit.Rule;
32 @Rule
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Rule.java 21 * A rule applies for a certain element type and can define any number of limits
24 public final class Rule {
35 * Creates a new Rule without limits.
37 public Rule() {
45 * @return element type this rule applies to
53 * element type this rule applies to
93 * @return list of {@link Limit}s configured for this rule
101 * list of {@link Limit}s configured for this rule
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
DirectorySourceFileLocatorTest.java 27 import org.junit.Rule;
36 @Rule
FileMultiReportOutputTest.java 22 import org.junit.Rule;
31 @Rule
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
BundleCheckerTest.java 42 private List<Rule> rules;
48 rules = new ArrayList<Rule>();
58 assertMessage("Rule violated for bundle Test: instructions covered ratio is 0.50, but expected minimum is 0.75");
66 assertMessage("Rule violated for package org.jacoco.example: instructions covered ratio is 0.50, but expected minimum is 0.75");
74 assertMessage("Rule violated for source file org/jacoco/example/FooClass.java: instructions covered ratio is 0.50, but expected minimum is 0.75");
82 assertMessage("Rule violated for class org.jacoco.example.FooClass: instructions covered ratio is 0.50, but expected minimum is 0.75");
90 assertMessage("Rule violated for method org.jacoco.example.FooClass.fooMethod(): instructions covered ratio is 0.50, but expected minimum is 0.75");
103 final Rule rule = new Rule(); local
122 final Rule rule = new Rule(); local
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
RulesFileParser.java 55 if (type.equals("rule")) {
58 Rule rule = new Rule(); local
59 rule.setResult(parts[2]);
60 element = rule;
  /external/mockito/src/test/java/org/mockito/internal/junit/
JUnitRuleTest.java 3 import org.junit.Rule;
18 @Rule public SafeJUnitRule rule = new SafeJUnitRule(MockitoJUnit.rule()); field in class:JUnitRuleTest
27 rule.expectFailure(RuntimeException.class, "foo");
33 rule.expectFailure(UnfinishedStubbingException.class);
40 //However, it was like that since the beginning of JUnit rule support
42 rule.expectFailure(RuntimeException.class, "foo");
  /external/mockito/src/test/java/org/mockitousage/junitrule/
LenientJUnitRuleTest.java 3 import org.junit.Rule;
18 throw new RuntimeException("Silent rule should not write anything to the logger");
23 @Rule public MockitoRule mockitoRule = new JUnitRule(explosiveLogger, Strictness.LENIENT);
StubbingWarningsMultiThreadingTest.java 3 import org.junit.Rule;
21 @Rule public SafeJUnitRule rule = new SafeJUnitRule(new JUnitRule(logger, Strictness.WARN)); field in class:StubbingWarningsMultiThreadingTest
26 rule.expectSuccess(new Runnable() {
44 rule.expectSuccess(new Runnable() {

Completed in 716 milliseconds

1 2 3 4 56 7 8 91011>>