Searched refs:rule (Results 126 - 150 of 1180) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/api/declarative_content/
H A Dchrome_content_rules_registry.cc140 ContentRule* rule = rule_iter->second; local
141 if (rule->conditions().IsFulfilled(*url_match, renderer_data))
142 result.insert(rule);
161 for (std::vector<linked_ptr<RulesRegistry::Rule> >::const_iterator rule =
163 rule != rules.end();
164 ++rule) {
165 ContentRule::GlobalRuleId rule_id(extension_id, *(*rule)->id);
173 *rule,
177 // Clean up temporary condition sets created during rule creation.
236 ContentRule* rule local
295 ContentRule& rule = *i->second; local
[all...]
H A Dchrome_content_rules_registry_unittest.cc51 // Add a rule.
52 linked_ptr<RulesRegistry::Rule> rule(new RulesRegistry::Rule);
67 rule.get());
69 rules.push_back(rule);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DElementRuleCollector.cpp81 inline void ElementRuleCollector::addMatchedRule(const RuleData* rule, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet) argument
85 m_matchedRules->append(MatchedRule(rule, specificity, cascadeScope, cascadeOrder, styleSheetIndex, parentStyleSheet));
123 // [skipped, because already checked] a) it's a UA rule
151 // a) it's a UA rule
176 CSSRuleList* ElementRuleCollector::nestedRuleList(CSSRule* rule) argument
178 switch (rule->type()) {
180 return toCSSMediaRule(rule)->cssRules();
182 return toCSSKeyframesRule(rule)->cssRules();
184 return toCSSSupportsRule(rule)->cssRules();
213 void ElementRuleCollector::appendCSSOMWrapperForRule(CSSStyleSheet* parentStyleSheet, StyleRule* rule) argument
[all...]
H A DCSSKeyframesRule.h77 static PassRefPtrWillBeRawPtr<CSSKeyframesRule> create(StyleRuleKeyframes* rule, CSSStyleSheet* sheet) argument
79 return adoptRefWillBeNoop(new CSSKeyframesRule(rule, sheet));
93 void insertRule(const String& rule);
H A DCSSPageRule.cpp98 void CSSPageRule::reattach(StyleRuleBase* rule) argument
100 ASSERT(rule);
101 m_pageRule = toStyleRulePage(rule);
H A DCSSRuleList.h93 static PassOwnPtrWillBeRawPtr<LiveCSSRuleList> create(Rule* rule) argument
95 return adoptPtrWillBeNoop(new LiveCSSRuleList(rule));
110 LiveCSSRuleList(Rule* rule) : m_rule(rule) { } argument
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_utils.cc182 // |RuleIterator| gets out of scope before we get a rule iterator for the
207 const Rule& rule = rule_iterator->Next(); local
208 if (rule.primary_pattern.Matches(primary_url) &&
209 rule.secondary_pattern.Matches(secondary_url)) {
211 *primary_pattern = rule.primary_pattern;
213 *secondary_pattern = rule.secondary_pattern;
214 return rule.value.get()->DeepCopy();
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_test.c26 /* The rule string to apply. */
27 const char *rule; member in struct:__anon11683
78 /* Multiple masks can be ANDed in a single rule. */
217 if (!SSL_CTX_set_cipher_list(ctx, t->rule)) {
218 fprintf(stderr, "Error testing cipher rule '%s'\n", t->rule);
229 fprintf(stderr, "Error: cipher rule '%s' evaluted to:\n", t->rule);
236 fprintf(stderr, "Error: cipher rule '%s' evaluted to:\n", t->rule);
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_formatter.cc31 #include "rule.h"
133 Rule rule; local
134 rule.CopyFrom(Rule::GetDefault());
135 // TODO: Eventually, we should get the best rule for this country and
137 rule.ParseSerializedRule(RegionDataConstants::GetRegionData(
146 language.has_latin_script && !rule.GetLatinFormat().empty()
147 ? rule.GetLatinFormat()
148 : rule.GetFormat();
H A Dlocalization.cc28 #include "rule.h"
71 Rule rule; local
72 rule.CopyFrom(Rule::GetDefault());
74 if (rule.ParseSerializedRule(
78 SplitString(rule.GetPostalCodeExample(), ',', &examples_list);
84 post_service_url = rule.GetPostServiceUrl();
89 // If we can't parse the serialized rule |uses_postal_code_as_label| will be
90 // determined from the default rule.
92 rule.GetPostalCodeNameMessageId() ==
H A Dpreload_supplier.cc38 #include "rule.h"
142 Rule* rule = new Rule;
144 // All rules on the COUNTRY level inherit from the default rule.
145 rule->CopyFrom(Rule::GetDefault());
147 rule->ParseJsonRule(*value);
148 assert(id == rule->GetId()); // Sanity check.
150 rule_storage_->push_back(rule);
152 sub_rules.push_back(rule);
155 // Add the ID of this Rule object to the rule index with natural string
158 rule_index_->insert(last_index_it, std::make_pair(id, rule));
208 const Rule* rule = hierarchy.top(); variable
[all...]
/external/svox/pico/tts/
H A DAndroid.mk5 # to the rule below / except that it builds a shared
32 # Build Pico Shared Library. This rule is used by the
34 # using dlsym. This is essentially the same as the rule
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeRewriter.h43 - (id)rule;
53 ANTLRfptr *rule; variable
77 @property (retain) ANTLRfptr *rule; variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DASTParser.stg35 * token, set, rule, wildcard
130 /** rule when output=AST */
131 ruleRef(rule,label,elementIndex,args,scope) ::= <<
136 /** rule! is same as normal rule ref */
137 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>"
139 /** rule^ */
140 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= <<
145 /** x+=rule when output=AST */
146 ruleRefAndListLabel(rule,labe
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dsummary.py41 rule = "-" * len(header) + "\n"
50 outfile.write(rule)
74 outfile.write(rule)
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_rule.cpp32 * Construct a new rule with the given input, output text, and other
51 * @param anchorStart TRUE if the the rule is anchored on the left to
53 * @param anchorEnd TRUE if the rule is anchored on the right to the
214 * Internal method. Returns 8-bit index value for this rule.
230 * Internal method. Returns true if this rule matches the given
233 * It matches this rule if it matches the first character of the
236 * value. If the rule contains only ante context, as in foo)>bar,
247 * Return true if this rule masks another rule. If r1 masks r2 then
253 /* Rule r1 masks rule r
467 toRule(UnicodeString& rule, UBool escapeUnprintable) const argument
[all...]
H A Drbt_pars.h40 * of rules in the rule set
46 * A Vector of UnicodeStrings containing all of the ID blocks in the rule set
89 * rule. segmentStandins.charAt(0) is the standin for "$1" and corresponds
96 * parsing of a single rule.
184 * MAIN PARSER. Parse the next rule in the given rule string, starting
192 * parses the end-of-rule character. It recognizes context and cursor
193 * indicators. Once it does a lexical breakdown of the rule at pos, it
194 * creates a rule object and adds it to our rule lis
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditrbnfp.cpp54 // Try various rule parsing errors. Shouldn't crash.
105 "11: << x", // formating a multiple of 10 causes rollback rule to fail
121 const char* rule = rules[i]; local
122 logln("rule[%d] \"%s\"", i, rule);
125 RuleBasedNumberFormat* formatter = new RuleBasedNumberFormat(rule, Locale::getUS(), perr, status);
/external/deqp/framework/egl/
H A DegluConfigFilter.hpp50 ConfigFilter (EGLint attribute, EGLint value, Filter rule) argument
53 , m_rule (rule)
105 FilterList& operator<< (const ConfigFilter& rule);
/external/elfutils/0.153/libdw/
H A Ddwarf_frame_register.c83 switch (reg->rule)
87 /* Use the default rule for registers not yet mentioned in CFI. */
107 if (reg->rule == reg_val_offset)
134 true, reg->rule == reg_val_expression,
/external/icu/icu4c/source/i18n/
H A Drbt_rule.cpp32 * Construct a new rule with the given input, output text, and other
51 * @param anchorStart TRUE if the the rule is anchored on the left to
53 * @param anchorEnd TRUE if the rule is anchored on the right to the
214 * Internal method. Returns 8-bit index value for this rule.
230 * Internal method. Returns true if this rule matches the given
233 * It matches this rule if it matches the first character of the
236 * value. If the rule contains only ante context, as in foo)>bar,
247 * Return true if this rule masks another rule. If r1 masks r2 then
253 /* Rule r1 masks rule r
467 toRule(UnicodeString& rule, UBool escapeUnprintable) const argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ditrbnfp.cpp54 // Try various rule parsing errors. Shouldn't crash.
105 "11: << x", // formating a multiple of 10 causes rollback rule to fail
121 const char* rule = rules[i]; local
122 logln("rule[%d] \"%s\"", i, rule);
125 RuleBasedNumberFormat* formatter = new RuleBasedNumberFormat(rule, Locale::getUS(), perr, status);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeRewriter.java36 public Object rule() throws RecognitionException; method in interface:TreeRewriter.fptr
61 TreeRuleReturnScope r = (TreeRuleReturnScope)whichRule.rule();
108 public Object rule() throws RecognitionException { return topdown(); }
112 public Object rule() throws RecognitionException { return bottomup(); }
116 // to override, just define tree grammar rule topdown and turn on
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dmath_simple_store.js46 var rule = this.defineRule(
70 * Function creates a rule store in the compound store for a particular string,
72 * @param {string} name Name of the rule.
73 * @param {string} str String used as key to refer to the rule store
86 * Makes a speech rule for Unicode characters from its JSON representation.
96 * Makes a speech rule for Unicode characters from its JSON representation.
109 * Retrieves a rule for the given node if one exists.
112 * constraints. These are matched against properties of a rule.
113 * @return {cvox.SpeechRule} The speech rule if it exists.
124 * Looks up a rule fo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParser.cpp29 PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule) argument
31 return BisonCSSParser(context).parseRule(styleSheet, rule);
69 PassRefPtrWillBeRawPtr<StyleKeyframe> CSSParser::parseKeyframeRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule) argument
71 return BisonCSSParser(context).parseKeyframeRule(styleSheet, rule);

Completed in 906 milliseconds

1234567891011>>