Searched defs:items (Results 51 - 75 of 366) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DStringsDialog.java51 * Sets the items to edit.
53 public void setItems(String[] items) { argument
54 setText(Joiner.on('\n').join(items));
58 * @return the edited items.
/external/icu/icu4c/source/test/depstest/
H A Ddependencies.py17 items: Map from library or group names to item maps.
28 # TODO: Support binary items.
36 items = {} variable
94 global items, _line_number, _groups_to_be_defined
103 dep_item = items.get(dep)
109 items[dep] = {"type": "group"}
110 if library_name: items[dep]["library"] = library_name
139 global items, libraries, _line_number, _groups_to_be_defined
151 if name in items:
154 item = items[nam
[all...]
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c59 } items[] = { variable in typeref:struct:__anon23671
233 for (i = 0; (items[i].tag && items[i].tag != entry->tag); i++);
234 if (!items[i].tag) {
241 for (j = 0; items[i].elem[j].string &&
242 (items[i].elem[j].index < vs); j++);
243 if (items[i].elem[j].index != vs) {
248 strncpy (val, _(items[i].elem[j].string), maxlen);
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DLeafNode.java30 * All items are published to a node, and typically subscribed to by other
43 * Get information on the items in the node in standard
53 DiscoverItems items = new DiscoverItems();
54 items.setTo(to);
55 items.setNode(getId());
56 return (DiscoverItems)SyncPacketSend.getReply(con, items);
60 * Get the current items stored in the node.
77 * Get the current items stored in the node based
98 * Get the items specified from the node. This would typically be
101 * after the items hav
221 publish(Collection<T> items) argument
294 send(Collection<T> items) argument
[all...]
/external/chromium_org/ash/system/tray/
H A Dsystem_tray.h43 // Calls TrayBackgroundView::Initialize(), creates the tray items, and
53 // Returns all tray items that has been added to system tray.
56 // Shows the default view of all items.
82 // Updates the items when the login status of the system changes.
85 // Updates the items when the shelf alignment changes.
159 // Creates the default set of items for the sytem tray.
181 // Constructs or re-constructs |system_bubble_| and populates it with |items|.
184 void ShowItems(const std::vector<SystemTrayItem*>& items,
192 // |notification_items_|, or destroys it if there are no notification items.
202 const ScopedVector<SystemTrayItem>& items() cons function in class:ash::SystemTray
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddownload_status_updater.cc69 content::DownloadManager::DownloadVector items; local
70 (*it)->GetManager()->GetAllDownloads(&items);
72 items.begin(); it != items.end(); ++it) {
94 content::DownloadManager::DownloadVector items; local
95 manager->GetAllDownloads(&items);
97 it = items.begin(); it != items.end(); ++it) {
/external/chromium_org/chrome/browser/importer/
H A Dexternal_process_importer_host.cc47 uint16 items,
56 items_ = items;
63 CheckForLoadedModels(items);
187 void ExternalProcessImporterHost::CheckForLoadedModels(uint16 items) { argument
193 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
202 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
44 StartImportSettings( const importer::SourceProfile& source_profile, Profile* target_profile, uint16 items, ProfileWriter* writer) argument
H A Dimporter_list.cc45 uint16 items = importer::NONE; local
46 if (!SafariImporterCanImport(base::mac::GetUserLibraryPath(), &items))
54 safari->services_supported = items;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store.cc24 // Find items matching between |subs| and |adds|, and remove them. To minimize
34 // Keep a pair of output iterators for writing kept items. Due to
36 // individual items would result in O(N^2) copies. Using std::list
62 // Drop equal items.
74 // Remove deleted items (|chunk_id| in |del_set|) from the container.
76 void RemoveDeleted(ItemsT* items, const base::hash_set<int32>& del_set) { argument
77 DCHECK(items);
79 // Move items from |iter| to |end_iter|, skipping items in |del_set|.
80 typename ItemsT::iterator end_iter = items
[all...]
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Drecently_used_folders_combo_model_unittest.cc90 std::set<base::string16> items; local
93 EXPECT_EQ(0u, items.count(model.GetItemAt(i)));
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dchrome_native_app_window_views_win.cc195 ShellLinkItemList items; local
196 items.push_back(link);
197 jumplist_updater.AddTasks(items);
200 // Note that an empty jumplist must still be committed to clear all items.
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dbundle_installed_bubble.cc72 // Insert the list of installed items.
85 // Insert the list of failed items.
91 // we add it here if there was no installed items section.
102 void AddItemList(GridLayout* layout, const BundleInstaller::ItemList& items) { argument
103 for (size_t i = 0; i < items.size(); ++i) {
105 base::UTF8ToUTF16(items[i].localized_name);
/external/chromium_org/chrome/common/
H A Dinstant_restricted_id_cache.h21 // use a cache of N items as against just the last set of results is that there
27 // 1. To store items and assign restricted IDs to them. The cache will store
28 // a max of |max_cache_size_| items and assign them unique IDs.
30 // 2. To store items that already have restricted IDs assigned to them (e.g.
33 // items are inserted with the same ID, the cache will return the last
47 // Adds items to the cache, assigning restricted IDs in the process. May
48 // delete older items from the cache. |items.size()| has to be less than max
50 void AddItems(const ItemVector& items);
52 // Adds items t
97 AddItems(const ItemVector& items) argument
114 AddItemsWithRestrictedID( const ItemIDVector& items) argument
[all...]
/external/chromium_org/components/component_updater/
H A Dupdate_checker.cc45 const std::vector<CrxUpdateItem*>& items,
48 for (size_t i = 0; i != items.size(); ++i) {
49 const CrxUpdateItem* item = items[i];
44 BuildUpdateCheckRequest(const Configurator& config, const std::vector<CrxUpdateItem*>& items, const std::string& additional_attributes) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DSelectPopupDialog.java38 public SelectPopupDialog(ContentViewCore contentViewCore, List<SelectPopupItem> items, argument
67 mContext, getSelectDialogLayout(multiple), items);
/external/chromium_org/ppapi/c/private/
H A Dppb_flash_menu.h37 * TODO(viettrungluu): Radio items not supported yet. Will also probably want
38 * special menu items tied to clipboard access.
66 struct PP_Flash_MenuItem *items; member in struct:PP_Flash_Menu
/external/chromium_org/ppapi/shared_impl/
H A Dppb_gamepad_shared.h64 // Number of valid entries in the items array.
68 WebKitGamepad items[kItemsLengthCap]; member in struct:ppapi::WebKitGamepads
/external/chromium_org/storage/common/blob/
H A Dblob_data.h48 const std::vector<Item>& items() const { return items_; } function in class:storage::BlobData
82 if (a.items().size() != b.items().size())
84 for (size_t i = 0; i < a.items().size(); ++i) {
85 if (a.items()[i] != b.items()[i])
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormDataList.cpp74 const WillBeHeapVector<Item>& items = this->items(); local
75 size_t formDataListSize = items.size();
78 const FormDataList::Item& key = items[i];
79 const FormDataList::Item& value = items[i + 1];
H A DFormDataList.h81 const WillBeHeapVector<Item>& items() const { return m_items; } function in class:blink::FormDataList
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDragData.cpp84 WebVector<WebDragData::Item> WebDragData::items() const function in class:blink::WebDragData
/external/chromium_org/third_party/boringssl/src/ssl/pqueue/
H A Dpqueue.c63 pitem *items; member in struct:_pqueue
108 pitem *pqueue_peek(pqueue_s *pq) { return pq->items; }
113 for (curr = pq->items; curr; curr = curr->next) {
123 pitem *item = pq->items;
133 piterator pqueue_iterator(pqueue_s *pq) { return pq->items; }
151 if (pq->items == NULL) {
152 pq->items = item;
156 for (curr = NULL, next = pq->items; next != NULL;
165 pq->items = item;
185 pitem *item = pq->items;
[all...]
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dletrperf.cpp19 long *items = 0; variable
22 long items[ITEM_COUNT]; member in struct:OneObject
30 Long items[ITEM_COUNT]; member in struct:CompObject
36 if(items[i]==2) {
47 if(obj.items[i]==2) {
55 long *items2 = ((OneObject*)ref)->items;
75 long *items2 = ((OneObject*)ref)->items;
77 if(items[i]==2) {
91 long *items2 = ((OneObject*)ref)->items;
98 if(items[
[all...]
/external/chromium_org/third_party/jstemplate/
H A Djstemplate_test.js27 items: [ 'A', 'B', 'C', '' ]
43 d.items[1] = 'BB';
53 d.items.pop();
54 d.items.pop();
63 d.items.pop();
72 d.items.pop();
80 d.items.push('D');
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsub_task.cc133 // <items node="node-name">
137 // </items>
146 // <items node="node-name">
148 // </items>
171 // <items node="node-name">
175 // </items>
194 // 'items' is the child of a pubsub#event:event node or pubsub:pubsub node.
195 void PubsubTask::HandlePubsubItems(const buzz::XmlElement* items) { argument
196 ASSERT(items->HasAttr(QN_NODE));
197 const std::string& node_name(items
[all...]

Completed in 3463 milliseconds

1234567891011>>