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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Rule.py 2 # Rule object for generating FFS
20 ## Rule base class
23 class Rule(RuleClassObject):
  /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/junit/src/main/java/org/junit/
Rule.java 9 * Annotates fields that reference rules or methods that return a rule. A field must be public, not
19 * 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 {
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Rule.java 19 public class Rule extends PatternElement
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Rule.java 24 public interface Rule {
27 * Returns {@code true} if this rule should be applied to the supplied {@link CompilationUnit}.
38 /** Returns {@code true} if the rule must make a modification to be considered successful. */
  /build/soong/androidmk/parser/
ast.go 68 type Rule struct {
75 func (x *Rule) Dump() string {
80 return "rule: " + x.Target.Dump() + ": " + x.Prerequisites.Dump() + recipe
83 func (x *Rule) Pos() Pos { return x.Target.Pos() }
84 func (x *Rule) End() Pos { return Pos(int(x.RecipePos) + len(x.Recipe)) }
  /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) {
  /frameworks/base/tools/split-select/
Rule.cpp 17 #include "Rule.h"
32 Rule::Rule(const Rule& rhs)
42 String8 Rule::toJson(int indent) const {
177 sp<Rule> Rule::simplify(sp<Rule> rule) {
178 if (rule->op != AND_SUBRULES && rule->op != OR_SUBRULES)
    [all...]
Rule.h 29 struct Rule : public virtual android::RefBase {
30 inline Rule();
31 Rule(const Rule& rhs);
65 android::Vector<android::sp<Rule> > subrules;
69 static android::sp<Rule> simplify(android::sp<Rule> rule);
72 Rule::Rule()
    [all...]
  /build/blueprint/
ninja_writer.go 100 func (n *ninjaWriter) Rule(name string) error {
102 _, err := fmt.Fprintf(n.writer, "rule %s\n", name)
106 func (n *ninjaWriter) Build(comment string, rule string, outputs, implicitOuts,
139 wrapper.WriteStringWithSpace(rule)
scope.go 45 // A Rule represents a Ninja build rule that will be written to the output
47 type Rule interface {
61 rules map[string]Rule
70 rules: make(map[string]Rule),
147 func (s *basicScope) IsRuleVisible(rule Rule) bool {
148 _, isBuiltin := rule.(*builtinRule)
153 name := rule.name()
156 if s.rules[name] == rule {
    [all...]
singleton_ctx.go 40 Rule(pctx PackageContext, name string, params RuleParams, argNames ...string) Rule
146 func (s *singletonContext) Rule(pctx PackageContext, name string,
147 params RuleParams, argNames ...string) Rule {
module_ctx.go 166 Rule(pctx PackageContext, name string, params RuleParams, argNames ...string) Rule
448 func (m *moduleContext) Rule(pctx PackageContext, name string,
449 params RuleParams, argNames ...string) Rule {
  /build/kati/
rule.cc 17 #include "rule.h"
28 static void ParseInputs(Rule* r, StringPiece s) {
50 Rule::Rule()
58 Rule** out_rule, RuleVarAssignment* rule_var) {
92 // "test: =foo" is questionable but a valid rule definition (not a
114 Rule* rule = new Rule(); local
115 *out_rule = rule;
    [all...]
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/google-breakpad/src/common/
dwarf_cfi_to_module_unittest.cc 132 class Rule: public RuleFixture, public 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, ValExpressionRule)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
rulegen.go 29 // rule syntax:
46 // the value matched by the entire rule.
54 type Rule struct {
55 rule string
59 func (r Rule) String() string {
60 return fmt.Sprintf("rule %q at %s", r.rule, r.loc)
63 // parse returns the matching part of the rule, additional conditions, and the result.
64 func (r Rule) parse() (match, cond, result string) {
65 s := strings.Split(r.rule, "->"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
rulegen.go 29 // rule syntax:
46 // the value matched by the entire rule.
54 type Rule struct {
55 rule string
59 func (r Rule) String() string {
60 return fmt.Sprintf("rule %q at %s", r.rule, r.loc)
63 // parse returns the matching part of the rule, additional conditions, and the result.
64 func (r Rule) parse() (match, cond, result string) {
65 s := strings.Split(r.rule, "->"
    [all...]
  /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/webrtc/webrtc/base/
firewallsocketserver.h 22 // This SocketServer shim simulates a rule-based firewall server.
78 struct Rule {
85 std::vector<Rule> rules_;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 47 class Rule {
50 public Rule(String name, Block block) {
115 Rule r = readRule(in);
121 protected Rule readRule(DataInputStream in) throws IOException {
123 if ( R!='R' ) throw new IOException("missing R on start of rule");
125 System.out.println("rule: "+name);
129 if ( period!='.' ) throw new IOException("missing . on end of rule");
130 return new Rule(name, b);
160 //System.out.println("read rule "+gr.getRuleName(ruleIndex));
  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 142 /// Get the propagation rule for a given function.
167 /// taint rule.
206 TaintPropagationRule Rule = llvm::StringSwitch<TaintPropagationRule>(Name)
227 if (!Rule.isNull())
228 return Rule;
251 if (Rule.isNull()) {
303 // First, try generating a propagation rule for this function.
304 TaintPropagationRule Rule =
306 if (!Rule.isNull()) {
307 State = Rule.process(CE, C)
    [all...]
  /external/iproute2/doc/
ip-cref.tex 62 As a rule, the information is statistics or some time values.
151 \item \verb|rule| --- rule in routing policy database
163 As a rule, it is possible to \verb|add|, \verb|delete| and
200 and exits. As a rule, the error message will contain information
230 syntax errors). However, as a rule, their meaning is clear
250 \verb|ip| \verb|rule| command will fail, f.e.
252 kuznet@kaiser $ ip rule list
473 involved. As a rule, it indicates that the device needs no address
543 in dropped packets. As a rule, if the interface is overrun, it mean
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 277 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule,
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,
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 = "%subreg."
    [all...]
  /external/parameter-framework/upstream/tools/xmlGenerator/
EddParser.py 281 # extract all children rule and operator
282 childRules = self.extractChildrenByClass([Operator, Rule])
369 class Rule (Element) :
370 """class implementing the rule concept
372 A rule is composed of a criterion, a rule type and an criterion state.
376 tag = "rule"
391 class Operator (Rule) :
402 childWhiteList = ["Rule", "Operator"]
407 """ return a pfw rule (ex : "Any{criterion1 is state1}") generated from "self" and its children options""
    [all...]

Completed in 1123 milliseconds

1 2 3 4 5 6 7