HomeSort by relevance Sort by last modified time
    Searched defs:Rule (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/chromium_org/v8/test/cctest/
test-date.cc 38 struct Rule {
42 DateCacheMock(int local_offset, Rule* rules, int rules_count)
51 Rule* rule = FindRuleFor(year, month, day, time_in_day_sec); local
52 return rule == NULL ? 0 : rule->offset_sec * 1000;
61 Rule* FindRuleFor(int year, int month, int day, int time_in_day_sec) {
62 Rule* result = NULL;
71 bool Match(Rule* rule, int year, int month, int day, int time_in_day_sec)
    [all...]
  /frameworks/base/tools/split-select/
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...]
  /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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 55 Rule = error_check.Rule
92 """Initialize this lint rule object."""
96 """Initialize this lint rule object before parsing a new file."""
186 if error_check.ShouldCheck(Rule.BRACES_AROUND_TYPE) and (
253 if not self._is_html and error_check.ShouldCheck(Rule.INDENTATION):
462 elif (error_check.ShouldCheck(Rule.WELL_FORMED_AUTHOR) and
557 if (error_check.ShouldCheck(Rule.NO_BRACES_AROUND_INHERIT_DOC) and
    [all...]
  /external/chromium_org/extensions/browser/api/declarative/
declarative_rule_unittest.cc 311 typedef DeclarativeRule<FulfillableCondition, SummingAction> Rule;
312 linked_ptr<Rule::JsonRule> json_rule(new Rule::JsonRule);
313 ASSERT_TRUE(Rule::JsonRule::Populate(
339 scoped_ptr<Rule> rule(Rule::Create(matcher.condition_factory(),
344 Rule::ConsistencyChecker(),
347 ASSERT_TRUE(rule.get());
349 EXPECT_EQ(kExtensionId, rule->id().first)
    [all...]
rules_registry.h 37 // RulesRegistry::Rule objects. It contains all the methods that need to run on
42 typedef extensions::core_api::events::Rule Rule;
78 // |rules| is a list of Rule instances following the definition of the
79 // declarative extension APIs. It is guaranteed that each rule in |rules| has
91 const std::vector<linked_ptr<RulesRegistry::Rule> >& rules);
117 std::vector<linked_ptr<RulesRegistry::Rule> >* out);
121 std::vector<linked_ptr<RulesRegistry::Rule> >* out);
166 const std::vector<linked_ptr<RulesRegistry::Rule> >& rules);
173 const std::vector<linked_ptr<RulesRegistry::Rule> >& rules) = 0
    [all...]
  /external/chromium_org/net/dns/
mock_host_resolver.cc 222 struct RuleBasedHostResolverProc::Rule {
237 Rule(ResolverType resolver_type,
270 Rule rule(Rule::kResolverTypeSystem,
277 rules_.push_back(rule);
292 Rule rule(Rule::kResolverTypeIPLiteral, host_pattern,
295 rules_.push_back(rule);
    [all...]
  /external/chromium_org/net/proxy/
proxy_script_decider_unittest.cc 38 struct Rule {
39 Rule(const GURL& url, int fetch_error, bool is_valid_script)
58 Rule AddSuccessRule(const char* url) {
59 Rule rule(GURL(url), OK /*fetch_error*/, true);
60 rules_.push_back(rule);
61 return rule;
65 rules_.push_back(Rule(GURL(url), kFailedDownloading /*fetch_error*/,
70 rules_.push_back(Rule(GURL(url), OK /*fetch_error*/, false));
73 const Rule& GetRuleByUrl(const GURL& url) const
111 const Rules::Rule& rule = rules_->GetRuleByUrl(url); variable
188 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local
295 Rules::Rule rule = rules.AddSuccessRule("http:\/\/wpad\/wpad.dat"); local
422 Rules::Rule rule = rules_.AddSuccessRule(kCustomUrl); local
442 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local
467 Rules::Rule rule = rules.AddSuccessRule("http:\/\/custom\/proxy.pac"); local
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 55 Rule = error_check.Rule
98 """Initialize this lint rule object."""
104 """Initialize this lint rule object before parsing a new file."""
194 if error_check.ShouldCheck(Rule.BRACES_AROUND_TYPE) and (
292 if not self._is_html and error_check.ShouldCheck(Rule.INDENTATION):
501 elif (error_check.ShouldCheck(Rule.WELL_FORMED_AUTHOR) and
569 if (error_check.ShouldCheck(Rule.NO_BRACES_AROUND_INHERIT_DOC) and
    [all...]
  /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/chromium_org/
PRESUBMIT.py 528 from rules import Rule
548 if rule_type == Rule.DISALLOW:
    [all...]
  /external/robolectric/lib/main/
commons-codec-1.6.jar 
  /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...]
  /frameworks/base/services/core/java/com/android/server/firewall/
IntentFirewall.java 153 List<Rule> candidateRules;
156 candidateRules = new ArrayList<Rule>();
161 // rule against the intent
163 Rule rule = candidateRules.get(i); local
164 if (rule.matches(this, resolvedComponent, intent, callerUid, callerPid, resolvedType,
166 block |= rule.getBlock();
167 log |= rule.getLog();
302 List<List<Rule>> rulesByType = new ArrayList<List<Rule>>(3)
336 Rule rule = new Rule(); local
373 Rule rule = rules.get(ruleIndex); local
378 resolver.addComponentFilter(rule.getComponentFilter(i), rule); local
487 private final Rule rule; field in class:IntentFirewall.FirewallIntentFilter
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsubgpos-private.hh 1223 rule; \/* Array of Rule tables member in struct:OT::RuleSet
1785 rule; \/* Array of ChainRule tables member in struct:OT::ChainRuleSet
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsubgpos-private.hh 1223 rule; \/* Array of Rule tables member in struct:OT::RuleSet
1786 rule; \/* Array of ChainRule tables member in struct:OT::ChainRuleSet
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-xml-3.3.jar 
dom4j-1.6.1.jar 
  /prebuilts/tools/common/asm-tools/
asm-xml-4.0.jar 
  /external/dexmaker/lib/
jarjar.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar 
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.objectweb.asm_3.2.0.v200909071300.jar 

Completed in 1101 milliseconds

12 3 4