Searched refs:isMatch (Results 1 – 5 of 5) sorted by relevance
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/ |
D | TagVerifier.java | 39 public Result(CharSequence expectedContent, CharSequence actualContent, boolean isMatch) { in Result() argument 42 this.mIsMatch = isMatch; in Result() 56 public boolean isMatch() { in isMatch() method in TagVerifier.Result
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
D | NdefPushReceiverActivity.java | 91 boolean isMatch = messages != null in onNewIntent() 95 getPassButton().setEnabled(isMatch); in onNewIntent() 98 args.putBoolean(IS_MATCH_ARG, isMatch); in onNewIntent() 140 boolean isMatch = args.getBoolean(IS_MATCH_ARG); in onPrepareDialog() 142 alert.setTitle(isMatch in onPrepareDialog() 145 alert.setMessage(isMatch in onPrepareDialog()
|
D | TagVerifierActivity.java | 267 getPassButton().setEnabled(result.isMatch()); in onPostExecute() 272 args.putBoolean(IS_MATCH_ID, result.isMatch()); in onPostExecute() 377 boolean isMatch = args.getBoolean(IS_MATCH_ID); 380 alert.setTitle(isMatch
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/ |
D | PeripheralProfile.java | 110 ListsHelper.isMatch(deviceInfo.getChannelCounts(), attribs.mChannelCounts) && in matches() 111 ListsHelper.isMatch(deviceInfo.getChannelIndexMasks(), attribs.mChannelIndexMasks) && in matches() 112 ListsHelper.isMatch(deviceInfo.getChannelMasks(), attribs.mChannelPositionMasks) && in matches() 113 ListsHelper.isMatch(deviceInfo.getEncodings(), attribs.mEncodings) && in matches() 114 ListsHelper.isMatch(deviceInfo.getSampleRates(), attribs.mSampleRates); in matches()
|
D | ListsHelper.java | 20 static public boolean isMatch(int[] a, int[] b) { in isMatch() method in ListsHelper
|