/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/ |
webrequest_rules_registry_unittest.cc | 96 // Returns a rule that roughly matches http://*.example.com and 98 linked_ptr<RulesRegistry::Rule> CreateRule1() { 123 linked_ptr<RulesRegistry::Rule> rule(new RulesRegistry::Rule); 124 rule->id.reset(new std::string(kRuleId1)); 125 rule->priority.reset(new int(100)); 126 rule->actions.push_back(linked_ptr<base::Value>(action_dict.DeepCopy())); 127 rule->conditions.push_back( 129 rule->conditions.push_back 696 RulesRegistry::Rule rule; local [all...] |
webrequest_rules_registry.cc | 125 const WebRequestRule* rule = local 127 CHECK(rule); 129 // Skip rule if a previous rule of this extension instructed to ignore 135 if (!rule->tags().empty() && !ignore_tags[extension_id].empty()) { 137 const WebRequestRule::Tags& tags = rule->tags(); 152 rule->Apply(&apply_info); 156 rule->GetMinimumPriority()); 163 const std::vector<linked_ptr<RulesRegistry::Rule> >& rules) { 178 for (std::vector<linked_ptr<RulesRegistry::Rule> >::const_iterator rule [all...] |
/external/icu/icu4c/source/test/cintltst/ |
citertst.c | 352 UChar rule[50]; local 353 int rulelen = u_unescape(str, rule, 50); 367 coll = ucol_openRules(rule, rulelen, UCOL_ON, UCOL_TERTIARY, NULL, &status); 420 UChar rule[50]; local 446 u_uastrcpy(rule, "&a,A < b,B < c,C, d,D < z,Z < ch,cH,Ch,CH"); 447 c1 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status); 449 log_verbose("Contraction rule testing back and forth with no normalization\n"); 470 u_uastrcpy(rule, "&a < b < c/abd < d"); 471 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status) 788 UChar rule[256]; local 1009 UChar rule[50]; local [all...] |
/frameworks/base/services/core/java/com/android/server/firewall/ |
IntentFirewall.java | 153 List<Rule> candidateRules; 156 candidateRules = new ArrayList<Rule>(); 161 // rule against the intent 163 Rule rule = candidateRules.get(i); local 164 if (rule.matches(this, resolvedComponent, intent, callerUid, callerPid, resolvedType, 166 block |= rule.getBlock(); 167 log |= rule.getLog(); 302 List<List<Rule>> rulesByType = new ArrayList<List<Rule>>(3) 336 Rule rule = new Rule(); local 373 Rule rule = rules.get(ruleIndex); local 378 resolver.addComponentFilter(rule.getComponentFilter(i), rule); local 487 private final Rule rule; field in class:IntentFirewall.FirewallIntentFilter [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
StylesSidebarPane.js | 49 addButton.title = WebInspector.UIString("New Style Rule"); 526 var rule = pseudoElementCSSRules.rules[j]; 527 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.styleSheetId) }) [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
AbstractTest.java | 66 public void setHeader(String rule, String lexicalRule, String treeRule, int numOfTest, int line) { 75 else buf.append(rule + ", line"+line+")" + " - ");
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
WorkSpaceController.java | 158 private void OnSelectRule(Rule rule) { 159 if(rule == null) throw new IllegalArgumentException("Null"); 160 this.view.paneEditor.OnLoadRule(rule); 161 this.view.paneStatus.setRule(rule.getName()); 164 this.runner.OnShowRuleResult(rule); 217 /** Event handler for rule list selection. */ 222 final Rule rule = (Rule) list.getSelectedValue() local [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeRewriter.h | 43 - (id)rule; 51 ANTLRfptr *rule; variable 60 - (ANTLRTreeRewriter *) applyOnce:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule; 61 - (ANTLRTreeRewriter *) applyRepeatedly:(id<ANTLRTree>)t Rule:(ANTLRfptr *)whichRule;
|
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_policy_provider_unittest.cc | 31 typedef std::vector<Rule> Rules; 72 Rule rule = rule_iterator->Next(); local 75 EXPECT_EQ(ContentSettingsPattern::Wildcard(), rule.primary_pattern); 76 EXPECT_EQ(ContentSettingsPattern::Wildcard(), rule.secondary_pattern); 77 EXPECT_EQ(CONTENT_SETTING_BLOCK, ValueToContentSetting(rule.value.get())); 96 Rule rule = rule_iterator->Next(); local 99 EXPECT_EQ(ContentSettingsPattern::Wildcard(), rule.primary_pattern); 100 EXPECT_EQ(ContentSettingsPattern::Wildcard(), rule.secondary_pattern) [all...] |
/external/chromium_org/extensions/common/features/ |
complex_feature_unittest.cc | 51 // Rule: "extension", whitelist "foo". 53 scoped_ptr<base::DictionaryValue> rule( 58 simple_feature->Parse(rule.get()); 61 // Rule: "legacy_packaged_app", whitelist "bar". 63 rule = DictionaryBuilder() 67 simple_feature->Parse(rule.get()); 72 // Test match 1st rule. 81 // Test match 2nd rule. 111 // Rule: "extension", channel trunk. 113 scoped_ptr<base::DictionaryValue> rule( [all...] |
/external/chromium_org/net/cert/ |
mock_cert_verifier.cc | 16 struct MockCertVerifier::Rule { 17 Rule(X509Certificate* cert, 79 Rule rule(cert, host_pattern, verify_result, rv); 80 rules_.push_back(rule);
|
/external/chromium_org/sandbox/win/src/ |
policy_low_level.h | 91 // Adds a rule to be generated when Done() is called. 92 // service: The id of the service that this rule is associated with, 95 bool AddRule(int service, PolicyRule* rule); 103 const PolicyRule* rule; member in struct:sandbox::LowLevelPolicy::RuleNode 125 // rule and its associated action. 134 // Adds a string comparison to the rule. 136 // parameter: the expected index of the argument for this rule. For example 143 // Adds a number match comparison to the rule. 145 // parameter: the expected index of the argument for this rule.
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSStyleSheet.idl | 28 [RaisesException] unsigned long insertRule(DOMString rule, optional unsigned long index);
|
/external/chromium_org/third_party/libaddressinput/src/cpp/test/ |
rule_retriever_test.cc | 27 #include "rule.h" 35 using i18n::addressinput::Rule; 59 Rule rule_; 64 const Rule& rule) { 67 rule_.CopyFrom(rule);
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
cat.py | 60 for rule in sorter.iter_rule(): 61 if rule.name not in order: 62 order.append(rule.name) 126 for rule in sorter.iter_rule(): 128 category['name'] = rule.name 130 for sub_world, sub_breakdown in rule.iter_subs(): 134 if rule.hidden: 137 breakdown[rule.name] = category 141 # Note that a bucket which doesn't match any rule is just dropped.
|
/ndk/tests/build/issue42841-LOCAL_PATH/jni/ |
Android.mk | 4 # make: *** No rule to make target /issue42841-LOCAL_PATH.c', needed by
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
ResizeState.java | 30 * The associated rule 89 * @param rule the associated rule 94 ResizeState(BaseLayoutRule rule, INode layout, Object layoutView, INode node) { 95 mRule = rule;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
ZoomControlsRuleTest.java | 43 ZoomControlsRule rule = new ZoomControlsRule(); local 46 DropFeedback feedback = rule.onDropEnter(layout, null/*targetView*/, elements);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
ASTParser.stg | 38 * token, set, rule, wildcard 44 @rule.setErrorReturnValue() ::= << 124 // RULE REF AST 126 /** rule when output=AST */ 127 ruleRef(rule,label,elementIndex,args,scope) ::= << 132 /** rule! is same as normal rule ref */ 133 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 135 /** rule^ */ 136 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
ASTParser.stg | 38 * token, set, rule, wildcard 44 @rule.setErrorReturnValue() ::= << 123 // RULE REF AST 125 /** rule when output=AST */ 126 ruleRef(rule,label,elementIndex,args,scope) ::= << 131 /** rule! is same as normal rule ref */ 132 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 134 /** rule^ */ 135 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
ASTParser.stg | 39 * token, set, rule, wildcard 45 @rule.setErrorReturnValue() ::= << 128 // RULE REF AST 130 /** rule when output=AST */ 131 ruleRef(rule,label,elementIndex,args,scope) ::= <% 138 /** rule! is same as normal rule ref */ 139 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 141 /** rule^ */ 142 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
ASTParser.stg | 38 * token, set, rule, wildcard 45 @rule.setErrorReturnValue() ::= << 134 // RULE REF AST 136 /** rule when output=AST */ 137 ruleRef(rule,label,elementIndex,args,scope) ::= << 142 /** rule! is same as normal rule ref */ 143 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 145 /** rule^ */ 146 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= < [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
ASTParser.stg | 35 * token, set, rule, wildcard 40 @rule.setErrorReturnValue() ::= << 41 /* ASTParser rule.setErrorReturnValue */ 130 // RULE REF AST 132 /** rule when output=AST */ 133 ruleRef(rule,label,elementIndex,args,scope) ::= << 140 /** rule! is same as normal rule ref */ 141 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 143 /** rule^ * [all...] |