HomeSort by relevance Sort by last modified time
    Searched refs:mId (Results 1 - 25 of 1445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/java/android/media/
AudioHandle.java 26 private final int mId;
29 mId = id;
33 return mId;
42 return mId == ah.id();
47 return mId;
52 return Integer.toString(mId);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadIdAndStartDate.java 23 public final long mId;
26 mId = id;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
MapContact.java 25 private final long mId;
28 mId = id;
41 return mId;
45 if (mId > 0) {
46 return BluetoothMapUtils.getLongLongAsString(mId, 0);
52 if (mId > 0) {
53 return new SignedLongLong(mId, 0);
  /frameworks/base/services/core/java/com/android/server/pm/
KeySetHandle.java 22 private final long mId;
26 mId = id;
34 mId = id;
39 return mId;
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/demo/
DemoItem.java 20 private final String mId;
24 mId = id;
29 return mId;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockTextAppearanceFactory.java 47 private final int mId;
49 mId = id;
52 return mId;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetAttributeFix.java 52 if (mId.equals(AccessibilityDetector.ISSUE.getId())) {
54 } else if (mId.equals(InefficientWeightDetector.BASELINE_WEIGHTS.getId())) {
56 } else if (mId.equals(SecurityDetector.EXPORTED_SERVICE.getId())) {
58 } else if (mId.equals(TextFieldDetector.ISSUE.getId())) {
60 } else if (mId.equals(TranslationDetector.MISSING.getId())) {
62 } else if (mId.equals(ManifestDetector.ALLOW_BACKUP.getId())) {
64 } else if (mId.equals(MissingIdDetector.ISSUE.getId())) {
67 assert false : mId;
74 if (mId.equals(TranslationDetector.MISSING.getId())) {
83 if (mId.equals(AccessibilityDetector.ISSUE.getId()))
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
MyAutofillId.java 25 private final AutofillId mId;
28 mId = id;
35 result = prime * result + ((mId == null) ? 0 : mId.hashCode());
45 if (mId == null) {
46 if (other.mId != null) return false;
47 } else if (!mId.equals(other.mId)) {
55 return mId.toString();
65 dest.writeParcelable(mId, flags)
    [all...]
SaveInfoTest.java 36 private final AutofillId mId = new AutofillId(42);
67 new AutofillId[] { mId });
74 new AutofillId[] { mId });
82 new AutofillId[] { mId });
90 new AutofillId[] { mId });
93 () -> builder.addSanitizer(null, mId));
96 () -> builder.addSanitizer(mock(Sanitizer.class), mId));
105 () -> builder.addSanitizer(mSanitizer, new AutofillId[] {mId, mId}));
111 new AutofillId[] { mId });
    [all...]
  /frameworks/base/cmds/statsd/src/config/
ConfigKey.h 44 return mId;
54 return mId < that.mId;
58 return mUid == that.mUid && mId == that.mId;
64 int64_t mId;
  /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/text/
TestEmojiMetadata.java 23 private int mId;
28 mId = id;
37 return mId;
  /frameworks/base/core/java/android/bluetooth/
BluetoothMasInstance.java 24 private final int mId;
30 mId = id;
39 return mId == ((BluetoothMasInstance) o).mId;
46 return mId + (mChannel << 8) + (mMsgTypes << 16);
51 return Integer.toString(mId) + ":" + mName + ":" + mChannel + ":"
74 out.writeInt(mId);
88 return mId;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordListInfo.java 23 public final String mId;
27 mId = id;
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 26 private final int mId;
31 mId = id;
35 return mId;
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
72 message.set(AdbMessage.A_OKAY, mId, mPeerId);
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestAlertActivity.java 11 int mId;
18 mId = intent.getIntExtra("id", -1);
19 Log.d("StatusBarTest", "Remembering notification id=" + mId);
26 Log.d("StatusBarTest", "onPause: Canceling notification id=" + mId);
28 nm.cancel(mId);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/
PhotoItem.java 24 private long mId;
28 mId = id;
32 return mId;
52 dest.writeLong(mId);
70 mId = in.readLong();
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
WorkStatus.java 34 private @NonNull UUID mId;
44 mId = id;
51 return mId;
73 if (mId != null ? !mId.equals(that.mId) : that.mId != null) return false;
84 int result = mId != null ? mId.hashCode() : 0;
94 + "mId='" + mId + '\'
    [all...]
  /frameworks/base/core/java/android/service/notification/
SnoozeCriterion.java 31 private final String mId;
36 mId = id;
43 mId = in.readString();
45 mId = null;
63 return mId;
100 if (mId != null) {
102 dest.writeString(mId);
127 if (mId != null ? !mId.equals(that.mId) : that.mId != null) return false
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
CompletionInfo.java 52 private final long mId;
67 mId = id;
88 mId = id;
95 mId = source.readLong();
106 return mId;
137 + "\" id=" + mId + " label=" + mLabel + "}";
147 dest.writeLong(mId);
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
FunnyNamedEntity.java 33 private int mId;
38 mId = id;
43 return mId;
47 mId = id;
65 if (mId != entity.mId) return false;
71 int result = mId;
  /frameworks/support/room/integration-tests/testapp/src/main/java/androidx/room/integration/testapp/database/
Customer.java 31 private int mId;
38 return mId;
42 this.mId = id;
72 if (mId != customer.mId) {
84 int result = mId;
93 + "mId=" + mId
  /developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 28 private final int mId;
32 mId = id;
48 mListener.onTextChanged(mId, s.toString());
  /developers/samples/android/admin/NfcProvisioning/Application/src/main/java/com/example/android/nfcprovisioning/
TextWatcherWrapper.java 28 private final int mId;
32 mId = id;
48 mListener.onTextChanged(mId, s.toString());
  /development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/
TextWatcherWrapper.java 28 private final int mId;
32 mId = id;
48 mListener.onTextChanged(mId, s.toString());
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
InputSource.cpp 36 mId = static_cast<audio_source_t>(context.getItemAsInteger(MappingKeyIdentifier));
38 mPolicyPluginInterface->addInputSource(getFormattedMappingValue(), mId);
45 return mPolicyPluginInterface->setDeviceForInputSource(mId, applicableInputDevice);

Completed in 1467 milliseconds

1 2 3 4 5 6 7 8 91011>>