Searched refs:attributeMatches (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Analysis/IPA/ |
D | InlineCost.cpp | 1294 static bool attributeMatches(Function *F1, Function *F2, AttrKind Attr) { in attributeMatches() function 1302 return attributeMatches(Caller, Callee, "target-cpu") && in functionsHaveCompatibleAttributes() 1303 attributeMatches(Caller, Callee, "target-features") && in functionsHaveCompatibleAttributes() 1304 attributeMatches(Caller, Callee, Attribute::SanitizeAddress) && in functionsHaveCompatibleAttributes() 1305 attributeMatches(Caller, Callee, Attribute::SanitizeMemory) && in functionsHaveCompatibleAttributes() 1306 attributeMatches(Caller, Callee, Attribute::SanitizeThread); in functionsHaveCompatibleAttributes()
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
D | By.java | 76 return new MatchFinder(Predicates.attributeMatches(Attribute.TEXT, regex)); in textRegex()
|
D | Predicates.java | 208 …public static Predicate<UiElement> attributeMatches(final Attribute attribute, final String regex)…
|