Searched defs:id (Results 126 - 150 of 348) sorted by relevance

1234567891011>>

/frameworks/av/media/common_time/
H A DICommonTimeConfig.cpp123 virtual status_t getMasterElectionGroupId(uint64_t *id) { argument
133 *id = static_cast<uint64_t>(reply.readInt64());
140 virtual status_t setMasterElectionGroupId(uint64_t id) { argument
143 data.writeInt64(id);
384 uint64_t id; local
385 status_t status = getMasterElectionGroupId(&id);
388 reply->writeInt64(id);
395 uint64_t id = static_cast<uint64_t>(data.readInt64()); local
396 status_t status = setMasterElectionGroupId(id);
/frameworks/av/media/libaah_rtp/
H A Daah_tx_sender.h58 ALooper::handler_id handlerID() { return mReflector->id(); }
153 uint32_t id; member in struct:android::RetryPacket
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java364 TextView alertTitle = (TextView) findViewById(com.android.internal.R.id.alertTitle);
371 Button cancelButton = (Button) findViewById(com.android.internal.R.id.button1);
402 protected void onListItemClick(ListView l, View v, int position, long id) { argument
H A DLocalActivityManager.java49 id = _id;
53 final String id; // Unique name of this record. field in class:LocalActivityManager.LocalActivityRecord
76 /** id -> record of all known activities. */
122 instanceObj = lastNonConfigurationInstances.get(r.id);
131 if (localLOGV) Log.v(TAG, r.id + ": starting " + r.intent);
136 mParent, r.id, r.intent, r.activityInfo, r, r.instanceState, instance);
145 if (localLOGV) Log.v(TAG, r.id + ": resuming");
162 if (localLOGV) Log.v(TAG, r.id + ": restarting");
167 if (localLOGV) Log.v(TAG, r.id + ": restarting and resuming");
177 if (localLOGV) Log.v(TAG, r.id
260 startActivity(String id, Intent intent) argument
385 destroyActivity(String id, boolean finish) argument
432 getActivity(String id) argument
[all...]
H A DService.java634 * @param id The identifier for this notification as per
641 public final void startForeground(int id, Notification notification) { argument
644 new ComponentName(this, mClassName), mToken, id,
/frameworks/base/core/java/android/content/
H A DLoader.java180 public void registerListener(int id, OnLoadCompleteListener<D> listener) { argument
185 mId = id;
498 sb.append(" id=");
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDevice.java218 public static String getDeviceName(int id) { argument
219 return native_get_device_name(id);
223 private static native String native_get_device_name(int id); argument
/frameworks/base/core/java/android/nfc/
H A DTag.java124 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, argument
129 mId = id;
145 * @param id The tag identifier, can be null
150 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { argument
152 return new Tag(id, techList, techListExtras, 0, null);
379 byte[] id = Tag.readBytesWithNull(in);
392 return new Tag(id, techList, techExtras, serviceHandle, tagService);
/frameworks/base/core/java/android/speech/srec/
H A DWaveHeader.java210 private static void readId(InputStream in, String id) throws IOException { argument
211 for (int i = 0; i < id.length(); i++) {
212 if (id.charAt(i) != in.read()) throw new IOException( id + " tag not present");
253 private static void writeId(OutputStream out, String id) throws IOException { argument
254 for (int i = 0; i < id.length(); i++) out.write(id.charAt(i));
/frameworks/base/core/java/android/view/
H A DMenu.java261 * with the given group and id. You can use the group to control ordering of
302 * @param id The item to be removed. If there is no item with this
305 public void removeItem(int id); argument
372 * @param id The identifier to find.
377 public MenuItem findItem(int id); argument
427 * @param id Identifier associated with the menu item.
435 public boolean performIdentifierAction(int id, int flags); argument
H A DVelocityTracker.java32 * and {@link #getYVelocity(int)} to retrieve the velocity for each pointer id.
63 private static native float nativeGetXVelocity(int ptr, int id); argument
64 private static native float nativeGetYVelocity(int ptr, int id); argument
65 private static native boolean nativeGetEstimator(int ptr, int id, Estimator outEstimator); argument
224 * @param id Which pointer's velocity to return.
227 public float getXVelocity(int id) { argument
228 return nativeGetXVelocity(mPtr, id);
235 * @param id Which pointer's velocity to return.
238 public float getYVelocity(int id) { argument
239 return nativeGetYVelocity(mPtr, id);
256 getEstimator(int id, Estimator outEstimator) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java268 * Perform a context menu action on the field. The given id may be one of:
269 * {@link android.R.id#selectAll},
270 * {@link android.R.id#startSelectingText}, {@link android.R.id#stopSelectingText},
271 * {@link android.R.id#cut}, {@link android.R.id#copy},
272 * {@link android.R.id#paste}, {@link android.R.id#copyUrl},
273 * or {@link android.R.id#switchInputMethod}
275 public boolean performContextMenuAction(int id); argument
[all...]
H A DInputConnectionWrapper.java101 public boolean performContextMenuAction(int id) { argument
102 return mTarget.performContextMenuAction(id);
/frameworks/base/core/java/android/webkit/
H A DAutoCompletePopup.java169 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
173 if (id == 0 && position == 0 && mInputConnection.getIsAutoFillable()) {
H A DSearchBoxImpl.java228 public void dispatchCompleteCallback(String function, int id, boolean successful) { argument
229 mCallbackProxy.onSearchboxDispatchCompleteCallback(function, id, successful);
232 public void handleDispatchCompleteCallback(String function, int id, boolean successful) { argument
233 if (id != 0) {
236 listener = mEventCallbacks.get(id);
237 mEventCallbacks.remove(id);
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java39 * <p>The selection is identified by the unique id of the radio button as defined
55 // holds the checked id; the selection is empty by default
149 * @param id the unique id of the radio button to select in this group
154 public void check(int id) { argument
156 if (id != -1 && (id == mCheckedId)) {
164 if (id != -1) {
165 setCheckedStateForView(id, true);
168 setCheckedId(id);
171 setCheckedId(int id) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java128 private int findItemIndex(int id) { argument
132 if (items.get(i).getItemId() == id) {
140 public MenuItem findItem(int id) { argument
141 return mItems.get(findItemIndex(id));
182 public boolean performIdentifierAction(int id, int flags) { argument
183 final int index = findItemIndex(id);
214 public void removeItem(int id) { argument
215 mItems.remove(findItemIndex(id));
H A DBaseMenuPresenter.java226 public void setId(int id) { argument
227 mId = id;
H A DListMenuPresenter.java165 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
197 public void setId(int id) { argument
198 mId = id;
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java89 R.xml.password_kbd_qwerty, R.id.mode_normal, viewWidth, viewHeight);
94 R.id.mode_normal, viewWidth, viewHeight);
111 R.xml.password_kbd_qwerty, R.id.mode_normal);
116 R.id.mode_normal);
199 * Sets and enables vibrate pattern. If id is 0 (or can't be loaded), vibrate is disabled.
200 * @param id resource id for array containing vibrate pattern.
202 public void setVibratePattern(int id) { argument
205 tmpArray = mContext.getResources().getIntArray(id);
207 if (id !
[all...]
/frameworks/base/core/jni/
H A Dandroid_emoji_EmojiFactory.cpp282 jfieldID id = env->GetFieldID(clazz, fieldname, type); local
283 SkASSERT(id);
284 return id;
H A Dandroid_util_EventLog.cpp256 static struct { jclass *c; const char *name, *ft; jfieldID *id; } gFields[] = { member in struct:android::__anon1005
261 static struct { jclass *c; const char *name, *mt; jmethodID *id; } gMethods[] = { member in struct:android::__anon1006
277 *gFields[i].id = env->GetFieldID(
279 if (*gFields[i].id == NULL) {
286 *gMethods[i].id = env->GetMethodID(
288 if (*gMethods[i].id == NULL) {
H A Dandroid_view_VelocityTracker.cpp52 void getVelocity(int32_t id, float* outVx, float* outVy);
53 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
85 uint32_t id = idBits.clearFirstMarkedBit(); local
88 mVelocityTracker.getVelocity(id, &vx, &vy);
110 void VelocityTrackerState::getVelocity(int32_t id, float* outVx, float* outVy) { argument
111 if (id == ACTIVE_POINTER_ID) {
112 id = mVelocityTracker.getActivePointerId();
116 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) {
134 getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) argument
178 android_view_VelocityTracker_nativeGetXVelocity(JNIEnv* env, jclass clazz, jint ptr, jint id) argument
186 android_view_VelocityTracker_nativeGetYVelocity(JNIEnv* env, jclass clazz, jint ptr, jint id) argument
194 android_view_VelocityTracker_nativeGetEstimator(JNIEnv* env, jclass clazz, jint ptr, jint id, jobject outEstimatorObj) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/accounts/
H A DAccountManagerServiceTest.java246 protected void cancelNotification(final int id) { argument
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java361 * @param id The resource id of the image data
368 public static Bitmap decodeResource(Resources res, int id, Options opts) { argument
374 is = res.openRawResource(id, value);
402 * @param id The resource id of the image data
405 public static Bitmap decodeResource(Resources res, int id) { argument
406 return decodeResource(res, id, null);

Completed in 329 milliseconds

1234567891011>>