Searched refs:mType (Results 1 - 25 of 91) sorted by relevance

1234

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DBuilderWrapper.java30 private int mType; field in class:BuilderWrapper
34 mType = type;
38 return mType;
41 public void setType(int mType) { argument
42 this.mType = mType;
H A DCPOWrapper.java27 private int mType; field in class:CPOWrapper
31 mType = type;
35 return mType;
39 this.mType = type;
/packages/services/Car/car-lib/src/android/car/hardware/radio/
H A DCarRadioEvent.java39 private final int mType; field in class:CarRadioEvent
52 return mType;
62 dest.writeInt(mType);
78 mType = type;
83 mType = in.readInt();
89 switch (mType) {
93 return mType + " " + data;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DImageCacheRequest.java33 private int mType; field in class:ImageCacheRequest
41 mType = type;
48 ((mType == MediaItem.TYPE_THUMBNAIL) ? "THUMB" :
49 (mType == MediaItem.TYPE_MICROTHUMBNAIL) ? "MICROTHUMB" : "?");
58 boolean found = cacheService.getImageData(mPath, mTimeModified, mType, buffer);
64 if (mType == MediaItem.TYPE_MICROTHUMBNAIL) {
79 Bitmap bitmap = onDecodeOriginal(jc, mType);
87 if (mType == MediaItem.TYPE_MICROTHUMBNAIL) {
97 cacheService.putImageData(mPath, mTimeModified, mType, array);
H A DActionImage.java53 private int mType; field in class:ActionImage.BitmapJob
56 mType = type;
61 int targetSize = MediaItem.getTargetSize(mType);
65 if (mType == MediaItem.TYPE_MICROTHUMBNAIL) {
/packages/services/Car/bluetooth/bt-map-client-lib/src/com/google/android/auto/mapservice/
H A DBluetoothMapEventReport.java67 private int mType; field in class:BluetoothMapEventReport
96 out.writeInt(mType);
103 mType = in.readInt();
107 mType = type;
111 return mType;
H A DBluetoothMapMessage.java38 private int mType; field in class:BluetoothMapMessage
83 mType = type;
87 return mType;
121 out.writeInt(mType);
143 mType = in.readInt();
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
H A Dsuggested_word.h46 mType(type), mIndexToPartialCommit(indexToPartialCommit),
62 return mType;
78 int mType; member in class:latinime::SuggestedWord
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DProcessingTask.java27 private int mType; field in class:ProcessingTask
35 Message msg = mProcessingHandler.obtainMessage(mType);
54 Message msg = mResultHandler.obtainMessage(mType);
62 Message msg = mResultHandler.obtainMessage(mType);
72 mType = taskController.getReservedType();
76 return mType;
/packages/services/Car/car-lib/src/android/car/navigation/
H A DCarNavigationInstrumentCluster.java48 private int mType; field in class:CarNavigationInstrumentCluster
87 return mType;
107 that.mType,
114 return mType == ClusterType.CUSTOM_IMAGES_SUPPORTED;
124 this.mType = type;
138 dest.writeInt(mType);
146 mType = in.readInt();
157 "type: " + mType + ", " +
/packages/services/Car/car-support-lib/src/android/support/car/navigation/
H A DCarNavigationInstrumentCluster.java52 private int mType; field in class:CarNavigationInstrumentCluster
94 return mType;
114 that.mType,
121 return mType == ClusterType.CUSTOM_IMAGES_SUPPORTED;
133 this.mType = type;
148 dest.writeInt(mType);
159 mType = in.readInt();
171 "type: " + mType + ", " +
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DState.java24 private int mType; field in class:State
37 mType = type;
64 return mType;
68 mType = type;
H A DStateView.java47 private int mType = DEFAULT; field in class:StateView
77 mType = type;
98 mType = type;
121 if (mType == BEGIN) {
153 if (mType == DEFAULT || mType == END) {
171 if (mType == END) {
182 if (mType != BEGIN) {
189 if (mType == END) {
200 if (mType !
[all...]
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DToggleDaltonizerPreferenceFragment.java37 private ListPreference mType; field in class:ToggleDaltonizerPreferenceFragment
50 mType = (ListPreference) findPreference("type");
62 if (preference == mType) {
95 mType.setValue(value);
96 mType.setOnPreferenceChangeListener(this);
97 final int index = mType.findIndexOfValue(value);
100 mType.setSummary(getString(R.string.daltonizer_type_overridden,
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DMimeRecord.java39 private final String mType; field in class:MimeRecord
43 mType = Preconditions.checkNotNull(mimeType);
50 return mType;
61 text.setText(mType);
67 return mType;
/packages/services/Telephony/src/com/android/phone/vvm/omtp/
H A DOmtpEvents.java130 private final int mType; field in class:OmtpEvents
134 mType = type;
139 mType = type;
144 mType = Type.OTHER;
150 return mType;
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
H A DPartialSuggestionProvider.java38 private int mType = -1; field in class:PartialSuggestionProvider
101 mType = (mType + 1) % 3;
103 if (mType == 0) {
109 if (mType == 1) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapAccountItem.java38 private final BluetoothMapUtils.TYPE mType; field in class:BluetoothMapAccountItem
51 this.mType = appType;
118 if(!other.mType.equals(this.mType)){
119 if(V) Log.d(TAG, "Wrong appType : " + this.mType + " vs " + other.mType);
167 if (mType == null) {
168 if (other.mType != null)
170 } else if (!mType.equals(other.mType))
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DBluetoothPairingDialog.java69 private int mType; field in class:BluetoothPairingDialog
112 mType = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, BluetoothDevice.ERROR);
115 Log.d(TAG, "Requested pairing Type = " + mType + " , Device = " + mDevice);
118 switch (mType) {
151 if (mType == BluetoothDevice.PAIRING_VARIANT_DISPLAY_PASSKEY) {
228 switch (mType) {
267 .replace(android.R.id.content, EntryDialogFragment.newInstance(mDevice, mType))
278 ConfirmationDialogFragment.newInstance(mDevice, mPairingKey, mType);
287 switch (mType) {
330 private int mType; field in class:BluetoothPairingDialog.EntryDialogFragment
411 private int mType; field in class:BluetoothPairingDialog.ConfirmationDialogFragment
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DToastBarOperation.java36 private final int mType; field in class:ToastBarOperation
54 mType = type;
59 return mType;
70 mType = in.readInt();
84 sb.append(" mType=");
85 sb.append(mType);
97 dest.writeInt(mType);
/packages/services/Car/car-lib/src/android/car/hardware/
H A DCarPropertyConfig.java41 private final Class<T> mType; field in class:CarPropertyConfig
48 mType = type;
54 public Class<T> getPropertyType() { return mType; }
122 dest.writeSerializable(mType);
134 mType = (Class<T>) in.readSerializable();
161 ", mType=" + mType +
233 private final Class<T> mType; field in class:CarPropertyConfig.Builder
239 mType = type;
270 return new CarPropertyConfig<>(mType, mPropertyI
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DLabeledEditorView.java83 private EditType mType; field in class:LabeledEditorView
286 return mType;
300 mEntry.getAsString(mType.customColumn),
303 mLabel.setSelection(mEditTypeAdapter.getPosition(mType));
304 if (mType != null) {
307 getContext().getString(mType.labelRes),
412 mType = RawContactModifier.getCurrentType(entry, kind);
448 mType = null;
451 mType = editType;
455 if (mType
[all...]
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
H A DSeqStep.java22 public OPTYPE mType; field in class:SeqStep
58 mType = type;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java41 private final Type mType; field in class:PagedViewIconCache.Key
45 mType = Type.ApplicationInfoKey;
51 mType = Type.ResolveInfoKey;
55 mType = Type.AppWidgetProviderInfoKey;
62 return (mType == t);
/packages/apps/Settings/src/com/android/settings/notification/
H A DSettingPref.java37 protected final int mType; field in class:SettingPref
48 mType = type;
53 mUri = getUriFor(mType, mSetting);
108 return putInt(mType, context.getContentResolver(), mSetting, value);
120 final int val = getInt(mType, context.getContentResolver(), mSetting, mDefault);

Completed in 604 milliseconds

1234