HomeSort by relevance Sort by last modified time
    Searched refs:rules (Results 251 - 275 of 1181) sorted by null

<<11121314151617181920>>

  /external/lldb/test/lang/objc/objc-dynamic-value/
Makefile 6 include $(LEVEL)/Makefile.rules
  /external/lldb/test/lang/objc/objc-ivar-offsets/
Makefile 6 include $(LEVEL)/Makefile.rules
  /external/lldb/test/lang/objc/objc-optimized/
Makefile 8 include $(LEVEL)/Makefile.rules
  /external/lldb/test/lang/objc/objc-stepping/
Makefile 6 include $(LEVEL)/Makefile.rules
  /external/lldb/test/lang/objc/real-definition/
Makefile 6 include $(LEVEL)/Makefile.rules
  /external/lldb/test/macosx/order/
Makefile 7 include $(LEVEL)/Makefile.rules
  /external/lldb/test/python_api/frame/inlines/
Makefile 9 include $(LEVEL)/Makefile.rules
  /external/lldb/test/python_api/lldbutil/iter/
Makefile 8 include $(LEVEL)/Makefile.rules
  /external/lldb/test/python_api/lldbutil/process/
Makefile 8 include $(LEVEL)/Makefile.rules
  /external/lldb/test/python_api/module_section/
Makefile 8 include $(LEVEL)/Makefile.rules
  /external/llvm/tools/lli/ChildTarget/
Makefile 19 include $(LLVM_SRC_ROOT)/Makefile.rules
  /hardware/intel/common/libva/debian.upstream/
rules 3 include /usr/share/cdbs/1/rules/debhelper.mk
5 include /usr/share/cdbs/1/rules/utils.mk
  /external/chromium_org/ui/base/l10n/
l10n_util_plurals.cc 15 scoped_ptr<icu::PluralRules> rules(
20 rules.reset(icu::PluralRules::createRules(fallback_rules, err));
23 return rules.Pass();
38 scoped_ptr<icu::PluralRules> rules(BuildPluralRules());
46 // use it unless it's 'other' (i=0) or it's defined in the rules
50 (i == 0 || rules->isKeyword(kKeywords[i]))) {
58 new icu::PluralFormat(*rules, pattern, err));
  /external/chromium_org/third_party/WebKit/Source/core/css/
PageRuleCollector.cpp 70 void PageRuleCollector::matchPageRules(RuleSet* rules)
72 if (!rules)
75 rules->compactRulesIfNeeded();
77 matchPageRulesForList(matchedPageRules, rules->pageRules(), m_isLeftPage, m_isFirstPage, m_pageName);
107 void PageRuleCollector::matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& rules, bool isLeftPage, bool isFirstPage, const String& pageName)
109 for (unsigned i = 0; i < rules.size(); ++i) {
110 StyleRulePage* rule = rules[i];
120 // Add this rule to our list of matched rules.
PageRuleCollector.h 37 void matchPageRules(RuleSet* rules);
46 void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& rules, bool isLeftPage, bool isFirstPage, const String& pageName);
  /external/bison/src/
gram.c 37 rule *rules = NULL; variable
164 int length = rule_rhs_length (&rules[r]);
183 if (filter && !filter (&rules[r]))
187 else if (previous_lhs && previous_lhs != rules[r].lhs)
190 rule_lhs_print (&rules[r], previous_lhs, out);
191 rule_rhs_print (&rules[r], out);
192 previous_lhs = rules[r].lhs;
213 xml_puts (out, level + 1, "<rules>");
217 if (rule_useless_in_grammar_p (&rules[r]))
219 else if (rule_useless_in_parser_p (&rules[r])
    [all...]
  /external/chromium_org/sandbox/mac/
policy_unittest.cc 17 policy.rules["allow"] = Rule(POLICY_ALLOW);
18 policy.rules["deny_error"] = Rule(POLICY_DENY_ERROR);
19 policy.rules["deny_dummy"] = Rule(POLICY_DENY_DUMMY_PORT);
20 policy.rules["substitue"] = Rule(mach_task_self());
27 policy.rules["test"] = rule;
34 policy.rules["test"] = rule;
42 policy.rules["allow"] = rule;
50 policy.rules["deny_error"] = rule;
58 policy.rules["deny_dummy"] = rule;
  /external/chromium_org/chrome/browser/net/
dns_probe_test_util.cc 30 MockDnsClientRuleList rules; local
31 rules.push_back(MockDnsClientRule(DnsProbeRunner::kKnownGoodHostname, kTypeA,
34 return scoped_ptr<DnsClient>(new net::MockDnsClient(config, rules));
  /external/chromium_org/net/proxy/
proxy_config_service_common_unittest.cc 64 bypass_rules.rules().begin();
65 it != bypass_rules.rules().end(); ++it) {
96 const ProxyConfig::ProxyRules& rules) const {
100 if (rules.type != type) {
102 << type << " but was: " << rules.type;
107 rules.single_proxies, &failure_details, &failed);
109 rules.proxies_for_http, &failure_details,
112 rules.proxies_for_https, &failure_details,
115 rules.fallback_proxies, &failure_details, &failed);
117 std::string actual_flattened_bypass = FlattenProxyBypass(rules.bypass_rules)
    [all...]
  /external/junit/src/org/junit/rules/
RuleChain.java 4 package org.junit.rules;
72 private RuleChain(List<TestRule> rules) {
73 this.rulesStartingWithInnerMost= rules;
78 * the rules of the current {@code RuleChain}.
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_store_unittest.cc 68 std::vector<content_settings::Rule>* rules) {
69 rules->clear();
73 rules->push_back(rule_iterator->Next());
194 std::vector<content_settings::Rule> rules; local
196 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
197 ASSERT_EQ(0u, rules.size());
213 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
214 ASSERT_EQ(1u, rules.size());
215 CheckRule(rules[0], pattern, pattern, CONTENT_SETTING_ALLOW);
231 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
241 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
249 store(), CONTENT_SETTINGS_TYPE_COOKIES, std::string(), incognito, &rules); local
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/x86_64-linux-android/lib/ldscripts/
i386linux.xr 17 *(.rules)
i386linux.xu 17 *(.rules)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/lib/ldscripts/
i386linux.xr 17 *(.rules)
i386linux.xu 17 *(.rules)

Completed in 746 milliseconds

<<11121314151617181920>>