Searched refs:id (Results 1 - 25 of 969) sorted by relevance

1234567891011>>

/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
H A DASTaddr_spec.java6 public ASTaddr_spec(int id) { argument
7 super(id);
10 public ASTaddr_spec(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTaddress.java6 public ASTaddress(int id) { argument
7 super(id);
10 public ASTaddress(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTaddress_list.java6 public ASTaddress_list(int id) { argument
7 super(id);
10 public ASTaddress_list(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTangle_addr.java6 public ASTangle_addr(int id) { argument
7 super(id);
10 public ASTangle_addr(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTdomain.java6 public ASTdomain(int id) { argument
7 super(id);
10 public ASTdomain(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTgroup_body.java6 public ASTgroup_body(int id) { argument
7 super(id);
10 public ASTgroup_body(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTlocal_part.java6 public ASTlocal_part(int id) { argument
7 super(id);
10 public ASTlocal_part(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTmailbox.java6 public ASTmailbox(int id) { argument
7 super(id);
10 public ASTmailbox(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTname_addr.java6 public ASTname_addr(int id) { argument
7 super(id);
10 public ASTname_addr(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTphrase.java6 public ASTphrase(int id) { argument
7 super(id);
10 public ASTphrase(AddressListParser p, int id) { argument
11 super(p, id);
H A DASTroute.java6 public ASTroute(int id) { argument
7 super(id);
10 public ASTroute(AddressListParser p, int id) { argument
11 super(p, id);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordListInfo.java25 public WordListInfo(final String id, final String locale) { argument
26 mId = id;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DDialogManager.java49 public static final boolean isManagedId(int id) { argument
50 return (id == R.id.dialog_manager_id_1) || (id == R.id.dialog_manager_id_2);
77 int dialogId = mUseDialogId2 ? R.id.dialog_manager_id_2 : R.id.dialog_manager_id_1;
83 * This function returns null if the id is not one of the two reserved Ids.
85 public Dialog onCreateDialog(final int id, final Bundle bundle) { argument
86 if (id
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DCombinedBookmarksCallbacks.java21 void openSnapshot(long id); argument
H A DPreloader.java59 private PreloaderSession getSession(String id) { argument
61 if (LOGD_ENABLED) Log.d(LOGTAG, "Create new preload session " + id);
62 mSession = new PreloaderSession(id);
66 } else if (mSession.mId.equals(id)) {
67 if (LOGD_ENABLED) Log.d(LOGTAG, "Returning existing preload session " + id);
76 private PreloaderSession takeSession(String id) { argument
78 if (mSession != null && mSession.mId.equals(id)) {
90 public void handlePreloadRequest(String id, String url, Map<String, String> headers, argument
92 PreloaderSession s = getSession(id);
109 public void cancelSearchBoxPreload(String id) { argument
118 discardPreload(String id) argument
134 getPreloadedTab(String id) argument
151 PreloaderSession(String id) argument
[all...]
/packages/apps/Calculator/tests/src/com/android/calculator2/
H A DCalculatorHitSomeButtons.java91 tap(R.id.equal);
92 tap(R.id.del);
95 tap(R.id.digit5);
96 tap(R.id.digit6);
97 tap(R.id.digit7);
98 tap(R.id.div);
99 tap(R.id.digit3);
100 tap(R.id.equal);
106 tap(R.id.minus);
107 tap(R.id
121 tap(int id) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java6 public abstract void notify(int id, NotificationWrapper notification); argument
7 public abstract void cancel(int id); argument
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DMockTextAppearanceFactory.java48 public MockStyleSpan(int id) { argument
49 mId = id;
/packages/apps/Launcher2/
H A Dfill_screens.py60 id = 0;
64 id += 1
66 insert = insert % (id, "title", "", -100, s, x, y, 1, 1, 2, -1, 0)
68 folder_id = id
71 id += 1
72 intent = intentFormat % (APPLICATION_COMPONENTS[id % len(APPLICATION_COMPONENTS)])
74 insert = insert % (id, "title", intent, folder_id, 0, 0, 0, 1, 1, 0, -1, 0)
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILElement.java31 * The unique id.
36 public void setId(String id) argument
/packages/apps/Phone/src/com/android/phone/
H A DEmergencyDialer.java74 R.id.one, R.id.two, R.id.three,
75 R.id.four, R.id.five, R.id.six,
76 R.id.seven, R.id.eight, R.id.nine,
77 R.id
603 onCreateDialog(int id) argument
620 onPrepareDialog(int id, Dialog dialog) argument
[all...]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadHandler.java45 Log.i(TAG, "enqueued download. id: " + info.mId + ", uri: " + info.mUri);
56 Long id = keys.next();
57 DownloadInfo info = mDownloadsQueue.get(id);
59 ids.add(id);
60 mDownloadsInProgress.put(id, mDownloadsQueue.get(id));
62 Log.i(TAG, "started download for : " + id);
65 for (Long id : ids) {
66 mDownloadsQueue.remove(id);
70 synchronized boolean hasDownloadInQueue(long id) { argument
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/
H A DDevice.java37 * EAS requires a unique device id, so that sync is possible from a variety of different
40 * This would work on a real device as well, but it would be better to use the "real" id if
56 String id;
60 id = rdr.readLine();
62 if (id == null) {
63 // It's very bad if we read a null device id; let's delete that file
68 return id;
82 id = "androidc" + consistentDeviceId;
84 id = "android" + System.currentTimeMillis();
86 w.write(id);
[all...]
/packages/apps/Contacts/src/com/android/contacts/
H A DPhoneCallDetailsViews.java50 * The view should contain three text views with identifiers {@code R.id.name},
51 * {@code R.id.date}, and {@code R.id.number}, and a linear layout with identifier
52 * {@code R.id.call_types}.
55 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name),
56 view.findViewById(R.id.call_type),
57 (CallTypeIconsView) view.findViewById(R.id.call_type_icons),
58 (TextView) view.findViewById(R.id.call_count_and_date),
59 (TextView) view.findViewById(R.id.number),
60 (TextView) view.findViewById(R.id
[all...]
/packages/apps/Music/src/com/android/music/
H A DMusicBrowserActivity.java43 int activeTab = MusicUtils.getIntPref(this, "activetab", R.id.artisttab);
44 if (activeTab != R.id.artisttab
45 && activeTab != R.id.albumtab
46 && activeTab != R.id.songtab
47 && activeTab != R.id.playlisttab) {
48 activeTab = R.id.artisttab;

Completed in 569 milliseconds

1234567891011>>