Searched refs:item (Results 126 - 150 of 364) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/clipboard/
H A DClipboardService.java324 private final void checkItemOwnerLocked(ClipData.Item item, int uid) { argument
325 if (item.getUri() != null) {
326 checkUriOwnerLocked(item.getUri(), uid);
328 Intent intent = item.getIntent();
354 private final void grantItemLocked(ClipData.Item item, String pkg, int userId) { argument
355 if (item.getUri() != null) {
356 grantUriLocked(item.getUri(), pkg, userId);
358 Intent intent = item.getIntent();
407 private final void revokeItemLocked(ClipData.Item item) { argument
408 if (item
[all...]
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java195 public boolean onMenuItemClick(MenuItem item) {
204 @Override public boolean onMenuItemClick(MenuItem item) {
226 @Override public boolean onMenuItemClick(MenuItem item) {
233 @Override public boolean onMenuItemClick(MenuItem item) {
261 @Override public boolean onMenuItemClick(MenuItem item) {
269 @Override public boolean onMenuItemClick(MenuItem item) {
287 @Override public boolean onMenuItemClick(MenuItem item) {
297 @Override public boolean onMenuItemClick(MenuItem item) {
306 @Override public boolean onMenuItemClick(MenuItem item) {
329 @Override public boolean onMenuItemClick(MenuItem item) {
[all...]
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregatorRecordStorage.java82 for (Map.Entry<String, String> item : data.entrySet()) {
83 content.put(item.getKey(), item.getValue());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlButtonPresenterSelector.java56 public Presenter getPresenter(Object item) { argument
93 public void onBindViewHolder(Presenter.ViewHolder viewHolder, Object item) { argument
94 Action action = (Action) item;
H A DRowHeaderPresenter.java89 public void onBindViewHolder(Presenter.ViewHolder viewHolder, Object item) { argument
90 HeaderItem headerItem = item == null ? null : ((Row) item).getHeaderItem();
H A DDetailsOverviewLogoPresenter.java69 public void onBindViewHolder(Presenter.ViewHolder viewHolder, Object item) { argument
70 DetailsOverviewRow row = (DetailsOverviewRow) item;
H A DStaggeredGrid.java44 * Cached representation of Staggered item.
48 * Offset to previous item location.
55 * size of the item.
78 * Returns index of first item (cached or visible) in the staggered grid.
79 * Returns negative value if no item.
86 * Returns index of last item (cached or visible) in the staggered grid.
87 * Returns negative value if no item.
156 // prepend first visible item
161 // if the item is not within or adjacent to cached items, clear cache.
165 // if the item i
[all...]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DBaseTestActivity.java58 public boolean onOptionsItemSelected(MenuItem item) { argument
59 mOptionsItemSelected = item;
60 return super.onOptionsItemSelected(item);
/frameworks/av/cmds/screenrecord/
H A DFrameOutput.h65 virtual void onFrameAvailable(const BufferItem& item);
/frameworks/base/core/java/android/app/
H A DFragmentController.java281 * Sends an option item selection event to the Fragments managed by the
284 * <p>Call immediately after an options menu item has been selected
289 public boolean dispatchOptionsItemSelected(MenuItem item) { argument
290 return mHost.mFragmentManager.dispatchOptionsItemSelected(item);
294 * Sends a context item selection event to the Fragments managed by the
297 * <p>Call immediately after an options menu item has been selected
302 public boolean dispatchContextItemSelected(MenuItem item) { argument
303 return mHost.mFragmentManager.dispatchContextItemSelected(item);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java109 Element l = (Element)nl.item(i);
117 Element c = (Element)nl.item(i);
125 Element img = (Element)nl.item(i);
133 Element e = (Element)nl.item(i);
142 Element m = (Element)nl.item(i);
151 Element m = (Element)nl.item(i);
160 Element s = (Element)nl.item(i);
178 Element materialRef = (Element)nl.item(i);
286 Element ref = (Element)nl.item(0);
298 ref = (Element)nl.item(
[all...]
/frameworks/native/include/gui/
H A DIConsumerListener.h48 // always trigger the callback. The item passed to the callback will contain
54 virtual void onFrameAvailable(const BufferItem& item) = 0; /* Asynchronous */
58 // doesn't call onFrameAvailable will call this callback instead. The item
65 virtual void onFrameReplaced(const BufferItem& /* item */) {} /* Asynchronous */
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentController.java286 * Sends an option item selection event to the Fragments managed by the
289 * <p>Call immediately after an options menu item has been selected
294 public boolean dispatchOptionsItemSelected(MenuItem item) { argument
295 return mHost.mFragmentManager.dispatchOptionsItemSelected(item);
299 * Sends a context item selection event to the Fragments managed by the
302 * <p>Call immediately after an options menu item has been selected
307 public boolean dispatchContextItemSelected(MenuItem item) { argument
308 return mHost.mFragmentManager.dispatchContextItemSelected(item);
H A DShareCompat.java82 void configureMenuItem(MenuItem item, IntentBuilder shareIntent); argument
87 public void configureMenuItem(MenuItem item, IntentBuilder shareIntent) { argument
88 item.setIntent(shareIntent.createChooserIntent());
125 public void configureMenuItem(MenuItem item, IntentBuilder shareIntent) { argument
126 ShareCompatICS.configureMenuItem(item, shareIntent.getActivity(),
128 if (shouldAddChooserIntent(item)) {
129 item.setIntent(shareIntent.createChooserIntent());
133 boolean shouldAddChooserIntent(MenuItem item) { argument
134 return !item.hasSubMenu();
144 boolean shouldAddChooserIntent(MenuItem item) { argument
232 configureMenuItem(MenuItem item, IntentBuilder shareIntent) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java266 * @param item The item that was clicked
270 public boolean onActionItemClicked(ActionMode mode, MenuItem item); argument
/frameworks/av/include/media/
H A DRingBuffer.h97 * Adds item to the front of this RingBuffer. If the RingBuffer is at its maximum length,
103 void add(const T& item);
106 * Moves item to the front of this RingBuffer. Following a call to this, item should no
112 void add(T&& item);
115 * Construct item in-place in the front of this RingBuffer using the given arguments. If
265 void RingBuffer<T>::add(const T& item) { argument
267 mBuffer.push_back(item);
272 mBuffer[mFrontIdx] = item;
277 void RingBuffer<T>::add(T&& item) { argument
[all...]
/frameworks/av/media/libstagefright/
H A DMetaData.cpp197 typed_data item; local
198 i = mItems.add(key, item);
203 typed_data &item = mItems.editValueAt(i); local
205 item.setData(type, data, size);
218 const typed_data &item = mItems.valueAt(i); local
220 item.getData(type, data, size);
302 ALOGE("Couldn't allocate %zu bytes for item", size);
375 const typed_data &item = mItems.valueAt(i); local
376 ALOGI("%s: %s", cc, item.asString().string());
H A DTimedEventQueue.cpp128 QueueItem item; local
129 item.event = event;
130 item.realtime_us = realtime_us;
131 item.has_wakelock = false;
139 item.has_wakelock = true;
141 mQueue.insert(it, item);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DOverflowMenuAdapter.java67 // Since a menu item's ID is optional, we'll use the position as an
68 // ID for the item in the AdapterView
91 final MenuItemImpl item = items.get(i);
92 if (item == expandedItem) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DBerTlv.java135 for (ComprehensionTlv item : ctlvs) {
136 int itemLength = item.getLength();
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUnitTest.java134 public void setItem(ScriptField_ListAllocs_s.Item item) { argument
135 mItem = item;
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUnitTest.java134 public void setItem(ScriptField_ListAllocs_s.Item item) { argument
135 mItem = item;
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUnitTest.java134 public void setItem(ScriptField_ListAllocs_s.Item item) { argument
135 mItem = item;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DExpandedMenuView.java82 public boolean invokeItem(MenuItemImpl item) { argument
83 return mMenu.performItemAction(item, 0);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedPooledCache.java187 sb.append("\n\tpool item: ");
191 for (Map.Entry<K, V> item : mCache.entrySet()) {
192 final V val = item.getValue();
194 sb.append(item.getKey());
201 for (Map.Entry<K, V> item : mNonPooledCache.snapshot().entrySet()) {
202 final V val = item.getValue();
204 sb.append(item.getKey());

Completed in 903 milliseconds

1234567891011>>