HomeSort by relevance Sort by last modified time
    Searched refs:rule (Results 276 - 300 of 1332) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 39 * token, set, rule, wildcard
52 /** What to emit when there is no rewrite rule. For auto build
80 <if(root.el.rule)>
222 // RULE REF AST
224 /** rule auto construct */
225 ruleRef(rule,label,elementIndex,args,scope) ::= <<
236 /** x+=rule auto construct */
237 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
242 /** ^(rule ...) auto construct */
243 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg 35 * token, set, rule, wildcard
92 /** What to emit when there is no rewrite rule. For auto build
122 <if(root.el.rule)>
274 // RULE REF AST
276 /** rule auto construct */
277 ruleRef(rule,label,elementIndex,args,scope) ::= <<
289 /** x+=rule auto construct */
290 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
297 /** ^(rule ...) auto construct */
298 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= <
    [all...]
  /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);
313 RefPtrWillBeRawPtr<StyleRuleBase> rule = CSSParser::parseRule(context, m_contents.get(), ruleString); local
315 if (!rule) {
316 exceptionState.throwDOMException(SyntaxError, "Failed to parse the rule '" + ruleString + "'.");
321 bool success = m_contents->wrapperInsertRule(rule, index);
323 exceptionState.throwDOMException(HierarchyRequestError, "Failed to insert the rule.")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 264 CSSRule* rule = styleSheet.item(i); local
265 String itemText = rule->cssText();
274 if (rule->type() == CSSRule::IMPORT_RULE) {
275 CSSImportRule* importRule = toCSSImportRule(rule);
281 } else if (rule->type() == CSSRule::FONT_FACE_RULE) {
282 retrieveResourcesForProperties(&toCSSFontFaceRule(rule)->styleRule()->properties(), document);
283 } else if (rule->type() == CSSRule::STYLE_RULE) {
284 retrieveResourcesForProperties(&toCSSStyleRule(rule)->styleRule()->properties(), document);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextState.h 104 // Path fill rule
106 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);
  /frameworks/av/media/libmedia/
AudioPolicy.cpp 29 uint32_t rule)
30 : mRule(rule)
  /external/chromium_org/third_party/icu/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/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...]
  /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,

Completed in 2159 milliseconds

<<11121314151617181920>>