Searched defs:items (Results 251 - 275 of 366) sorted by relevance

<<1112131415

/external/bzip2/
H A Dbzlib.c102 void* default_bzalloc ( void* opaque, Int32 items, Int32 size ) argument
104 void* v = malloc ( items * size );
/external/chromium_org/chrome/browser/drive/
H A Dfake_drive_service.cc130 for (size_t i = 0; i < change_list->items().size(); ++i) {
131 const ChangeResource& entry = *change_list->items()[i];
258 CHECK(app_info_value_->GetListWithoutPathExpansion("items", &item_list));
264 CHECK(app_info_value_->GetListWithoutPathExpansion("items", &item_list));
280 CHECK(app_info_value_->GetListWithoutPathExpansion("items", &item_list));
1263 base::ListValue* items = NULL; local
1264 if (!app_info_value_->GetList("items", &items)) {
1271 for (size_t i = 0; i < items->GetSize(); ++i) {
1274 if (items
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dmenu_manager.cc73 MenuItem::List items; local
77 return items;
87 items.push_back(item);
89 return items;
92 scoped_ptr<base::Value> MenuItemsToValue(const MenuItem::List& items) { argument
94 for (size_t i = 0; i < items.size(); ++i)
95 list->Append(items[i]->ToValue().release());
200 // string IDs for items.
432 // top-level items.
581 // Iterate backwards from |item| and uncheck any adjacent radio items
[all...]
/external/chromium_org/chrome/browser/first_run/
H A Dfirst_run.cc180 // Sets the |items| bitfield according to whether the import data specified by
187 int* items) {
209 // If an import policy is set, import items according to policy. If no master
220 *items |= import_type;
224 *items |= import_type;
231 // |target_profile| for the items specified in the |items_to_import| bitfield.
282 // Ensure that importers aren't requested to import items that they do not
739 int items = 0; local
746 &items);
752 &items);
182 SetImportItem(PrefService* user_prefs, const char* pref_path, int import_items, int dont_import_items, importer::ImportItem import_type, int* items) argument
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac.cc57 // Fills |items| with all Keychain items that match the Init'd search.
58 // If the search fails for any reason, |items| will be unchanged.
163 void KeychainSearch::FindMatchingItems(std::vector<SecKeychainItemRef>* items) { argument
174 // Consumer is responsible for freeing the items.
175 items->push_back(keychain_item);
409 // keychain items with paths probably came from us).
456 // Pull out the database blacklist items, since they are used as-is rather
510 // First load the attributes of all items in the keychain without loading
511 // their password data, and then match items i
686 std::vector<SecKeychainItemRef> items = GetAllPasswordFormKeychainItems(); local
749 ConvertKeychainItemsToForms( std::vector<SecKeychainItemRef>* items) argument
[all...]
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_controller_browsertest.cc137 return shelf_model()->items()[shelf_model()->item_count() - 1];
143 return shelf_model()->items()[shelf_model()->item_count() - 1];
150 // Returns the number of menu items, ignoring separators.
204 int items = item_controller->GetApplicationList( local
207 return items ? (items - 1) : 0;
852 shelf_model()->items()[shelf_item_count - 2];
854 shelf_model()->items()[shelf_item_count - 1];
1065 EXPECT_EQ(ash::STATUS_ACTIVE, model_->items()[browser_index].status);
1071 EXPECT_EQ(ash::STATUS_RUNNING, model_->items()[browser_inde
1274 size_t items = NumberOfDetectedLauncherBrowsers(false); local
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_controller_browsertest.cc1295 // Curveball: wallet items comes back with user 4 selected.
1587 scoped_ptr<wallet::WalletItems> items = local
1589 items->AddAccount(wallet::GetTestGaiaAccount());
1590 items->AddInstrument(wallet::GetTestMaskedInstrument());
1591 items->AddAddress(wallet::GetTestShippingAddress());
1592 controller()->OnDidGetWalletItems(items.Pass());
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_install_dialog_view.cc363 BundleInstaller::ItemList items = prompt_->bundle()->GetItemsWithState( local
365 for (size_t i = 0; i < items.size(); ++i) {
367 base::UTF8ToUTF16(items[i].localized_name);
719 // to clean up those items as well.
921 // If the parent is using bullets for its items, then a padding of one unit
1029 // bullets for its items, then a padding of one unit will make the child
/external/chromium_org/chrome/utility/importer/
H A Die_importer_win.cc153 // If the order of the items in a folder is customized by user, the order is
172 // Read the number of items.
177 // Traverse over the items.
411 uint16 items,
418 if ((items & importer::HOME_PAGE) && !cancelled()) {
424 if ((items & importer::HISTORY) && !cancelled()) {
429 if ((items & importer::FAVORITES) && !cancelled()) {
434 if ((items & importer::SEARCH_ENGINES) && !cancelled()) {
439 if ((items & importer::PASSWORDS) && !cancelled()) {
560 // Enumerates AutoComplete items i
410 StartImport(const importer::SourceProfile& source_profile, uint16 items, ImporterBridge* bridge) argument
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema.cc121 *path = base::StringPrintf("items[%d]", index);
123 *path = base::StringPrintf("items[%d].", index) + *path;
375 const base::DictionaryValue* items = NULL; local
376 if (schema.GetDictionary(schema::kItems, &items))
377 DetermineStorageSizes(*items, sizes);
592 *error = "Arrays must declare a single schema for their items.";
/external/chromium_org/content/browser/download/
H A Ddownload_browsertest.cc813 // Should now have 2 items on the manager.
898 std::vector<DownloadItem*> items; local
899 download_manager->GetAllDownloads(&items);
900 ASSERT_EQ(1u, items.size());
901 items[0]->Cancel(true);
905 EXPECT_EQ(DownloadItem::CANCELLED, items[0]->GetState());
912 EXPECT_EQ(DownloadItem::CANCELLED, items[0]->GetState());
951 std::vector<DownloadItem*> items; local
952 download_manager->GetAllDownloads(&items);
953 EXPECT_EQ(DownloadItem::IN_PROGRESS, items[
981 std::vector<DownloadItem*> items; local
1061 std::vector<DownloadItem*> items; local
[all...]
/external/chromium_org/content/browser/frame_host/
H A Dinterstitial_page_impl.cc86 const std::vector<MenuItem>& items,
872 const std::vector<MenuItem>& items,
866 ShowPopupMenu( RenderFrameHost* render_frame_host, const gfx::Rect& bounds, int item_height, double item_font_size, int selected_item, const std::vector<MenuItem>& items, bool right_aligned, bool allow_multiple_selection) argument
/external/chromium_org/courgette/
H A Dencoded_program.cc45 CheckBool WriteVector(const V& items, SinkStream* buffer) { argument
46 size_t count = items.size();
49 COMPILE_ASSERT(sizeof(items[0]) <= sizeof(uint32), // NOLINT
51 ok = buffer->WriteSizeVarint32(items[i]);
57 bool ReadVector(V* items, SourceStream* buffer) { argument
62 items->clear();
64 bool ok = items->reserve(count);
69 ok = items->push_back(static_cast<typename V::value_type>(item));
122 CheckBool WriteVectorU8(const V& items, SinkStream* buffer) { argument
123 size_t count = items
133 ReadVectorU8(V* items, SourceStream* buffer) argument
[all...]
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslt.h21 SECItem *items; member in struct:SECItemArrayStr
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineModelImpl.js565 var items; variable
567 items = /** @type {!Array.<!TimelineAgent.TimelineEvent>} */ (JSON.parse(json));
577 for (var i = 1, size = items.length; i < size; ++i)
578 this._model._addRecord(items[i]);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh782 Supplier<Type> &items,
788 array[i] = items[i];
789 items.advance (items_len);
890 Supplier<Type> &items,
899 array[i] = items[i];
900 items.advance (items_len - 1);
781 serialize(hb_serialize_context_t *c, Supplier<Type> &items, unsigned int items_len) argument
889 serialize(hb_serialize_context_t *c, Supplier<Type> &items, unsigned int items_len) argument
H A Dhb-uniscribe.cc804 SCRIPT_ITEM items[MAX_ITEMS + 1]; local
822 items,
839 unsigned int chars_offset = items[i].iCharPos;
840 unsigned int item_chars_len = items[i + 1].iCharPos - chars_offset;
881 items[i].a.fLogicalOrder = true;
886 &items[i].a,
902 if (unlikely (items[i].a.fNoGlyphIndex))
912 if (items[i].a.eScript == SCRIPT_UNDEFINED)
914 items[i].a.eScript = SCRIPT_UNDEFINED;
927 &items[
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtptngen_impl.h142 UnicodeString items[MAX_DT_TOKEN]; member in class:FormatParser
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dexpr.c54 /* Bitmap of used items. We should really never need more than 2 at a time,
1070 const yasm_expr__item *items; member in struct:subst_cbd
1081 expr_item_copy(ei, &cbd->items[ei->data.subst]);
1087 const yasm_expr__item *items)
1091 cbd.items = items;
1086 yasm_expr__subst(yasm_expr *e, unsigned int num_items, const yasm_expr__item *items) argument
/external/chromium_org/ui/message_center/views/
H A Dnotification_view.cc332 std::vector<NotificationItem> items = notification.items(); local
333 for (size_t i = 0; i < items.size() && i < kNotificationMaximumItems; ++i) {
334 accessible_lines.push_back(items[i].title + base::ASCIIToUTF16(" ") +
335 items[i].message);
582 message_view_->SetVisible(!notification.items().size());
637 progress_bar_view_->SetVisible(!notification.items().size());
647 std::vector<NotificationItem> items = notification.items(); local
649 if (items
[all...]
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh782 Supplier<Type> &items,
788 array[i] = items[i];
789 items.advance (items_len);
890 Supplier<Type> &items,
899 array[i] = items[i];
900 items.advance (items_len - 1);
781 serialize(hb_serialize_context_t *c, Supplier<Type> &items, unsigned int items_len) argument
889 serialize(hb_serialize_context_t *c, Supplier<Type> &items, unsigned int items_len) argument
H A Dhb-uniscribe.cc803 SCRIPT_ITEM items[MAX_ITEMS + 1]; local
821 items,
838 unsigned int chars_offset = items[i].iCharPos;
839 unsigned int item_chars_len = items[i + 1].iCharPos - chars_offset;
880 items[i].a.fLogicalOrder = true;
885 &items[i].a,
901 if (unlikely (items[i].a.fNoGlyphIndex))
912 if (items[i].a.eScript == SCRIPT_UNDEFINED)
914 items[i].a.eScript = SCRIPT_UNDEFINED;
927 &items[
[all...]
/external/icu/icu4c/source/i18n/
H A Ddtptngen_impl.h142 UnicodeString items[MAX_DT_TOKEN]; member in class:FormatParser
/external/icu/icu4c/source/test/intltest/
H A Ddtfmrgts.cpp1602 const TestDateFormatLeniencyItem items[] = { local
1631 for (itemPtr = items; itemPtr->locale != NULL; itemPtr++ ) {
/external/javassist/src/main/javassist/bytecode/
H A DConstPool.java34 LongVector items; field in class:ConstPool
126 items = new LongVector();
147 /* read() initializes items and numOfItems, and do addItem(null).
186 return items.elementAt(n);
667 items.addElement(info);
981 LongVector v = items;
998 LongVector v = items;
1015 LongVector v = items;
1028 items = new LongVector(n);
1042 ConstInfo info = items
[all...]

Completed in 1250 milliseconds

<<1112131415