/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
store_util.js | 6 * @fileoverview General utility functions for rule stores.
|
/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...] |
proxy_bypass_rules.h | 21 // Interface for an individual proxy bypass rule. 22 class NET_EXPORT Rule { 24 Rule(); 25 virtual ~Rule(); 27 // Returns true if |url| matches the rule. 30 // Returns a string representation of this rule. This is used both for 34 // Creates a copy of this rule. (Caller is responsible for deleting it) 35 virtual Rule* Clone() const = 0; 37 bool Equals(const Rule& rule) const [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSStyleSheet.cpp | 149 // For style rules outside the document, .parentStyleSheet can become null even if the style rule 206 // because StyleSheetCollection::analyzeStyleSheetChange cannot detect partial rule update. 296 CSSRule* rule = item(i); local 297 if (rule->type() == CSSRule::CHARSET_RULE) 299 nonCharsetRules->rules().append(rule); 314 RefPtrWillBeRawPtr<StyleRuleBase> rule = p.parseRule(m_contents.get(), ruleString); local 316 if (!rule) { 317 exceptionState.throwDOMException(SyntaxError, "Failed to parse the rule '" + ruleString + "'."); 322 bool success = m_contents->wrapperInsertRule(rule, index); 324 exceptionState.throwDOMException(HierarchyRequestError, "Failed to insert the rule.") [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PageSerializer.cpp | 265 CSSRule* rule = styleSheet.item(i); local 266 String itemText = rule->cssText(); 275 if (rule->type() == CSSRule::IMPORT_RULE) { 276 CSSImportRule* importRule = toCSSImportRule(rule); 282 } else if (rule->type() == CSSRule::FONT_FACE_RULE) { 283 retrieveResourcesForProperties(&toCSSFontFaceRule(rule)->styleRule()->properties(), document); 284 } else if (rule->type() == CSSRule::STYLE_RULE) { 285 retrieveResourcesForProperties(&toCSSStyleRule(rule)->styleRule()->properties(), document);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContextState.h | 108 // Path fill rule 110 void setFillRule(WindRule rule) { m_fillRule = rule; }
|
/external/deqp/framework/egl/ |
egluConfigFilter.cpp | 89 FilterList& FilterList::operator<< (const ConfigFilter& rule) 91 m_rules.push_back(rule);
|
/external/chromium_org/third_party/icu/source/i18n/ |
nfrs.cpp | 136 // throw new IllegalArgumentException("Empty rule set description"); 141 // if the description begins with a rule set name (the rule set 143 // of only one rule set), copy it out into our "name" member 148 // throw new IllegalArgumentException("Rule set name doesn't end in colon"); 161 // throw new IllegalArgumentException("Empty rule set description"); 175 // the descriptions of the rules (one rule per element). The rules 177 // semicolons are rule delimiters) 209 NFRule* rule = rules[i]; local 211 switch (rule->getType()) 315 NFRule *rule = findNormalRule(number); local 331 NFRule *rule = findDoubleRule(number); local [all...] |
nfsubs.h | 58 const NFRule* rule, 111 * @param pos The position in toInsertInto where the owning rule's 112 * rule text begins (this value is added to this substitution's 123 * @param pos The position in toInsertInto where the owning rule's 124 * rule text begins (this value is added to this substitution's 133 * is formatted using the rule set or DecimalFormat that this 144 * is formatted using the rule set or DecimalFormat that this 158 * Parses a string using the rule set or DecimalFormat belonging 170 * @param upperBound When searching the rule set for a rule [all...] |
/external/icu/icu4c/source/i18n/ |
nfrs.cpp | 141 // throw new IllegalArgumentException("Empty rule set description"); 146 // if the description begins with a rule set name (the rule set 148 // of only one rule set), copy it out into our "name" member 153 // throw new IllegalArgumentException("Rule set name doesn't end in colon"); 166 // throw new IllegalArgumentException("Empty rule set description"); 185 // the descriptions of the rules (one rule per element). The rules 187 // semicolons are rule delimiters) 193 // ensure we are starting with an empty rule list 222 NFRule* rule = rules[i] local 340 NFRule *rule = findNormalRule(number); local 356 NFRule *rule = findDoubleRule(number); local [all...] |
nfsubs.h | 58 const NFRule* rule, 111 * @param pos The position in toInsertInto where the owning rule's 112 * rule text begins (this value is added to this substitution's 123 * @param pos The position in toInsertInto where the owning rule's 124 * rule text begins (this value is added to this substitution's 133 * is formatted using the rule set or DecimalFormat that this 144 * is formatted using the rule set or DecimalFormat that this 158 * Parses a string using the rule set or DecimalFormat belonging 170 * @param upperBound When searching the rule set for a rule [all...] |
rbtz.cpp | 115 RuleBasedTimeZone::addTransitionRule(TimeZoneRule* rule, UErrorCode& status) { 119 AnnualTimeZoneRule* atzrule = dynamic_cast<AnnualTimeZoneRule*>(rule); 121 // A final rule 132 fFinalRules->addElement((void*)rule, status); 134 // Non-final rule 141 fHistoricRules->addElement((void*)rule, status); 214 // No more transitions from this rule - skip this rule next time 432 const TimeZoneRule *rule = NULL; local 434 rule = fInitialRule 678 TimeZoneRule *rule = (TimeZoneRule*)rules->orphanElementAt(i); local [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
Token.js | 27 /** In an action, a lexer rule can set token to this SKIP_TOKEN and ANTLR 32 /** All tokens go to the parser (unless skip() is called in that rule)
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/ |
TreeRewriteParser.h | 33 #pragma mark Dynamic Rule Scopes 34 #pragma mark Rule Return Scopes start 119 - (TreeRewriteParser_rule_return *)rule;
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
rule-tracer.rb | 8 RuleTracer is simple debug event listener that writes the names of rule methods
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
filter-mode.rb | 49 * I made this rule to compensate. 183 * I made this rule to compensate.
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLRv3Tree.g | 42 : ^( grammarType ID DOC_COMMENT? optionsSpec? tokensSpec? attrScope* action* rule+ ) 87 rule 88 : ^( RULE ID modifier? (^(ARG ARG_ACTION))? (^(RET ARG_ACTION))? 169 /** Matches ENBF blocks (and token sets via block rule) */
|
DefineGrammarItemsWalker.g | 78 // form is (header ... ) ( grammar ID (scope ...) ... ( rule ... ) ( rule ... ) ... ) 85 if ( p.getChild( i ).getType() != RULE ) 89 //Console.Out.WriteLine( "rule " + ruleName + " prev=" + prev.getText() ); 90 if (Rule.getRuleType(ruleName) == Grammar.LEXER) { 91 // remove lexer rule 100 Rule r = grammar.getRule( currentRuleName ); 203 : (rule | ^(PREC_RULE .*))+ 206 rule 211 Rule r = null [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
ST.stg | 39 /** Add this to each rule's return value struct */ 72 /** x+=rule when output=template */ 73 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 74 <ruleRef(rule,label,elementIndex,args,scope)> 124 * Set the value of the rule's template *after* having set 125 * the attributes because the rule's template might be used as
|
/external/bison/src/ |
reader.c | 109 | type as TYPE as required by the lhs of the rule whose %merge declaration | 167 | rule is represented by a sequence of symbols: the left hand side | 169 | null pointer instead of a symbol to terminate the rule. The next | 170 | symbol is the lhs of the following rule. | 172 | All actions are copied out, labelled by the rule number they apply | 192 /* A null SYM stands for an end of rule; it is not an actual 217 /* The rule currently being defined, and the previous rule. 218 CURRENT_RULE points to the first LHS of the current rule, while 219 PREVIOUS_RULE_END points to the *end* of the previous rule (NULL). * [all...] |
/external/chromium_org/chrome/browser/extensions/api/content_settings/ |
content_settings_store_unittest.cc | 20 void CheckRule(const content_settings::Rule& rule, 24 EXPECT_EQ(primary_pattern.ToString(), rule.primary_pattern.ToString()); 25 EXPECT_EQ(secondary_pattern.ToString(), rule.secondary_pattern.ToString()); 26 EXPECT_EQ(setting, content_settings::ValueToContentSetting(rule.value.get())); 68 std::vector<content_settings::Rule>* rules) { 194 std::vector<content_settings::Rule> rules;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
filter_unittest.py | 74 for rule in bad_rules: 76 [rule], all_categories) 78 for rule in good_rules: 80 validate_filter_rules([rule], all_categories)
|
/external/chromium_org/third_party/freetype/src/truetype/ |
ttsubpix.h | 81 const SPH_TweakRule* rule,
|
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
ondemand_supplier.cc | 28 #include "rule.h" 40 for (std::map<std::string, const Rule*>::const_iterator 58 std::map<std::string, const Rule*>::const_iterator it = 61 task->hierarchy_.rule[depth] = it->second;
|
/external/freetype/src/truetype/ |
ttsubpix.h | 81 const SPH_TweakRule* rule,
|