Searched defs:rules (Results 1 - 25 of 126) sorted by relevance

123456

/external/chromium/net/base/
H A Dhost_mapping_rules_unittest.cc15 HostMappingRules rules; local
16 rules.SetRulesFromString(
20 EXPECT_FALSE(rules.RewriteHost(&host_port));
25 EXPECT_TRUE(rules.RewriteHost(&host_port));
30 EXPECT_TRUE(rules.RewriteHost(&host_port));
35 EXPECT_FALSE(rules.RewriteHost(&host_port));
41 HostMappingRules rules; local
42 rules.SetRulesFromString(
47 EXPECT_FALSE(rules.RewriteHost(&host_port));
53 EXPECT_TRUE(rules
72 HostMappingRules rules; local
[all...]
/external/icu4c/i18n/
H A Drbt_set.h31 * A set of rules for a <code>RuleBasedTransliterator</code>.
36 * Vector of rules, in the order added. This is used while the
38 * indexes the rules into rules[]. Any given rule is stored once
39 * in ruleVector, and one or more times in rules[]. ruleVector
40 * owns and deletes the rules.
45 * Sorted and indexed table of rules. This is created by freeze()
46 * from the rules in ruleVector. It contains alias pointers to
47 * the rules in ruleVector. It is zero before freeze() is called
50 TransliterationRule** rules; member in class:TransliterationRuleSet
[all...]
H A Dnfrs.h34 void parseRules(UnicodeString& rules, const RuleBasedNumberFormat* owner, UErrorCode& status);
71 NFRuleList rules; member in class:NFRuleSet
/external/junit/src/org/junit/rules/
H A DTestRule.java1 package org.junit.rules;
H A DRuleChain.java4 package org.junit.rules;
72 private RuleChain(List<TestRule> rules) { argument
73 this.rulesStartingWithInnerMost= rules;
78 * the rules of the current {@code RuleChain}.
H A DRunRules.java1 package org.junit.rules;
7 * Runs a collection of rules on a statement.
12 public RunRules(Statement base, Iterable<TestRule> rules, Description description) { argument
13 statement= applyAll(base, rules, description);
21 private static Statement applyAll(Statement result, Iterable<TestRule> rules, argument
23 for (TestRule each : rules)
H A DExternalResource.java1 package org.junit.rules;
H A DMethodRule.java1 package org.junit.rules;
H A DTestName.java1 package org.junit.rules;
H A DTimeout.java4 package org.junit.rules;
H A DVerifier.java1 package org.junit.rules;
H A DErrorCollector.java4 package org.junit.rules;
H A DTemporaryFolder.java1 package org.junit.rules;
H A DTestWatcher.java1 package org.junit.rules;
H A DTestWatchman.java1 package org.junit.rules;
H A DExpectedException.java1 package org.junit.rules;
/external/chromium/net/http/
H A Dhttp_auth_filter.h46 const ProxyBypassRules& rules() const { return rules_; } function in class:net::HttpAuthFilterWhitelist
/external/chromium/net/proxy/
H A Dproxy_bypass_rules.h17 // settings, as a list of rules. A URL is said to match the bypass rules
18 // if it matches any one of these rules.
31 // visualizing the rules, and also to test equality of a rules list.
51 // Returns the current list of rules. The rules list contains pointers
54 const RuleList& rules() const { return rules_; } function in class:net::ProxyBypassRules
56 // Returns true if |url| matches any of the proxy bypass rules.
60 // describe the same set of rules
[all...]
H A Dproxy_bypass_rules_unittest.cc17 ProxyBypassRules rules; local
18 rules.ParseFromString("wWw.gOogle.com");
19 ASSERT_EQ(1u, rules.rules().size());
20 EXPECT_EQ("www.google.com", rules.rules()[0]->ToString());
24 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
25 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99")));
26 EXPECT_TRUE(rules.Matches(GURL("https://www.google.com:81")));
29 EXPECT_FALSE(rules
36 ProxyBypassRules rules; local
56 ProxyBypassRules rules; local
76 ProxyBypassRules rules; local
87 ProxyBypassRules rules; local
101 ProxyBypassRules rules; local
114 ProxyBypassRules rules; local
127 ProxyBypassRules rules; local
141 ProxyBypassRules rules; local
153 ProxyBypassRules rules; local
169 ProxyBypassRules rules; local
185 ProxyBypassRules rules; local
204 ProxyBypassRules rules; local
216 ProxyBypassRules rules; local
275 ProxyBypassRules rules; local
286 ProxyBypassRules rules; local
303 ProxyBypassRules rules; local
[all...]
/external/bison/src/
H A Dparse-gram.y406 rules
414 rules: label
H A Dstate.h30 particular positions in particular rules -- that are the possible
67 nreds rules, represented by their rule numbers. first_reduction
189 rule *rules[1]; member in struct:__anon337
/external/webkit/Source/WebCore/css/
H A DCSSMediaRule.h38 static PassRefPtr<CSSMediaRule> create(CSSStyleSheet* parent, PassRefPtr<MediaList> media, PassRefPtr<CSSRuleList> rules) argument
40 return adoptRef(new CSSMediaRule(parent, media, rules));
H A DCSSMediaRule.cpp31 CSSMediaRule::CSSMediaRule(CSSStyleSheet* parent, PassRefPtr<MediaList> media, PassRefPtr<CSSRuleList> rules) argument
34 , m_lstCSSRules(rules)
/external/icu4c/test/intltest/
H A Ditrbnfp.cpp58 // these rules make no sense but behave rationally
102 // these rules would throw exceptions when formatting, if we could throw exceptions
111 // none of these rules should crash the formatter
119 const char** rules = allrules[j]; local
120 for (int i = 0; rules[i]; ++i) {
121 const char* rule = rules[i];
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java45 public List rules; field in class:SerializedGrammar
108 System.out.println("num rules = "+numRules);
109 rules = readRules(in, numRules);
113 List rules = new ArrayList();
116 rules.add(r);
118 return rules;
195 buf.append(rules);

Completed in 352 milliseconds

123456