HomeSort by relevance Sort by last modified time
    Searched refs:Rule (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
error_check.py 27 class Rule(object):
39 # Rule to raise all known errors.
54 'This includes ' + (', '.join(Rule.CLOSURE_RULES)) + '.')
58 ' - ' + Rule.ALL + ': enables all following errors.\n'
59 ' - ' + Rule.BLANK_LINES_AT_TOP_LEVEL + ': validates'
61 ' - ' + Rule.INDENTATION + ': checks correct '
63 ' - ' + Rule.WELL_FORMED_AUTHOR + ': validates the '
65 ' - ' + Rule.NO_BRACES_AROUND_INHERIT_DOC + ': '
67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces '
69 ' - ' + Rule.OPTIONAL_TYPE_MARKER + ': checks correct
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
RuleClosureTransition.java 30 import org.antlr.tool.Rule;
32 /** A transition used to reference another rule. It tracks two targets
34 * state that refers to the other rule. Conversion of an NFA that
35 * falls off the end of a rule will be able to figure out who invoked
36 * that rule because of these special transitions.
39 /** Ptr to the rule definition object for this rule ref */
40 public Rule rule; field in class:RuleClosureTransition
42 /** What node to begin computations following ref to rule */
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedParser.h 19 #pragma mark Dynamic Rule Scopes
20 #pragma mark Rule Return Scopes start
21 #pragma mark Rule return scopes end
CombinedLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuite.java 36 protected List<Rule> rules ;
44 rules = new ArrayList<Rule>();
52 public void addRule(Rule currentRule) {
53 if(currentRule == null) throw new IllegalArgumentException("Null rule");
57 // test rule name
58 public boolean hasRule(Rule rule) {
59 for(Rule r: rules) {
60 if(r.getName().equals(rule.getName())) {
71 public void setRules(List<Rule> newRules)
    [all...]
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/lexertest-simple/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/chromium/net/proxy/
proxy_bypass_rules.h 21 // Interface for an individual proxy bypass rule.
22 class Rule {
24 Rule();
25 virtual ~Rule();
27 // Returns true if |url| matches the rule.
30 // Returns a string representation of this rule. This is used both for
34 // Creates a copy of this rule. (Caller is responsible for deleting it)
35 virtual Rule* Clone() const = 0;
37 bool Equals(const Rule& rule) const
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
JavaTarget.java 32 import org.antlr.tool.Rule;
50 for (Rule rule : grammar.getRules()) {
51 rule.throwsSpec.add("RecognitionException");
53 Set<Rule> delegatedRules = grammar.getDelegatedRules();
55 for (Rule rule : delegatedRules) {
56 rule.throwsSpec.add("RecognitionException");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
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/treerewrite/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /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/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/chromium/chrome/browser/content_settings/
content_settings_provider.h 52 struct Rule {
53 Rule() {}
54 Rule(const ContentSettingsPattern& requesting_pattern,
66 typedef std::vector<Rule> Rules;
76 // |embedding_url| pair or CONTENT_SETTING_DEFAULT, if no rule applies. For
  /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
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end

Completed in 2479 milliseconds

1 2 3 4 5 6