/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/chromium-trace/catapult/telemetry/third_party/web-page-replay/rules/ |
rule.py | 17 class Rule(object): 18 """An optional base class for rule implementations. 25 """Returns True if the name matches this rule.""" 29 """Invokes this rule with the given args. 32 return_value: the prior rule's return_value (if any).
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/ |
IViolationsOutput.java | 17 * Call-back interface which is used to report rule violations to. 23 * Called for every rule violation. 26 * node which violates a rule 27 * @param rule 28 * rule which is violated 34 void onViolation(ICoverageNode node, Rule rule, Limit limit, String message);
|
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...] |
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
Rule.java | 19 public class Rule extends PatternElement
|
PatternElement.java | 36 String result = (pattern instanceof Rule) ? ((Rule)pattern).getResult() : "";
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
OptRomInfStatement.py | 92 # Get the rule of how to generate Ffs file
94 Rule = self.__GetRule__()
96 #FileType = Ffs.Ffs.ModuleTypeToFileType[Rule.ModuleType]
98 # For the rule only has simpleFile
100 if isinstance (Rule, RuleSimpleFile.RuleSimpleFile) :
101 EfiOutputList = self.__GenSimpleFileSection__(Rule)
104 # For Rule has ComplexFile
106 elif isinstance(Rule, RuleComplexFile.RuleComplexFile):
107 EfiOutputList = self.__GenComplexFileSection__(Rule)
112 # Get .efi files according to simple rule. [all...] |
/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/lexertest-simple/ |
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/treerewrite/ |
TreeRewriteLexer.h | 14 #pragma mark Rule return scopes start 15 #pragma mark Rule return scopes end
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/ |
Rules.java | 20 import com.google.currysrc.api.process.Rule; 32 List<Rule> getRuleList(File file);
|
/external/mockito/src/test/java/org/mockito/internal/progress/ |
TimesTest.java | 8 import org.junit.Rule; 16 @Rule
|
/frameworks/support/compat/tests/java/android/support/v4/ |
BaseInstrumentationTestCase.java | 20 import android.support.test.rule.ActivityTestRule; 22 import org.junit.Rule; 27 @Rule
|
/frameworks/support/core-ui/tests/java/android/support/v4/ |
BaseInstrumentationTestCase.java | 20 import android.support.test.rule.ActivityTestRule; 22 import org.junit.Rule; 27 @Rule
|
/frameworks/support/design/tests/src/android/support/design/widget/ |
BaseInstrumentationTestCase.java | 20 import android.support.test.rule.BootlegActivityTestRule; 23 import org.junit.Rule; 28 @Rule
|
/build/kati/ |
rule.h | 32 class Rule { 34 Rule(); 63 // If |rule| is not NULL, |rule_var| is filled. If the expression 69 Rule** rule, RuleVarAssignment* rule_var);
|
/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
|
/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);
|
/cts/hostsidetests/jvmti/base/app/src/android/jvmti/cts/ |
JvmtiTestBase.java | 19 import android.support.test.rule.ActivityTestRule; 23 import org.junit.Rule; 42 @Rule
|
/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/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
|