Searched refs:id (Results 1 - 25 of 1112) 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/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DCommonPreferences.java29 public static void enable(final SharedPreferences pref, final String id) { argument
31 editor.putBoolean(id, true);
35 public static void disable(final SharedPreferences pref, final String id) { argument
37 editor.putBoolean(id, false);
/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/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorZoom.java22 public static final int ID = R.id.imageZoom;
25 super(ID, R.layout.filtershow_zoom_editor,R.id.imageZoom);
H A DImageOnlyEditor.java29 public final static int ID = R.id.imageOnlyEditor;
36 protected ImageOnlyEditor(int id) { argument
37 super(id);
/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/Nfc/src/com/android/nfc/handover/
H A DPendingHandoverTransfer.java9 public int id; field in class:PendingHandoverTransfer
15 PendingHandoverTransfer(int id, boolean incoming, BluetoothDevice remoteDevice, argument
17 this.id = id;
27 int id = in.readInt();
37 return new PendingHandoverTransfer(id, incoming, remoteDevice,
54 dest.writeInt(id);
/packages/apps/Gallery2/src/com/android/photos/data/
H A DAlbumSetLoader.java40 int id = (int) (500 * random);
42 id,
43 "Fun times " + id,
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILElement.java31 * The unique id.
36 public void setId(String id) argument

Completed in 4751 milliseconds

1234567891011>>