Searched refs:item (Results 101 - 125 of 1876) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java42 Occupant(MUCAdmin.Item item) { argument
44 this.jid = item.getJid();
45 this.affiliation = item.getAffiliation();
46 this.role = item.getRole();
47 this.nick = item.getNick();
54 MUCUser.Item item = mucUser.getItem();
55 this.jid = item.getJid();
56 this.affiliation = item.getAffiliation();
57 this.role = item.getRole();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
H A DCharSequenceConverter.java52 protected boolean isImmutable(@Nonnull CharSequence item) {
53 return item instanceof String;
58 protected String makeImmutable(@Nonnull CharSequence item) {
59 return item.toString();
/external/chromium_org/chrome/browser/download/
H A Ddownload_history.cc11 // store per-DownloadItem data such as whether the item is persisted or being
21 // item is still being added to the database, DownloadHistory uses
22 // |removed_while_adding_| to remember to remove the item when its ItemAdded()
60 static DownloadHistoryData* Get(content::DownloadItem* item) { argument
61 base::SupportsUserData::Data* data = item->GetUserData(kKey);
66 static const DownloadHistoryData* Get(const content::DownloadItem* item) { argument
67 const base::SupportsUserData::Data* data = item->GetUserData(kKey);
72 explicit DownloadHistoryData(content::DownloadItem* item) argument
75 item->SetUserData(kKey, this);
91 // unnecessarily. It is nullified when the item i
114 GetDownloadRow( content::DownloadItem* item) argument
202 IsPersisted(const content::DownloadItem* item) argument
262 content::DownloadItem* item = notifier_.GetManager()->CreateDownloadItem( local
294 MaybeAddToHistory(content::DownloadItem* item) argument
371 OnDownloadCreated( content::DownloadManager* manager, content::DownloadItem* item) argument
389 OnDownloadUpdated( content::DownloadManager* manager, content::DownloadItem* item) argument
419 OnDownloadOpened( content::DownloadManager* manager, content::DownloadItem* item) argument
424 OnDownloadRemoved( content::DownloadManager* manager, content::DownloadItem* item) argument
[all...]
H A Ddownload_ui_controller_unittest.cc43 virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
52 void TestDelegate::OnNewDownloadReady(content::DownloadItem* item) { argument
54 *receiver_ = item;
199 scoped_ptr<MockDownloadItem> item(
201 EXPECT_CALL(*item, GetBrowserContext())
203 EXPECT_CALL(*item, GetId()).WillRepeatedly(Return(1));
204 EXPECT_CALL(*item, GetTargetFilePath()).WillRepeatedly(
206 EXPECT_CALL(*item, GetFullPath()).WillRepeatedly(
208 EXPECT_CALL(*item, GetState())
210 EXPECT_CALL(*item, GetUrlChai
266 scoped_ptr<MockDownloadItem> item = CreateMockInProgressDownload(); local
309 scoped_ptr<MockDownloadItem> item = CreateMockInProgressDownload(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransferItemList.cpp52 PassRefPtrWillBeRawPtr<DataTransferItem> DataTransferItemList::item(unsigned long index) function in class:blink::DataTransferItemList
56 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(index);
57 if (!item)
60 return DataTransferItem::create(m_dataTransfer, item);
83 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->add(data, type);
84 if (!item) {
85 exceptionState.throwDOMException(NotSupportedError, "An item already exists for type '" + type + "'.");
88 return DataTransferItem::create(m_dataTransfer, item);
95 RefPtrWillBeRawPtr<DataObjectItem> item
[all...]
H A DDataObjectTest.cpp34 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(0); local
35 EXPECT_EQ(DataObjectItem::FileKind, item->kind());
37 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile();
53 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(0); local
54 EXPECT_EQ(DataObjectItem::FileKind, item->kind());
56 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile();
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py24 def add(self, item):
25 """Add item, if it is not already in the set.
27 item is appended to the end if it is not already in the set.
30 item: The item to add.
32 if item not in self.__ordered_set:
33 self.__ordered_set.append(item)
35 def __contains__(self, item):
36 """Whether the set contains item.
39 item
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dassocdat.c79 assoc_data_item *item = NULL; local
91 item = &assoc_data->vector[i];
95 if (!item) {
103 item = &assoc_data->vector[assoc_data->size-1];
104 item->callback = callback;
105 item->data = NULL;
109 if (item->data && item->data != data)
110 item->callback->destroy(item
[all...]
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dmenu.js53 * Adds menu item at the end of the list.
54 * @param {Object} item Menu item properties.
55 * @return {cr.ui.MenuItem} The created menu item.
57 addMenuItem: function(item) {
63 if (item.label)
64 menuItem.label = item.label;
66 if (item.iconUrl)
67 menuItem.iconUrl = item.iconUrl;
89 * Walks up the ancestors of |node| until a menu item belongin
[all...]
H A Dtree.js26 * Helper function that finds the first ancestor tree item.
28 * @return {cr.ui.TreeItem} The found tree item or null if not found.
63 * Returns the tree item that are children of this tree.
70 * Adds a tree item to the tree.
71 * @param {!cr.ui.TreeItem} treeItem The item to add.
78 * Adds a tree item at the given index.
79 * @param {!cr.ui.TreeItem} treeItem The item to add.
80 * @param {number} index The index where we want to add the item.
88 * Removes a tree item child.
89 * @param {!cr.ui.TreeItem} treeItem The tree item t
[all...]
/external/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py24 def add(self, item):
25 """Add item, if it is not already in the set.
27 item is appended to the end if it is not already in the set.
30 item: The item to add.
32 if item not in self.__ordered_set:
33 self.__ordered_set.append(item)
35 def __contains__(self, item):
36 """Whether the set contains item.
39 item
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_keymap.c151 struct keymap_item *item; local
155 item = (struct keymap_item *) cso_hash_iter_data(iter);
156 if (!memcmp(item->key, key, map->key_size))
192 struct keymap_item *item; local
201 item = hash_table_find_item(map, key, key_hash);
202 if (item) {
203 /* call delete callback for old entry/item */
204 map->delete_func(map, item->key, item->value, user);
205 item
235 struct keymap_item *item; local
261 struct keymap_item *item; local
295 struct keymap_item *item; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_keymap.c151 struct keymap_item *item; local
155 item = (struct keymap_item *) cso_hash_iter_data(iter);
156 if (!memcmp(item->key, key, map->key_size))
192 struct keymap_item *item; local
201 item = hash_table_find_item(map, key, key_hash);
202 if (item) {
203 /* call delete callback for old entry/item */
204 map->delete_func(map, item->key, item->value, user);
205 item
235 struct keymap_item *item; local
261 struct keymap_item *item; local
295 struct keymap_item *item; local
[all...]
/external/chromium_org/tools/grit/grit/format/
H A Drc_header.py59 for item in items:
60 if not isinstance(item, message.MessageNode):
61 with item:
62 for tid in item.GetTextualIds():
70 for item in root.ActiveDescendants():
71 if isinstance(item, message.MessageNode):
72 with item:
73 for tid in item.GetTextualIds():
105 for item in root:
106 if isinstance(item, empt
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.cc16 ListItem::ListItem(const void* item) argument
18 item_ptr_(item),
23 ListItem::ListItem(const unsigned int item) argument
26 item_(item)
73 ListItem* item = new ListItem(ptr); local
74 list_.push_back(item);
80 ListItem* item = new ListItem(item_id); local
81 list_.push_back(item);
87 ListItem* item = new ListItem(item_id); local
88 list_.push_front(item);
94 ListItem* item = new ListItem(ptr); local
235 Erase(ListItem* item) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) argument
54 Add(item);
/external/chromium_org/chrome/browser/importer/
H A Dimporter_progress_observer.h19 // Invoked when data for the specified item is about to be collected.
20 virtual void ImportItemStarted(ImportItem item) = 0;
22 // Invoked when data for the specified item has been collected from the
24 virtual void ImportItemEnded(ImportItem item) = 0;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSRuleList.idl32 getter CSSRule item(unsigned long index);
H A DCSSValueList.idl29 [ImplementedAs=itemWithBoundsCheck] getter CSSValue item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClientRectList.idl31 getter ClientRect item(unsigned long index);
H A DDOMSettableTokenList.idl26 [TreatReturnedNullStringAs=Null, ImplementedAs=item] getter DOMString (unsigned long index);
H A DNodeList.idl26 getter Node item(unsigned long index);
H A DTouchList.idl31 getter Touch item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileList.idl31 getter File item(unsigned long index);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DRadioNodeList.idl30 [ImplementedAs=item] getter Node (unsigned long index);

Completed in 1111 milliseconds

1234567891011>>