Searched defs:id (Results 1 - 25 of 546) sorted by relevance

1234567891011>>

/packages/apps/Gallery2/jni_jpegstream/src/
H A Doutputstream_wrapper.cpp47 void OutputStreamWrapper::setWriteMethodID(jmethodID id) { argument
48 sWriteID = id;
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/
H A DAnalyticsUtils.java25 public static String getMenuItemString(int id) { argument
27 if (id == R.id.archive) {
29 } else if (id == R.id.remove_folder) {
31 } else if (id == R.id.delete) {
33 } else if (id == R.id.discard_drafts) {
35 } else if (id
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
H A DWorkspaceAccessibilityHelper.java40 * Find the virtual view id corresponding to the top left corner of any drop region by which
41 * the passed id is contained. For an icon, this is simply
44 protected int intersectsValidDropTarget(int id) { argument
48 int x = id % mCountX;
49 int y = id / mCountX;
58 // drop target by which the passed id is contained.
95 return id;
101 return id;
109 protected String getConfirmationForIconDrop(int id) { argument
110 int x = id
130 getLocationDescriptionForIconDrop(int id) argument
[all...]
H A DFolderAccessibilityHelper.java43 protected int intersectsValidDropTarget(int id) { argument
44 return Math.min(id, mParent.getAllocatedContentSize() - mStartPosition - 1);
48 protected String getLocationDescriptionForIconDrop(int id) { argument
49 return mContext.getString(R.string.move_to_position, id + mStartPosition + 1);
53 protected String getConfirmationForIconDrop(int id) { argument
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DPlainTextEditText.java39 public boolean onTextContextMenuItem(final int id) { argument
40 if (id == android.R.id.paste) {
48 final boolean result = super.onTextContextMenuItem(id);
82 return super.onTextContextMenuItem(id);
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
H A DFakeMediaCacheManager.java24 public MediaCache<?> createMediaCacheById(final int id) { argument
25 switch (id) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DDownloadIdAndStartDate.java25 public DownloadIdAndStartDate(final long id, final long startDate) { argument
26 mId = id;
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DMapContact.java27 private MapContact(long id, String name) { argument
28 mId = id;
32 public static MapContact create(long id, String name){ argument
33 return new MapContact(id, name);
/packages/apps/Browser/src/com/android/browser/
H A DCombinedBookmarksCallbacks.java21 void openSnapshot(long id); argument
H A DOpenDownloadReceiver.java54 final long id = ids[0];
59 onReceiveAsync(context, id);
66 private void onReceiveAsync(Context context, long id) { argument
69 Uri uri = manager.getUriForDownloadedFile(id);
75 launchIntent.setDataAndType(uri, manager.getMimeTypeForDownloadedFile(id));
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java22 public abstract void notify(int id, NotificationWrapper notification); argument
23 public abstract void cancel(int id); argument
/packages/apps/CarrierConfig/src/com/android/carrierconfig/
H A DDefaultCarrierConfigService.java49 * files in our assets folder. First we look for a file named after the MCC+MNC of {@code id}
54 public PersistableBundle onLoadConfig(CarrierIdentifier id) { argument
57 if (id == null) {
71 String fileName = "carrier_config_" + id.getMcc() + id.getMnc() + ".xml";
73 config = readConfigFromXml(parser, id);
84 PersistableBundle vendorConfig = readConfigFromXml(vendorInput, id);
98 * parses it into a bundle if its filters match {@code id}. The format of XML bundles is defined
116 * @param id the details of the SIM operator used to filter parts of the document
119 static PersistableBundle readConfigFromXml(XmlPullParser parser, CarrierIdentifier id) argument
165 checkFilters(XmlPullParser parser, CarrierIdentifier id) argument
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/widget/selector/
H A DAlarmSelectionAdapter.java33 public AlarmSelectionAdapter(Context context, int id, List<AlarmSelection> alarms) { argument
34 super(context, id, alarms);
49 final TextTime alarmTime = (TextTime) row.findViewById(R.id.digital_clock);
54 final TextView alarmLabel = (TextView) row.findViewById(R.id.label);
67 final TextView daysOfWeekView = (TextView) row.findViewById(R.id.daysOfWeek);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DUndemoteOutgoingCallReceiver.java59 final long id = getContactIdFromPhoneNumber(context, number);
60 if (id != NO_CONTACT_FOUND) {
61 undemoteContactWithId(context, id);
68 private void undemoteContactWithId(Context context, long id) { argument
74 PinnedPositions.undemote(context.getContentResolver(), id);
100 final long id = cursor.getLong(0);
101 return id;
/packages/apps/Dialer/src/com/android/dialer/util/
H A DEmptyLoader.java48 public Loader<Object> onCreateLoader(int id, Bundle args) { argument
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DEntry.java33 public long id = 0; field in class:Entry
56 id = 0;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DParameterBrightness.java23 public ParameterBrightness(int id, int value) { argument
24 super(id, value, 0, 255);
H A DParameterHue.java23 public ParameterHue(int id, int value) { argument
24 super(id, value, 0, 360);
H A DParameterIconStyle.java24 public ParameterIconStyle(int id, Bitmap[] styles) { argument
25 super(id, styles.length);
H A DParameterOpacity.java22 public ParameterOpacity(int id, int value) { argument
23 super(id, value, 0, 255);
H A DParameterSaturation.java23 public ParameterSaturation(int id, int value) { argument
24 super(id, value, 0, 100);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorRedEye.java31 public static int ID = R.id.editorRedEye;
39 protected EditorRedEye(int id) { argument
40 super(id);
H A DImageOnlyEditor.java29 public final static int ID = R.id.imageOnlyEditor;
36 protected ImageOnlyEditor(int id) { argument
37 super(id);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterUserPresetRepresentation.java27 public FilterUserPresetRepresentation(String name, ImagePreset preset, int id) { argument
33 mId = id;
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
H A DBugleMediaCacheManager.java24 * for your cache id / media resource type in createMediaCacheById().
37 protected MediaCache<?> createMediaCacheById(final int id) { argument
38 switch (id) {
40 return new PoolableImageCache(SHARED_IMAGE_CACHE_SIZE, id, "DefaultImageCache");
43 return new PoolableImageCache(id, "AvatarImageCache");
46 return new MediaCache<VCardResource>(VCARD_CACHE_SIZE, id, "VCardCache");
49 Assert.fail("BugleMediaCacheManager: unsupported cache id " + id);

Completed in 3047 milliseconds

1234567891011>>