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

1234

/packages/apps/Contacts/src/com/android/contacts/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/apps/Dialer/java/com/android/contacts/common/model/
H A DBuilderWrapper.java31 private int mType; field in class:BuilderWrapper
35 mType = type;
39 return mType;
42 public void setType(int mType) { argument
43 this.mType = mType;
H A DCPOWrapper.java28 private int mType; field in class:CPOWrapper
32 mType = type;
36 return mType;
40 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/services/Car/car-support-lib/src/android/support/car/navigation/
H A DCarNavigationInstrumentCluster.java47 private int mType; field in class:CarNavigationInstrumentCluster
82 return mType;
113 that.mType,
125 return mType == CLUSTER_TYPE_CUSTOM_IMAGES_SUPPORTED;
137 this.mType = type;
149 "type: " + mType + ", " +
/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/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/Contacts/src/com/android/contacts/model/account/
H A DAccountDisplayInfo.java33 private final CharSequence mType; field in class:AccountDisplayInfo
42 mType = type;
56 return mType;
76 return !TextUtils.equals(mName, mType);
80 return withNameAndType(name, mType);
94 context.getString(typeFormat, mType), mIcon, mIsDeviceAccount);
/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.java49 private int mType; field in class:CarNavigationInstrumentCluster
91 return mType;
113 that.mType,
124 return mType == CLUSTER_TYPE_CUSTOM_IMAGES_SUPPORTED;
134 this.mType = type;
148 dest.writeInt(mType);
156 mType = in.readInt();
167 "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/Dialer/java/com/android/voicemail/impl/
H A DOmtpEvents.java126 private final int mType; field in class:OmtpEvents
130 mType = type;
135 mType = type;
140 mType = Type.OTHER;
146 return mType;
/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/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothPairingController.java54 private int mType; field in class:BluetoothPairingController
79 mType = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, BluetoothDevice.ERROR);
116 switch (mType) {
181 boolean requires16Digits = mType == BluetoothDevice.PAIRING_VARIANT_PIN_16_DIGITS;
192 switch (mType) {
212 switch (mType) {
231 switch (mType) {
251 switch (mType) {
266 if (mType == BluetoothDevice.PAIRING_VARIANT_DISPLAY_PASSKEY) {
268 } else if (mType
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DEventReport.java40 private final Type mType; field in class:EventReport
47 mType = parseType(attrs.get("type"));
49 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
67 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
148 return mType;
188 json.put("type", 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
113 mType = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, BluetoothDevice.ERROR);
116 Log.d(TAG, "Requested pairing Type = " + mType + " , Device = " + mDevice);
119 switch (mType) {
152 if (mType == BluetoothDevice.PAIRING_VARIANT_DISPLAY_PASSKEY) {
231 switch (mType) {
270 .replace(android.R.id.content, EntryDialogFragment.newInstance(mDevice, mType))
281 ConfirmationDialogFragment.newInstance(mDevice, mPairingKey, mType);
290 switch (mType) {
337 private int mType; field in class:BluetoothPairingDialog.EntryDialogFragment
418 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/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
H A DDownloadsDeletionPreferenceGroupTest.java55 private DownloadsDeletionType mType; field in class:DownloadsDeletionPreferenceGroupTest
66 mType = new DownloadsDeletionType(mContext, new String[0]);
70 mGroup.registerDeletionService(mType);
83 mType.onLoadFinished(null, result);
/packages/services/Car/car-lib/src/android/car/hardware/
H A DCarPropertyConfig.java42 private final Class<T> mType; field in class:CarPropertyConfig
49 mType = type;
55 public Class<T> getPropertyType() { return mType; }
123 dest.writeString(mType.getName());
137 mType = (Class<T>) Class.forName(className);
167 ", mType=" + mType +
239 private final Class<T> mType; field in class:CarPropertyConfig.Builder
245 mType = type;
276 return new CarPropertyConfig<>(mType, mPropertyI
[all...]

Completed in 746 milliseconds

1234