Searched defs:type (Results 1 - 25 of 278) sorted by relevance

1234567891011>>

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlarmManagerInterface.java25 public void set(int type, long triggerAtMillis, PendingIntent operation); argument
/packages/apps/Camera2/src/com/android/camera/burst/
H A DBurstResult.java26 * Each artifact has a type-name that specifies the kind of artifact it
28 * specific. An artifact only contains media items of a single type. A
44 * Returns all artifacts of the specified type.
46 * @param type the type of artifacts
47 * @return list of artifacts of that type
49 public List<BurstArtifact> getArtifactsByType(String type); argument
/packages/apps/Contacts/src/com/android/contacts/
H A DTypePrecedence.java79 * Returns the precedence (1 being the highest) of a type in the context of it's mimetype.
81 * @param mimetype The mimetype of the data with which the type is associated.
82 * @param type The integer type as defined in {@Link ContactsContract#CommonDataKinds}.
86 public static int getTypePrecedence(String mimetype, int type) { argument
93 if (typePrecedence[i] == type) {
/packages/apps/Messaging/src/android/support/v7/mms/
H A DCarrierConfigXmlParser.java29 void process(String type, String key, String value); argument
45 // We are at the start tag, the name of the tag is the type
47 final String type = mInputParser.getName();
59 mKeyValueProcessor.process(type, key, value);
/packages/apps/PhoneCommon/src/com/android/phone/common/util/
H A DSettingsUtil.java49 * @param type The type of sound.
54 Context context, Handler handler, int type, String key, int msg) {
57 if (type == RingtoneManager.TYPE_RINGTONE) {
60 ringtoneUri = RingtoneManager.getActualDefaultRingtoneUri(context, type);
74 ringtoneUri = RingtoneManager.getActualDefaultRingtoneUri(context, type);
53 updateRingtoneName( Context context, Handler handler, int type, String key, int msg) argument
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DTypePrecedence.java71 * Returns the precedence (1 being the highest) of a type in the context of it's mimetype.
73 * @param mimetype The mimetype of the data with which the type is associated.
74 * @param type The integer type as defined in {@Link ContactsContract#CommonDataKinds}.
78 public static int getTypePrecedence(String mimetype, int type) { argument
85 if (typePrecedence[i] == type) {
/packages/apps/Browser/src/com/android/browser/
H A DAccountsChangedReceiver.java60 String type = c.getString(1);
61 if (!contains(accounts, name, type)) {
62 delete(cr, name, type);
69 void delete(ContentResolver cr, String name, String type) { argument
77 cr.delete(uri, DELETE_SELECTION, new String[] { name, type });
80 boolean contains(Account[] accounts, String name, String type) { argument
83 && TextUtils.equals(a.type, type)) {
H A DNetworkStateHandler.java114 private void sendNetworkType(String type, String subtype) { argument
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DMockAlarmManager.java35 public void expectAlarmTime(int type, long millis) { argument
36 this.expectedAlarmType = type;
45 Assert.assertEquals("Alarm type not expected.", expectedAlarmType, actualAlarmType);
/packages/apps/Camera2/src/com/android/camera/one/v2/core/
H A DFrameServer.java48 public void submitRequest(List<Request> burstRequests, RequestType type) argument
H A DFrameServerImpl.java46 public void submitRequest(List<Request> burstRequests, RequestType type) argument
55 mCaptureSession.submitRequest(burstRequests, type);
H A DObservableFrameServer.java61 public void submitRequest(List<Request> burstRequests, RequestType type) argument
64 mDelegate.submitRequest(burstRequests, type);
/packages/apps/Email/provider_src/com/android/email/provider/
H A DAccountReconciler.java67 for (final String type : accountTypes) {
68 final android.accounts.Account[] accounts = am.getAccountsByType(type);
125 final String name, final String type) {
127 if (account.name.equalsIgnoreCase(name) && account.type.equalsIgnoreCase(type)) {
259 final String accountType = accountManagerAccount.type;
124 hasAmAccount(final List<android.accounts.Account> accounts, final String name, final String type) argument
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
H A DEmailContentSetupUtils.java60 Context context, int type) {
61 return setupMailbox(name, accountId, saveIt, context, type, null);
65 Context context, int type, Mailbox parentBox) {
73 box.mType = type;
59 setupMailbox(String name, long accountId, boolean saveIt, Context context, int type) argument
64 setupMailbox(String name, long accountId, boolean saveIt, Context context, int type, Mailbox parentBox) argument
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DImageCacheRequest.java38 Path path, long timeModified, int type, int targetSize) {
41 mType = type;
37 ImageCacheRequest(GalleryApp application, Path path, long timeModified, int type, int targetSize) argument
H A DSnailItem.java39 public Job<Bitmap> requestImage(int type) { argument
H A DUriSource.java51 String type = URLDecoder.decode(segment[2], CHARSET_UTF_8);
52 return new UriImage(mApplication, path, Uri.parse(uri), type);
62 String type = MimeTypeMap.getSingleton()
64 if (type != null) return type;
66 // Assume the type is image if the type cannot be resolved
68 String type = mApplication.getContentResolver().getType(uri);
69 if (type == null) type
74 findPathByUri(Uri uri, String type) argument
[all...]
/packages/apps/Launcher3/util/com/android/launcher3/
H A DDecoderRing.java53 * <P>This tool understands these file names and will use the embedded Key to detect the type and
60 * Copy the encoded snippet from the log, and specify the type explicitly, with the Logs flags:
125 // can't infer file type without the key
130 System.err.println("Explicit type ignored for multiple files.");
139 Class type = null;
143 type = TYPES[key.type];
145 System.err.println(source.getName() + " is a " + type.getSimpleName());
150 type = defaultType;
187 if (type
230 decodeBackupData(byte[] payload, Class type, boolean fromLogs) argument
[all...]
/packages/apps/Nfc/nci/jni/extns/pn54x/inc/
H A DphNxpExtns_Custom.h31 * For simple TLV, type[0] == 0x00
32 * For extended TLV, type[0] == 0xA0
35 uint8_t type[2]; member in struct:__anon40
80 ** function. Input is type and len. Response is provied in *val.
96 ** function. Input is type, len, *val.
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DUtil.java73 String type = resources.getResourceTypeName(res);
75 return makeResourceUri(appPkg, resPkg, type, name);
78 private static Uri makeResourceUri(String appPkg, String resPkg, String type, String name) { argument
82 uriBuilder.appendEncodedPath(type);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/
H A DActionKey.java29 public ActionKey(T type, B behavior) { argument
30 mType = type;
46 T type = null;
48 type = T.valueOf(clazzT, mTypeString);
51 mType = type;
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DDiff.java160 final String type, final ArrayList<WeightedString> list0,
165 System.out.println(type + " removed: " + word + " " + attribute0.mWord + " "
181 System.out.println(type + " freq changed: " + word + " "
191 System.out.println(type + " removed: " + word + " " + attribute0.mWord + " "
203 System.out.println(type + " added: " + word + " " + attribute1.mWord + " "
159 hasAttributesDifferencesAndPrintThemIfAny(final String word, final String type, final ArrayList<WeightedString> list0, final ArrayList<WeightedString> list1) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapAccountLoader.java133 BluetoothMapUtils.TYPE type) {
145 type);
132 createAppItem(ResolveInfo rInfo, boolean includeIcon, BluetoothMapUtils.TYPE type) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppSendFileInfo.java80 public BluetoothOppSendFileInfo(String fileName, String type, long length, argument
83 mMimetype = type;
91 public BluetoothOppSendFileInfo(String data, String type, long length, int status) { argument
95 mMimetype = type;
101 String type) {
138 contentType = type;
100 generateFileInfo(Context context, Uri uri, String type) argument
/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)

Completed in 1599 milliseconds

1234567891011>>