Searched refs:type (Results 326 - 350 of 571) sorted by relevance

<<11121314151617181920>>

/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastConfigService.java361 * @param type GSM or CDMA
366 SmsManager manager, boolean enable, int type, int start, int end) {
368 return manager.enableCellBroadcastRange(start, end, type);
370 return manager.disableCellBroadcastRange(start, end, type);
365 setCellBroadcastRange( SmsManager manager, boolean enable, int type, int start, int end) argument
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DContactDeletionInteraction.java251 AccountType type = accountTypes.getAccountType(accountType, dataSet);
252 boolean writable = type == null || type.areContactsWritable();
H A DContactMultiDeletionInteraction.java204 final AccountType type = accountTypes.getAccountType(accountType, dataSet);
205 boolean writable = type == null || type.areContactsWritable();
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DVCardService.java61 * Specifies the type of operation. Used when constructing a notification, canceling
245 final int type = processor.getType();
247 listener.onCancelRequest(request, type);
249 if (type == TYPE_EXPORT) {
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogNotificationsHelper.java207 * Returns the new calls of a certain type for which a notification should be generated.
210 public List<NewCall> query(int type); argument
256 public List<NewCall> query(int type) { argument
262 final String[] selectionArgs = new String[]{ Integer.toString(type) };
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DSSLUtils.java368 private static void logError(String alias, String type, Exception ex) { argument
371 LogUtils.e(TAG, "Unable to retrieve " + type + " for [" + alias + "] due to " + ex);
373 LogUtils.e(TAG, "Unable to retrieve " + type + " due to " + ex);
/packages/apps/Gallery2/src/com/android/photos/
H A DMultiChoiceManager.java98 int type = mDelegate.getItemMediaType(item);
99 if (type == FileColumns.MEDIA_TYPE_IMAGE) {
101 } else if (type == FileColumns.MEDIA_TYPE_VIDEO) {
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDefaultLayoutParser.java219 int type;
221 while ((type = parser.next()) != XmlPullParser.END_TAG ||
223 if (type != XmlPullParser.START_TAG || addedId > -1) {
H A DInvariantDeviceProfile.java188 int type;
190 while (((type = parser.next()) != XmlPullParser.END_TAG ||
191 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
192 if ((type == XmlPullParser.START_TAG) && "profile".equals(parser.getName())) {
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DApnsXmlProcessor.java44 public void process(String mccMnc, String key, String value, String type); argument
58 APN_ATTRIBUTE_MAP.put("type", Telephony.Carriers.TYPE);
108 * Move XML parser forward to next event type or the end of doc
111 * @return The final event type we meet
246 // Some of the values should not be string type, converting them to desired types
311 // We are at the start tag, the name of the tag is the type
313 final String type = mInputParser.getName();
326 mMmsConfigHandler.process(mccMnc, key, value, type);
/packages/apps/Settings/src/com/android/settings/
H A DUserCredentialsSettings.java205 for (final Credential.Type type : Credential.Type.values()) {
206 for (final String alias : keyStore.list(type.prefix)) {
216 c.storedTypes.add(type);
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dencodedstreamtest.cpp195 void TestAutoUTFOutputStream(UTFType type, bool putBOM, const char *expectedFilename) { argument
203 AutoUTFOutputStream<unsigned, FileWriteStream> eos(os, type, putBOM);
218 AutoUTFOutputStream<unsigned, MemoryBuffer> eos(mb, type, putBOM);
277 // Auto detection fail, use user defined UTF type
H A Ditoatest.cpp20 RAPIDJSON_DIAG_OFF(type-limits)
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DSources.java214 Log.d(TAG, "Creating external source for type=" + accountType
220 source.accountType = auth.type;
233 * that matches the given account type.
238 if (accountType.equals(auth.type)) {
242 throw new IllegalStateException("Couldn't find authenticator for specific account type");
256 final ContactsSource source = getInflatedSource(account.type,
292 Log.w(TAG, "Unknown type=" + accountType + ", mime=" + mimeType);
299 * Return {@link ContactsSource} for the given account type.
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordComposer.java416 // `type' should be one of the LastComposedWord.COMMIT_TYPE_* constants above.
418 public LastComposedWord commitWord(final int type, final CharSequence committedWord, argument
427 if (type != LastComposedWord.COMMIT_TYPE_DECIDED_WORD
428 && type != LastComposedWord.COMMIT_TYPE_MANUAL_PICK) {
/packages/apps/Calendar/src/com/android/calendar/
H A DGeneralPreferences.java365 // If needed, migrate the old alerts type settin
367 String type = prefs.getString(KEY_ALERTS_TYPE, ALERT_TYPE_STATUS_BAR);
368 if (type.equals(ALERT_TYPE_OFF)) {
372 } else if (type.equals(ALERT_TYPE_STATUS_BAR)) {
376 } else if (type.equals(ALERT_TYPE_ALERTS)) {
/packages/apps/Camera2/src/com/android/camera/
H A DOnScreenHint.java73 mParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_PANEL;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DSelectAccountDialogFragment.java67 text2.setText("Type: " + account.type);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DSamsungAccountType.java37 * A writable account type that can be used to support samsung contacts. This may not perfectly
41 * setup to support the values used by Samsung. But, not everything in the Samsung account type is
42 * supported. The Samsung account type includes a "Message Type" mimetype that we have no intention
50 public SamsungAccountType(Context context, String authenticatorPackageName, String type) { argument
51 this.accountType = type;
74 Log.e(TAG, "Problem building account type", e);
79 * Returns {@code TRUE} if this is samsung's account type and Samsung hasn't bothered to
82 public static boolean isSamsungAccountType(Context context, String type, argument
84 return ACCOUNT_TYPE_SAMSUNG.equals(type)
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DGalleryActionBar.java179 public static String getClusterByTypeString(Context context, int type) { argument
181 if (item.action == type) {
358 public boolean setSelectedAction(int type) { argument
363 if (item.action == type) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterDrawRepresentation.java60 private static final String SERIAL_TYPE = "type";
85 public Parameter getParam(int type) { argument
86 return mAllParam[type];
272 byte type = (byte) mParamStyle.getSelected();
277 sd.mType = type;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateView.java75 public StateView(Context context, int type) { argument
77 mType = type;
97 public void setType(int type) { argument
98 mType = type;
/packages/apps/Settings/tests/unit/src/com/android/settings/
H A DTetherServiceTest.java162 for (int type : types) {
164 intent.putExtra(EXTRA_REM_TETHER_TYPE, type);
271 private void runProvisioningForType(int type) { argument
273 intent.putExtra(EXTRA_ADD_TETHER_TYPE, type);
363 // Stub out prefs to control the persisted tether type list.
/packages/apps/TV/src/com/android/tv/menu/
H A DOptionsRowAdapter.java85 protected abstract void executeAction(int type); argument
138 // not be used(recycled) by other type of MenuAction. So the selection state of the view can
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DBluetoothPairingDialog.java160 Log.e(TAG, "Incorrect pairing type received, not showing any dialog");
320 Log.e(TAG, "Incorrect pairing type received");
332 public static EntryDialogFragment newInstance(BluetoothDevice device, int type) { argument
337 b.putInt(ARG_TYPE, type);
391 throw new IllegalStateException("Incorrect pairing type for" +
414 String pairingKey, int type) {
419 b.putInt(ARG_TYPE, type);
413 newInstance(BluetoothDevice device, String pairingKey, int type) argument

Completed in 2937 milliseconds

<<11121314151617181920>>