/prebuilts/tools/common/offline-m2/org/ow2/asm/asm-debug-all/5.0.1/ |
asm-debug-all-5.0.1.jar | |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCParser.m | 227 #pragma mark Dynamic Rule Scopes 229 #pragma mark Rule Return Scopes start 230 //#pragma mark Rule return scopes start 233 #pragma mark Rule return scopes start 238 #pragma mark Dynamic Rule Scopes 397 // token+rule list labels 492 // token+rule list labels 542 // token+rule list labels 576 // token+rule list labels 691 // token+rule list label [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCTP.m | 144 #pragma mark Dynamic Rule Scopes 146 #pragma mark Rule Return Scopes start 165 //#pragma mark Rule return scopes start 168 #pragma mark Rule return scopes start 173 #pragma mark Dynamic Rule Scopes 326 // token+rule list labels 441 // token+rule list labels 494 // token+rule list labels 527 // token+rule list labels 611 // token+rule list label [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ActionTranslator.g | 50 Rule enclosingRule; 148 Rule r = grammar.getRule(ruleName); 160 Rule scopeRule = grammar.getRule(scopeName); 176 /** $x.y x is enclosing rule, y is a return value, parameter, or 188 //{System.out.println("found \$rule.attr");} 232 //{System.out.println("found \$rule.attr");} 285 * If in lexer grammar, only translate for strings and tokens (rule refs) 335 // This asserts that if it's a label or a ref to a rule proceed but only if the attribute 336 // is valid for that rule's scope 364 // This asserts that if it's a label or a ref to a rule proceed but only if the attribut [all...] |
ANTLR.g | 74 RULE; 123 import org.antlr.tool.Rule; 330 // if they want backtracking and it's not a lexer rule in combined grammar 338 Rule.getRuleType(currentRuleName) == Grammar.LEXER) && 388 * ^(RULE[block,"rule"] ID["name"] {modifier} ARG["ARG"] RET["RET"] SCOPE["scope"] {block} EOR[EOBAST,"<end-of-rule>"]) 390 GrammarAST rule = (GrammarAST)adaptor.create( RULE, block.getToken(), "rule" ); [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
Rule.java | 38 /** Combine the info associated with a rule. */ 39 public class Rule { 46 /** This rule's options */ 57 /** The AST representing the whole rule */ 68 /** The return values of a rule and predefined rule attributes */ 73 /** the attributes defined with "scope {...}" inside a rule */ 76 /** A list of scope names (String) used by this rule */ 79 /** Exceptions that this rule can throw */ 94 /** A list of all LabelElementPair attached to rule references like f=field * [all...] |
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
KeyTest.java | 41 import org.junit.Rule; 55 @Rule public CompilationRule compilationRule = new CompilationRule();
|
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/ |
MockWebServerTest.java | 35 import org.junit.Rule; 48 @Rule public final MockWebServer server = new MockWebServer();
|
/external/webrtc/ |
PRESUBMIT.py | 297 from rules import Rule 317 if rule_type == Rule.DISALLOW:
|
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/ |
BaseCompilationTest.java | 23 import org.junit.Rule; 56 @Rule
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
MockLooperTest.java | 33 import org.junit.Rule; 52 @Rule
|
/packages/apps/Dialer/tests/src/com/android/dialer/voicemail/ |
VoicemailAsyncTaskUtilTest.java | 40 import org.junit.Rule; 100 @Rule
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableParser.m | 161 #pragma mark Dynamic Rule Scopes 163 #pragma mark Rule return scopes start 272 // token+rule list labels 338 // token+rule list labels 375 // token+rule list labels 470 // token+rule list labels 530 // token+rule list labels 563 // token+rule list labels
|
/external/parameter-framework/upstream/tools/coverage/ |
coverage.py | 38 - rule 370 class Rule(Element): 381 self.debug("Rule applicability: %s" % isApplicable) 388 """Return the rule applicability depending on children applicability. 395 class CriterionRule(FromDomElement, DomPopulatedElement, Rule): 420 class CompoundRule(FromDomElement, DomPopulatedElement, Rule): 448 class RootRule(DomPopulatedElement, Rule): 455 # A configuration can only have one or no rule 499 "rule:\n%s\n" 536 self.debug("Applied but rule does not match current [all...] |
/external/bison/doc/ |
refcard.tex | 384 Rule definition 1 386 Rule definition {\it n} 397 \section {Rule definitions}
|
/external/bison/data/ |
glr.c | 132 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 134 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 152 # b4_rhs_location(RULE-LENGTH, NUM) 154 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols 323 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */ 326 accessed by $0, $-1, etc., in any rule. */ 343 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in 356 /* YYRLINE[YYN] -- source line where rule number YYN was defined. * [all...] |
yacc.c | 145 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 147 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 165 # b4_rhs_location(RULE-LENGTH, NUM) 167 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols 631 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in 644 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ 669 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ 675 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. * [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
InterceptorTest.java | 38 import org.junit.Rule; 48 @Rule public MockWebServer server = new MockWebServer();
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
BaseRecyclerViewInstrumentationTest.java | 25 import org.junit.Rule; 31 import android.support.test.rule.ActivityTestRule; 74 @Rule [all...] |
/build/kati/ |
eval.cc | 27 #include "rule.h" 115 Error("*** missing rule before commands."); 119 Rule* rule; local 121 ParseRule(loc_, expr, stmt->term, &rule, &rule_var); 123 if (rule) { 125 rule->cmds.push_back(stmt->after_term); 128 LOG("Rule: %s", rule->DebugString().c_str()); 129 rules_.push_back(rule); [all...] |
/external/google-breakpad/src/common/dwarf/ |
dwarf2reader.h | 471 // For example, the rule for recovering the return address (the "ra" 748 class Rule [all...] |
/external/junit/src/org/junit/runners/ |
ParentRunner.java | 16 import org.junit.Rule; 196 * @return a RunRules statement if any class-level {@link Rule}s are
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/ |
Tool.java | 699 Rule r = (Rule) itr.next(); 711 protected void writeDOTFile(Grammar g, Rule r, String dot) throws IOException { 736 System.err.println(" -trace generate a recognizer that traces rule entry/exit"); 737 System.err.println(" -nfa generate an NFA for each rule"); 761 System.err.println(" -Xm m max number of rule invocations during conversion [" + NFAContext.MAX_SAME_RULE_INVOCATIONS_PER_NFA_CONFIG_STACK + "]"); [all...] |
/external/fonttools/Lib/fontTools/ |
merge.py | 542 self.Rule = ChainTyp+'Rule' 545 self.Rule = ChainTyp+'ClassRule' 568 for r in getattr(rs, c.Rule):
|
subset.py | 528 self.Rule = ChainTyp+'Rule' 534 self.Rule = ChainTyp+'ClassRule' 570 for r in getattr(rss[i], c.Rule): 596 for r in getattr(rss[i], c.Rule): 649 ss = getattr(rs, c.Rule) 653 setattr(rs, c.Rule, ss) 656 rss = [rs for rs in rss if rs and getattr(rs, c.Rule)] 680 ss = getattr(rs, c.Rule) 684 setattr(rs, c.Rule, ss [all...] |