Searched refs:item (Results 151 - 175 of 176) sorted by relevance

12345678

/frameworks/base/core/java/android/webkit/
H A DCallbackProxy.java1289 // The current item might be null if the icon was already stored in the
1304 // We should have a current item but we do not want to crash so check
1582 void onNewHistoryItem(WebHistoryItem item) { argument
1586 Message msg = obtainMessage(ADD_HISTORY_ITEM, item);
1590 void onIndexChanged(WebHistoryItem item, int index) { argument
1594 Message msg = obtainMessage(HISTORY_INDEX_CHANGED, index, 0, item);
H A DBrowserFrame.java499 WebHistoryItem item = mCallbackProxy.getBackForwardList()
501 if (item != null) {
502 WebAddress uri = new WebAddress(item.getUrl());
H A DWebViewClassic.java2259 WebHistoryItemClassic item = list.getItemAtIndex(i);
2260 if (null == item) {
2262 // need to determine how item got set to null
2263 Log.w(LOGTAG, "saveState: Unexpected null history item.");
2266 byte[] data = item.getFlattenedData();
2269 // item. And we will fail to rebuild the history list without
2484 // the item and thus our history list cannot be rebuilt.
2487 WebHistoryItem item = new WebHistoryItemClassic(data);
2488 list.addHistoryItem(item);
4851 // on the AutoFill item bein
8191 private Container item(int position) { method in class:WebViewClassic.InvokeListBox.MyArrayListAdapter
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java78 * PreferenceFragment together as panes. Selecting a header item switches
79 * to showing the correct PreferenceFragment for that item.
304 * Description of a single Header item that the user can select.
721 * implementing this and adding at least one item to the list, you
971 Object item = mAdapter.getItem(position);
972 if (item instanceof Header) onHeaderClick((Header) item, position);
977 * Called when the user selects an item in the header list. The default
1013 * @param titleRes Optional resource ID of title to show for this item.
1014 * @param shortTitleRes Optional resource ID of short title to show for this item
[all...]
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp98 jint item = 0; local
99 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item);
100 return item == EGL_NONE;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsPanelView.java754 public boolean onMenuItemClick(MenuItem item) {
755 if (item.getItemId() == R.id.recent_remove_item) {
757 } else if (item.getItemId() == R.id.recent_inspect_item) {
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java2405 ProcessChangeItem item = mActiveProcessChanges[j];
2406 if ((item.changes&ProcessChangeItem.CHANGE_ACTIVITIES) != 0) {
2408 + item.pid + " uid=" + item.uid + ": "
2409 + item.foregroundActivities);
2410 observer.onForegroundActivitiesChanged(item.pid, item.uid,
2411 item.foregroundActivities);
2413 if ((item.changes&ProcessChangeItem.CHANGE_IMPORTANCE) != 0) {
2415 + item
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DVideoEditorStressTest.java872 public void onProgress(Object item, int action, int progress) {
1111 public void onProgress(Object item, int action, int progress) {
1122 public void onProgress(Object item, int action, int progress) {
/frameworks/base/core/java/android/app/
H A DFragmentManager.java1954 public boolean dispatchOptionsItemSelected(MenuItem item) { argument
1959 if (f.performOptionsItemSelected(item)) {
1968 public boolean dispatchContextItemSelected(MenuItem item) { argument
1973 if (f.performContextItemSelected(item)) {
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java263 public boolean onMenuItemSelected(int featureId, MenuItem item) { argument
/frameworks/base/core/java/android/view/
H A DWindow.java292 * Called when a panel's menu item has been selected by the user.
295 * @param item The menu item that was selected.
301 public boolean onMenuItemSelected(int featureId, MenuItem item); argument
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp363 jstring item = jstring(env->GetObjectArrayElement(excludedDeviceNames, i)); local
364 const char* deviceNameChars = env->GetStringUTFChars(item, NULL);
366 env->ReleaseStringUTFChars(item, deviceNameChars);
367 env->DeleteLocalRef(item);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1973 public boolean dispatchOptionsItemSelected(MenuItem item) { argument
1978 if (f.performOptionsItemSelected(item)) {
1987 public boolean dispatchContextItemSelected(MenuItem item) { argument
1992 if (f.performContextItemSelected(item)) {
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java934 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
936 return mCallback.onActionItemClicked(this, item);
/frameworks/base/services/input/
H A DEventHub.cpp990 const String8& item = mExcludedDevices.itemAt(i);
991 if (identifier.name == item) {
992 ALOGI("ignoring event id %s driver %s\n", devicePath, item.string());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java360 public boolean onMenuItemClick(MenuItem item) {
361 if (item.getItemId() == R.id.notification_inspect_item) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java975 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
980 return cb.onMenuItemSelected(panel.featureId, item);
2557 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { argument
2558 return mWrapped.onActionItemClicked(mode, item);
3300 * Whether an item's action has been performed. This happens in obvious
3301 * scenarios (user clicks on menu item), but can also happen with
3590 * <li> Calls back to the callback's onMenuItemSelected when an item is
3631 public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { argument
3634 && callback.onMenuItemSelected(mFeatureId, item);
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java2609 final ImeSubtypeListItem item = imList.get(i);
2610 mIms[i] = item.mImi;
2611 mSubtypeIds[i] = item.mSubtypeId;
2785 final ImeSubtypeListItem item = mItemsList.get(position);
2786 final CharSequence imeName = item.mImeName;
2787 final CharSequence subtypeName = item.mSubtypeName;
/frameworks/base/core/java/android/widget/
H A DEditor.java1799 Item item = clipData.getItemAt(i);
1800 content.append(item.coerceToStyledText(mTextView.getContext()));
2509 // Add "Add to dictionary" item if there is a span with the misspelled flag
2526 // Delete item
2774 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { argument
2776 mCustomSelectionActionModeCallback.onActionItemClicked(mode, item)) {
2779 return mTextView.onTextContextMenuItem(item.getItemId());
H A DAbsListView.java107 * notification is received and only if the last item is already visible
170 * Show the first item
175 * Force the selected item to be on somewhere on the screen
180 * Show the last item
491 * find a checked item with a stable ID that moved position across
492 * a data set change. If the item isn't found it will be unselected.
669 * Track the item count from the last time we handled a data change.
736 * The top-level view of a list item can implement this interface to allow
737 * itself to modify the bounds of the selection shown for that item.
741 * Called to allow the list item t
6017 onActionItemClicked(ActionMode mode, MenuItem item) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java90 private static final String TAG_ITEM = "item";
1302 for (PackageCleanItem item : mPackagesToBeCleaned) {
1303 final String userStr = Integer.toString(item.userId);
1305 serializer.attribute(null, ATTR_NAME, item.packageName);
1306 serializer.attribute(null, ATTR_CODE, item.andCode ? "true" : "false");
/frameworks/base/core/java/android/content/
H A DIntent.java151 * vnd.android.cursor.item/phone}</i></b>
267 * &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
276 * &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
294 * &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
338 * &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
342 * <code>vnd.android.cursor.item/vnd.google.note</code> is a URI from which
343 * a Cursor of exactly one (<code>vnd.android.cursor.item</code>) item can
372 * type=vnd.android.cursor.item/vnd.google.note }</b>
388 * &lt;data android:mimeType="vnd.android.cursor.item/<
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2340 public boolean onMenuItemClick(MenuItem item) { argument
2341 return onTextContextMenuItem(item.getItemId());
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DVideoEditorAPITest.java913 /** Image item is added as dummy as Audio track cannot be added without
914 * a media item in the story board
934 public void onProgress(Object item, int action, int progress) {
1450 assertEquals("Transtion After Media item",
1452 assertEquals("Transtion Before Media item", mediaVideoItem2,
1470 assertEquals("Transtion After Media item", mediaVideoItem2,
1472 assertEquals("Transtion Before Media item", mediaImageItem3,
1491 assertEquals("Transtion After Media item", mediaImageItem3,
1493 assertEquals("Transtion Before Media item", mediaVideoItem4,
1511 assertEquals("Transtion After Media item", mediaVideoItem
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3108 const Res_value* item = local
3129 bestValue = item;
5197 // starting size is header + first item (number of types in map)

Completed in 1892 milliseconds

12345678