Searched defs:rule (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DSectionRules.cpp48 RuleList::iterator rule, rEnd = m_RuleList.end(); local
49 for (rule = m_RuleList.begin(); rule != rEnd; ++rule) {
50 if (pName.size() < rule->substr.size())
52 if (!StringHash<ES>::may_include(rule->hash, hash))
55 if (0 == strncmp(pName.c_str(), rule->substr.c_str(), rule->substr.size()))
56 return rule;
58 return rule;
64 RuleList::const_iterator rule, rEnd = m_RuleList.end(); local
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java523 new DependencyListener(this, node, dependency.rule));
640 dependency.rule);
661 // The Dependency rule (WITH or AFTER) that the listener should wait for on
665 public DependencyListener(AnimatorSet animatorSet, Node node, int rule) { argument
668 this.mRule = rule;
718 if (dependency.rule == mRule &&
720 // rule fired - remove the dependency and listener and check to
890 public int rule; field in class:AnimatorSet.Dependency
892 public Dependency(Node node, int rule) { argument
894 this.rule
[all...]
/frameworks/base/services/java/com/android/server/firewall/
H A DIntentFirewall.java129 Rule rule = matchingRules.get(i);
130 if (rule.matches(this, intent, callerApp, callerUid, callerPid, resolvedType,
132 block |= rule.getBlock();
133 log |= rule.getLog();
266 Rule rule = new Rule();
270 // if we get an error while parsing a particular rule, we'll just ignore
271 // that rule and continue on with the next rule
273 rule.readFromXml(parser);
275 Slog.e(TAG, "Error reading intent firewall rule", e
388 private final Rule rule; field in class:IntentFirewall.FirewallIntentFilter
390 FirewallIntentFilter(Rule rule) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp2244 // { rule --> { file locations } }
2247 void add(const String8& rule, const String8& where);
2250 void ProguardKeepSet::add(const String8& rule, const String8& where) argument
2252 ssize_t index = rules.indexOfKey(rule);
2254 index = rules.add(rule, SortedVector<String8>());
2280 String8 rule("-keep class ");
2281 rule += className;
2282 rule += " { <init>(...); }";
2290 keep->add(rule, location);
2297 String8 rule("
[all...]

Completed in 163 milliseconds