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

/external/junit/src/org/junit/
H A DRule.java15 * annotated {@link Rule}s on a class, they will be applied in an order
24 * @Rule
45 public @interface Rule { interface
/external/chromium/net/proxy/
H A Dproxy_bypass_rules.h22 class Rule { class in class:net::ProxyBypassRules
24 Rule();
25 virtual ~Rule();
35 virtual Rule* Clone() const = 0;
37 bool Equals(const Rule& rule) const;
40 DISALLOW_COPY_AND_ASSIGN(Rule);
43 typedef std::vector<const Rule*> RuleList;
H A Dproxy_bypass_rules.cc17 class HostnamePatternRule : public ProxyBypassRules::Rule {
49 virtual Rule* Clone() const {
61 class BypassLocalRule : public ProxyBypassRules::Rule {
74 virtual Rule* Clone() const {
79 // Rule for matching a URL that is an IP address, if that IP address falls
82 class BypassIPBlockRule : public ProxyBypassRules::Rule {
116 virtual Rule* Clone() const {
143 ProxyBypassRules::Rule::Rule() { function in class:net::ProxyBypassRules::Rule
146 ProxyBypassRules::Rule
[all...]
H A Dinit_proxy_resolver_unittest.cc29 struct Rule { struct in class:net::__anon2986::Rules
30 Rule(const GURL& url, function in struct:net::__anon2986::Rules::Rule
51 Rule AddSuccessRule(const char* url) {
52 Rule rule(GURL(url), OK /*fetch_error*/, OK /*set_pac_error*/);
58 rules_.push_back(Rule(GURL(url), kFailedDownloading /*fetch_error*/,
63 rules_.push_back(Rule(GURL(url), OK /*fetch_error*/,
67 const Rule& GetRuleByUrl(const GURL& url) const {
73 LOG(FATAL) << "Rule not found for " << url;
77 const Rule& GetRuleByText(const string16& text) const {
83 LOG(FATAL) << "Rule no
[all...]
/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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Derror_check.py27 class Rule(object): class in inherits:object
39 # Rule to raise all known errors.
54 'This includes ' + (', '.join(Rule.CLOSURE_RULES)) + '.')
58 ' - ' + Rule.ALL + ': enables all following errors.\n'
59 ' - ' + Rule.BLANK_LINES_AT_TOP_LEVEL + ': validates'
61 ' - ' + Rule.INDENTATION + ': checks correct '
63 ' - ' + Rule.WELL_FORMED_AUTHOR + ': validates the '
65 ' - ' + Rule.NO_BRACES_AROUND_INHERIT_DOC + ': '
67 ' - ' + Rule.BRACES_AROUND_TYPE + ': enforces braces '
69 ' - ' + Rule
[all...]
H A Djavascriptlintrules.py42 Rule = error_check.Rule variable
97 if error_check.ShouldCheck(Rule.UNUSED_PRIVATE_MEMBERS):
135 if (error_check.ShouldCheck(Rule.OPTIONAL_TYPE_MARKER) and
189 if (error_check.ShouldCheck(Rule.BLANK_LINES_AT_TOP_LEVEL) and
467 if error_check.ShouldCheck(Rule.UNUSED_PRIVATE_MEMBERS):
H A Decmalintrules.py55 Rule = error_check.Rule variable
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
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_provider.h52 struct Rule { struct in class:content_settings::ProviderInterface
53 Rule() {} function in struct:content_settings::ProviderInterface::Rule
54 Rule(const ContentSettingsPattern& requesting_pattern, function in struct:content_settings::ProviderInterface::Rule
66 typedef std::vector<Rule> Rules;
/external/webkit/Source/WebCore/html/parser/
H A DCSSPreloadScanner.h53 Rule, enumerator in enum:WebCore::CSSPreloadScanner::State
/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/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc43 struct Rule { struct in namespace:__anon3084
48 typedef std::map<std::string, Rule> RuleMap;
103 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) {
195 Rule rule;
230 Rule rule;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dfirewallsocketserver.h97 struct Rule { struct in class:talk_base::FirewallSocketServer
104 std::vector<Rule> rules_;
/external/v8/test/cctest/
H A Dtest-date.cc38 struct Rule { struct in class:DateCacheMock
42 DateCacheMock(int local_offset, Rule* rules, int rules_count)
51 Rule* rule = FindRuleFor(year, month, day, time_in_day_sec);
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) {
98 Rule* rules_;
124 DateCacheMock::Rule rules[] = {
/external/chromium/net/base/
H A Dmock_host_resolver.cc122 struct RuleBasedHostResolverProc::Rule { struct in class:net::RuleBasedHostResolverProc
137 Rule(ResolverType resolver_type, function in struct:net::RuleBasedHostResolverProc::Rule
170 Rule rule(Rule::kResolverTypeSystem, host_pattern, address_family, flags,
187 Rule rule(Rule::kResolverTypeIPLiteral, host_pattern,
200 Rule rule(Rule::kResolverTypeSystem, host_pattern, ADDRESS_FAMILY_UNSPECIFIED,
209 Rule rule(Rule
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp212 TaintPropagationRule Rule = llvm::StringSwitch<TaintPropagationRule>(Name) local
233 if (!Rule.isNull())
234 return Rule;
257 if (Rule.isNull()) {
310 TaintPropagationRule Rule =
312 if (!Rule.isNull()) {
313 State = Rule.process(CE, C);
/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/v8/tools/
H A Dtest.py1111 class Rule(object): class in inherits:object
1160 current_section.AddRule(Rule(rule_match.group(1), path, value))
1524 print "Rule for '%s' was not used." % '/'.join([str(s) for s in rule.path])
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 400 milliseconds