Searched defs:Rule (Results 1 - 25 of 50) sorted by relevance

12

/external/junit/src/main/java/org/junit/
H A DRule.java19 * annotated {@link Rule}s on a class, they will be applied in order of fields first, then methods.
30 * @Rule
47 * @Rule
68 public @interface Rule { interface
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRule.java19 public class Rule extends PatternElement class in inherits:PatternElement
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java37 * ANTLR v3 Rule Information.
40 public class Rule extends DefaultListModel { class in inherits:DefaultListModel
44 public Rule(String name) { method in class:Rule
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
H A DRule.java24 public interface Rule { interface
/external/pdfium/
H A DPRESUBMIT.py52 from rules import Rule namespace
75 if rule_type == Rule.DISALLOW:
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java47 class Rule { class in class:SerializedGrammar
50 public Rule(String name, Block block) { method in class:SerializedGrammar.Rule
115 Rule r = readRule(in);
121 protected Rule readRule(DataInputStream in) throws IOException {
130 return new Rule(name, b);
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module_unittest.cc132 class Rule: public RuleFixture, public Test { }; class in inherits:RuleFixture,Test
134 TEST_F(Rule, UndefinedRule) {
144 TEST_F(Rule, RegisterWithEmptyName) {
155 TEST_F(Rule, SameValueRule) {
166 TEST_F(Rule, OffsetRule) {
179 TEST_F(Rule, OffsetRuleNegative) {
191 TEST_F(Rule, ValOffsetRule) {
207 TEST_F(Rule, RegisterRule) {
218 TEST_F(Rule, ExpressionRule) {
229 TEST_F(Rule, ValExpressionRul
[all...]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
H A DRule.java24 public final class Rule { class
35 * Creates a new Rule without limits.
37 public Rule() { method in class:Rule
/external/v8/
H A DPRESUBMIT.py103 from rules import Rule namespace
123 if rule_type == Rule.DISALLOW:
/external/webrtc/
H A DPRESUBMIT.py297 from rules import Rule namespace
317 if rule_type == Rule.DISALLOW:
/external/python/cpython2/Doc/tools/extensions/
H A Dsuspicious.py62 class Rule: class in inherits:
206 rule = Rule(docname, lineno, issue, text)
/external/python/cpython3/Doc/tools/extensions/
H A Dsuspicious.py62 class Rule: class in inherits:
206 rule = Rule(docname, lineno, issue, text)
/external/webrtc/webrtc/base/
H A Dfirewallsocketserver.h78 struct Rule { struct in class:rtc::FirewallSocketServer
85 std::vector<Rule> rules_;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp206 TaintPropagationRule Rule = llvm::StringSwitch<TaintPropagationRule>(Name) local
227 if (!Rule.isNull())
228 return Rule;
251 if (Rule.isNull()) {
304 TaintPropagationRule Rule =
306 if (!Rule.isNull()) {
307 State = Rule.process(CE, C);
/external/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp277 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, argument
279 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size())))
282 C.advance(Rule.size());
290 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, argument
292 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size())))
295 C.advance(Rule.size());
300 unsigned StringOffset = Rule.size() + Number.size();
331 const StringRef Rule local
340 const StringRef Rule = "%ir-block."; local
350 const StringRef Rule = "%ir."; local
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/xml/
H A DASMContentHandler.java381 Rule r = (Rule) RULES.match(match);
409 Rule r = (Rule) RULES.match(match);
523 * Rule
525 protected abstract class Rule { class in class:ASMContentHandler
705 private final class ClassRule extends Rule {
725 private final class SourceRule extends Rule {
738 private final class InterfaceRule extends Rule {
749 private final class InterfacesRule extends Rule {
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DRule.java39 public class Rule { class
160 public Rule(Grammar grammar, method in class:Rule
567 * method and hashCode use the String name as the key for Rule objects.
569 return this.name.equals(((Rule)other).name);
/external/parameter-framework/upstream/tools/coverage/
H A Dcoverage.py370 class Rule(Element): class in inherits:Element
381 self.debug("Rule applicability: %s" % isApplicable)
395 class CriterionRule(FromDomElement, DomPopulatedElement, Rule):
420 class CompoundRule(FromDomElement, DomPopulatedElement, Rule):
448 class RootRule(DomPopulatedElement, Rule):
/external/parameter-framework/upstream/tools/xmlGenerator/
H A DEddParser.py282 childRules = self.extractChildrenByClass([Operator, Rule])
369 class Rule (Element) : class in inherits:Element
391 class Operator (Rule) :
402 childWhiteList = ["Rule", "Operator"]
413 rules = self.extractChildrenByClass([Rule, Operator])
431 childWhiteList = ["Rule", "Operator", "Path", "GroupPath"]
447 self.addChildren(configuration.extractChildrenByClass([Operator, Rule]), append=False)
494 ruleChildren = self.extractChildrenByClass([Rule, Operator])
534 childWhiteList = ["Rule", "Operator", "GroupConfiguration", "Configuration", "GroupPath"]
582 childWhiteList = ["Configuration", "GroupConfiguration", "Rule", "Operato
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc857 // each '*Rule' member function in CallFrameInfo::Handler.
869 class CallFrameInfo::Rule { class in class:CallFrameInfo
871 virtual ~Rule() { }
882 virtual bool operator==(const Rule &rhs) const = 0;
884 bool operator!=(const Rule &rhs) const { return ! (*this == rhs); }
887 virtual Rule *Copy() const = 0;
898 // Rule: the value the register had in the caller cannot be recovered.
899 class CallFrameInfo::UndefinedRule: public CallFrameInfo::Rule {
906 bool operator==(const Rule &rhs) const {
912 Rule *Cop
[all...]
/external/robolectric/v1/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java376 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null);
1511 private static Rule parseRule(String description) throws ParseException {
1569 return new Rule(keyword, constraint, integerSamples, decimalSamples);
1587 Rule rule = parseRule(rules[i].trim());
1771 * Implementation of Rule that uses a constraint.
1774 private static class Rule implements Serializable { class in class:PluralRules
1775 // TODO - Findbugs: Class android.icu.text.PluralRules$Rule defines non-transient
1783 public Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecimalSamples decimalSamples) { method in class:PluralRules.Rule
1791 public Rule an
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java377 private static final Rule DEFAULT_RULE = new Rule("other", NO_CONSTRAINT, null, null);
1450 private static Rule parseRule(String description) throws ParseException {
1508 return new Rule(keyword, constraint, integerSamples, decimalSamples);
1526 Rule rule = parseRule(rules[i].trim());
1710 * Implementation of Rule that uses a constraint.
1713 private static class Rule implements Serializable { class in class:PluralRules
1714 // TODO - Findbugs: Class com.ibm.icu.text.PluralRules$Rule defines non-transient
1722 public Rule(String keyword, Constraint constraint, FixedDecimalSamples integerSamples, FixedDecimalSamples decimalSamples) { method in class:PluralRules.Rule
1730 public Rule an
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh1172 struct Rule struct in namespace:OT
1281 OffsetArrayOf<Rule>
1282 rule; /* Array of Rule tables
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-xml-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/xml/ASMContentHandler$AnnotationDefaultRule.class " package org.objectweb ...

Completed in 903 milliseconds

12