Searched defs:matched (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DAccessibilityManagerTest.java214 * @param matched The event to check.
215 * @return True if expectations are matched.
217 private static AccessibilityEvent eqAccessibilityEvent(AccessibilityEvent matched) { argument
218 reportMatcher(new AccessibilityEventMather(matched));
243 public boolean matches(Object matched) { argument
244 if (!(matched instanceof AccessibilityEvent)) {
247 AccessibilityEvent receivedEvent = (AccessibilityEvent) matched;
263 public boolean matches(Object matched) { argument
264 if (!(matched instanceof IAccessibilityManagerClient)) {
/frameworks/base/core/jni/
H A Dandroid_net_TrafficStats.cpp89 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64 local
93 if (matched >= 5) {
94 if (matched == 7) {
102 if (matched == 7) {
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp185 if (matched(**in, pInputFile, pInputSection))
199 if (matched(**in, pInputFile, pInputSection))
308 bool SectionMap::matched(const SectionMap::Input& pInput, function in class:SectionMap
312 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile))
319 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) {
328 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
337 bool SectionMap::matched(const WildcardPattern& pPattern, function in class:SectionMap
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1180 private boolean matched; field in class:AbstractMessageParser.Format
1188 public void setMatched(boolean matched) { this.matched = matched; } argument
1193 // This character only implies special formatting if it was matched.
1195 if (matched) {
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp2459 bool matched = false; local
2463 matched = true;
2466 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) == 0;
2469 matched = ((*it)->flag() & llvm::ELF::SHF_WRITE) != 0;
2473 if (matched)

Completed in 862 milliseconds