/external/chromium_org/ui/app_list/ |
app_list_item_list.cc | 27 AppListItem* item = app_list_items_[i]; local 28 if (item->id() == id) 29 return item; 36 AppListItem* item = app_list_items_[i]; local 37 if (item->id() == id) { 55 // Remove the target item 70 // successfully move the item we need to fix this. We do not try to fix this 71 // when an item is added in order to avoid possible edge cases with sync. 83 // Insert the item and notify observers. 90 void AppListItemList::SetItemPosition(AppListItem* item, 152 AppListItem* item = item_ptr.get(); local 165 scoped_ptr<AppListItem> item = RemoveItem(id); local 180 AppListItem* item = app_list_items_[index]; local 189 scoped_ptr<AppListItem> item = RemoveItemAt(index); local [all...] |
/external/chromium_org/ui/file_manager/file_manager/background/js/ |
progress_center.js | 85 * Updates the notification according to the item. 86 * @param {ProgressCenterItem} item Item to contain new information. 87 * @param {boolean} newItemAcceptable Whether to accept new item or not. 90 item, newItemAcceptable) { 92 var newlyAdded = !(item.id in this.ids_); 94 // If new item is not acceptable, just return. 99 // item. 100 if (item.state === ProgressItemState.PROGRESSING) { 102 this.ids_[item.id] = NotificationState.VISIBLE [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeListBase.java | 62 * Returns the <code>index</code>th item in the collection. If 70 public Node item(int index) { method in class:DTMNodeListBase
|
/external/bison/src/ |
ielr.h | 42 bool ielr_item_has_lookahead (state *s, symbol_number lhs, size_t item,
|
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
thread_safe_queue.h | 32 void Enqueue(T* item) { 34 list_.push_back(item); 49 T* item = list_.front(); 51 return item;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLAllCollection.idl | 35 [ImplementedAs=item] getter Element (unsigned long index); 36 [Custom] Element item([Default=Undefined] optional unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
ProgressTracker.cpp | 142 if (ProgressItem* item = m_progressItems.get(identifier)) { 143 item->bytesReceived = 0; 144 item->estimatedLength = estimatedLength; 151 ProgressItem* item = m_progressItems.get(identifier); local 154 if (!item) 161 item->bytesReceived += bytesReceived; 162 if (item->bytesReceived > item->estimatedLength) { 163 m_totalPageAndResourceBytesToLoad += ((item->bytesReceived * 2) - item->estimatedLength) 204 ProgressItem* item = m_progressItems.get(identifier); local [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
LruResourceCache.java | 23 protected void onItemRemoved(Key key, Resource item) { 25 listener.onResourceRemoved(item); 30 protected int getSize(Resource item) { 31 return item.getSize();
|
/external/smali/deodexerant/ |
deodexerant.c | 75 InlineOperation *item = &inlineTable[i]; local 77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);
|
/external/webrtc/src/system_wrappers/source/ |
list_stl.h | 25 ListItem(const unsigned int item); 54 ListItem* Next(ListItem* item) const; 55 ListItem* Previous(ListItem* item) const; 56 int Erase(ListItem* item);
|
map_no_stl.h | 49 int Erase(MapNoStlItem* item); 54 MapNoStlItem* Next(MapNoStlItem* item) const; 55 MapNoStlItem* Previous(MapNoStlItem* item) const; 60 int Remove(MapNoStlItem* item);
|
map.cc | 16 MapItem::MapItem(int id, void* item) : item_id_(id), item_pointer_(item) 55 // used because each item has some dynamically allocated memory 94 MapItem* MapWrapper::Next(MapItem* item) const 96 if (item == 0) 100 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_); 112 MapItem* MapWrapper::Previous(MapItem* item) const 114 if (item == 0) 119 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_); 139 int MapWrapper::Erase(MapItem* item) [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
OnItemViewClickedListener.java | 17 * Interface for receiving notification when a item view holder is clicked. 21 public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item,
|
OnItemViewSelectedListener.java | 17 * Interface for receiving notification when a row or item becomes selected. 21 * Called when the a row or a new item becomes selected. The concept of current selection 22 * is different than focus. Row or item can be selected even they don't have focus. 24 * item or selected row when user selects rows outside row UI (e.g. headers left of 27 * For a none {@link ListRow} case, parameter item is always null. Event is fired when 30 * For a {@link ListRow} case, parameter item can be null if the list row is empty. 40 * focused item in the row. 43 * @param itemViewHolder The view holder of item that is currently selected. 44 * @param item The item that is currently selected [all...] |
SinglePresenterSelector.java | 25 * @param presenter The Presenter to return for every item. 32 public Presenter getPresenter(Object item) {
|
/packages/apps/Browser/src/com/android/browser/ |
OptionsMenuHandler.java | 26 boolean onOptionsItemSelected(MenuItem item);
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
ContextMenuAdapter.java | 29 boolean onContextItemSelected(MenuItem item);
|
/external/chromium_org/chrome/browser/download/ |
download_query.cc | 74 const DownloadItem& item) { 76 base::string16 url_raw(base::UTF8ToUTF16(item.GetOriginalUrl().spec())); 78 if (item.GetBrowserContext()) { 79 Profile* profile = Profile::FromBrowserContext(item.GetBrowserContext()); 81 item.GetOriginalUrl(), 84 base::string16 path(item.GetTargetFilePath().LossyDisplayName()); 101 static int64 GetStartTimeMsEpoch(const DownloadItem& item) { 102 return (item.GetStartTime() - base::Time::UnixEpoch()).InMilliseconds(); 105 static int64 GetEndTimeMsEpoch(const DownloadItem& item) { 106 return (item.GetEndTime() - base::Time::UnixEpoch()).InMilliseconds() [all...] |
/external/chromium_org/tools/grit/grit/format/ |
android_xml.py | 115 for item in root.ActiveDescendants(): 116 with item: 117 if ShouldOutputNode(item, tagged_only): 118 yield _FormatMessage(item, lang) 134 def _FormatMessage(item, lang): 137 value = item.ws_at_start + item.Translate(lang) + item.ws_at_end 144 mangled_name = item.GetTextualIds()[0] 152 product = item.formatter_data.get(_PRODUCT_TAG, product [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
MarshalHashtable.java | 55 SoapObject item = new ItemSoapObject(instance); local 56 parser.require(XmlPullParser.START_TAG, null, "item"); 58 Object key = envelope.read(parser, item, 0, null, null, PropertyInfo.OBJECT_TYPE); 61 item.setProperty(0, key); 63 Object value = envelope.read(parser, item, 1, null, null, PropertyInfo.OBJECT_TYPE); 66 item.setProperty(1, value); 68 parser.require(XmlPullParser.END_TAG, null, "item"); 76 SoapObject item = new SoapObject(null, null); local 77 item.addProperty("key", null); 78 item.addProperty("value", null) [all...] |
/frameworks/base/libs/hwui/utils/ |
SortedListImpl.cpp | 40 ssize_t SortedListImpl::indexOf(const void* item) const { 41 return _indexOrderOf(item); 44 size_t SortedListImpl::orderOf(const void* item) const { 46 _indexOrderOf(item, &o); 50 ssize_t SortedListImpl::_indexOrderOf(const void* item, size_t* order) const { 61 const int c = do_compare(curr, item); 77 ssize_t SortedListImpl::add(const void* item) { 79 ssize_t index = _indexOrderOf(item, &order); 80 index = VectorImpl::insertAt(item, order, 1); 117 ssize_t SortedListImpl::remove(const void* item) { [all...] |
/frameworks/native/libs/gui/ |
BufferItemConsumer.cpp | 56 status_t BufferItemConsumer::acquireBuffer(BufferItem *item, 60 if (!item) return BAD_VALUE; 64 err = acquireBufferLocked(item, presentWhen); 73 err = item->mFence->waitForever("BufferItemConsumer::acquireBuffer"); 81 item->mGraphicBuffer = mSlots[item->mBuf].mGraphicBuffer; 86 status_t BufferItemConsumer::releaseBuffer(const BufferItem &item, 92 err = addReleaseFenceLocked(item.mBuf, item.mGraphicBuffer, releaseFence); 94 err = releaseBufferLocked(item.mBuf, item.mGraphicBuffer, EGL_NO_DISPLAY [all...] |
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CheckableListAdapter.java | 36 * state of a given item. 65 CheckableItem item = getItem(position); local 66 row.setChecked(item.isChecked); 67 row.setText(item.name); 72 CheckableItem item = getItem(position); 73 item.isChecked = b; 88 CheckableItem item = getItem(i); local 89 if (item.isChecked) { 106 CheckableItem item = new CheckableItem(e, false); local 107 newList.add(item); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
ArrayTestListAdapter.java | 36 public void add(TestListItem item) { 37 mRows.add(item);
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
DetailsDescriptionPresenter.java | 22 protected void onBindDescription(ViewHolder viewHolder, Object item) { 23 Movie movie = (Movie) item;
|