Searched refs:item_ (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/ui/app_list/views/
H A Dtile_item_view.cc33 item_(NULL),
52 // When |item_| is NULL, the tile is invisible. Calling SetSearchResult with a
61 if (item_)
62 item_->RemoveObserver(this);
68 SearchResult* old_item = item_;
72 item_ = item;
77 item_->AddObserver(this);
79 title_->SetText(item_->title());
95 item_->Open(event.flags());
99 icon_->SetImage(item_
[all...]
H A Dtile_item_view.h45 SearchResult* item_; member in class:app_list::TileItemView
H A Dapp_list_main_view.cc82 item_(item) {
83 item_->AddObserver(this);
86 item_->icon().GetRepresentation(scale);
90 item_->RemoveObserver(this);
101 AppListItem* item_; member in class:app_list::AppListMainView::IconLoader
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Ddrive_sync_handler.js33 this.item_ = new ProgressCenterItem();
34 this.item_.id = 'drive-sync';
113 this.item_.state = ProgressItemState.PROGRESSING;
114 this.item_.type = ProgressItemType.SYNC;
115 this.item_.quiet = true;
118 this.item_.message = strf('SYNC_FILE_NUMBER', status.num_total_jobs);
120 this.item_.message = strf('SYNC_FILE_NAME', entry.name);
121 this.item_.cancelCallback = this.requestCancel_.bind(this, entry);
122 this.item_.progressValue = status.processed;
123 this.item_
[all...]
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dlauncher_context_menu.cc43 item_(*item),
58 item_(*item),
71 item_(ash::ShelfItem()),
89 if (item_.type == ash::TYPE_APP_SHORTCUT ||
90 item_.type == ash::TYPE_WINDOWED_APP) {
92 if (!controller_->IsPlatformApp(item_.id)) {
98 l10n_util::GetStringUTF16(controller_->IsPinned(item_.id) ?
101 if (controller_->IsOpen(item_.id)) {
105 if (!controller_->IsPlatformApp(item_.id) &&
106 item_
[all...]
H A Dlauncher_context_menu.h53 ash::ShelfID id() const { return item_.id; }
95 // Does |item_| represent a valid item? See description of constructor for
97 bool is_valid_item() const { return item_.id != 0; }
101 ash::ShelfItem item_; member in class:LauncherContextMenu
/external/chromium_org/tools/gn/
H A Dbuilder_record.h56 Item* item() { return item_.get(); }
57 const Item* item() const { return item_.get(); }
58 void set_item(scoped_ptr<Item> item) { item_ = item.Pass(); }
77 return item_ && unresolved_deps_.empty();
100 scoped_ptr<Item> item_; member in class:BuilderRecord
H A Dtrace.cc127 : item_(NULL),
130 item_ = new TraceItem(t, name, base::PlatformThread::CurrentId());
131 item_->set_begin(base::TimeTicks::HighResNow());
136 : item_(NULL),
139 item_ = new TraceItem(t, label.GetUserVisibleName(false),
141 item_->set_begin(base::TimeTicks::HighResNow());
150 if (item_)
151 item_->set_toolchain(label.GetUserVisibleName(false));
155 if (item_)
156 item_
[all...]
H A Dtrace.h81 TraceItem* item_; member in class:ScopedTrace
/external/chromium_org/chrome/browser/download/
H A Ddownload_item_model_unittest.cc59 : model_(&item_) {}
68 ON_CALL(item_, GetReceivedBytes()).WillByDefault(Return(1));
69 ON_CALL(item_, GetTotalBytes()).WillByDefault(Return(2));
70 ON_CALL(item_, TimeRemaining(_)).WillByDefault(Return(false));
71 ON_CALL(item_, GetMimeType()).WillByDefault(Return("text/html"));
72 ON_CALL(item_, AllDataSaved()).WillByDefault(Return(false));
73 ON_CALL(item_, GetOpenWhenComplete()).WillByDefault(Return(false));
74 ON_CALL(item_, GetFileExternallyRemoved()).WillByDefault(Return(false));
75 ON_CALL(item_, GetState())
77 ON_CALL(item_, GetUR
107 NiceMock<content::MockDownloadItem> item_; member in class:__anon3584::DownloadItemModelTest
[all...]
H A Dall_download_item_notifier_unittest.cc49 content::MockDownloadItem& item() { return item_; }
72 NiceMock<content::MockDownloadItem> item_; member in class:__anon3571::AllDownloadItemNotifierTest
/external/chromium_org/content/renderer/
H A Dhistory_entry.cc75 const WebHistoryItem& item_for_create = is_target_frame ? new_item : item_;
79 if (is_target_frame && clone_children_of_target && !item_.isNull()) {
81 item_.documentSequenceNumber());
110 item_ = item;
116 : entry_(entry), item_(item) {
123 GetFrameMap()[frame_id] = item_.frameSequenceNumber();
124 else if (!item_.isNull())
125 item_.setFrameSequenceNumber(GetFrameMap()[frame_id]);
129 if (!item_.isNull())
130 entry_->unique_names_to_items_[item_
[all...]
H A Dhistory_entry.h71 blink::WebHistoryItem& item() { return item_; }
79 blink::WebHistoryItem item_; member in class:content::HistoryEntry::HistoryNode
/external/chromium_org/chrome/browser/safe_browsing/
H A Ddownload_protection_service.cc283 : item_(item),
299 item_->AddObserver(this);
304 << item_->DebugString(true);
311 *item_, item_->GetTargetFilePath(), &reason, &type_)) {
319 RecordFileExtensionType(item_->GetTargetFilePath());
328 RecordFileExtensionType(item_->GetTargetFilePath());
333 if (item_->GetTargetFilePath().MatchesExtension(
338 item_->GetTargetFilePath()));
383 DCHECK(item_
855 content::DownloadItem* item_; member in class:safe_browsing::DownloadProtectionService::CheckClientDownloadRequest
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dlist_and_associated_view_test.js17 this.item_ = undefined;
21 this.item_ = item;
24 return this.item_;
/external/qemu/android/utils/
H A Dreflist.h170 #define AREFLIST_FOREACH(list_,item_,statement_) \
177 void* item_ = *__reflist_at; \
178 if (item_ != NULL) { \
187 #define AREFLIST_FOREACH_CONST(list_,item_,statement_) \
193 void* item_ = *__reflist_at; \
194 if (item_ != NULL) { \
/external/chromium_org/content/public/test/
H A Ddownload_test_observer.cc23 : item_(item),
31 if (item_)
32 item_->RemoveObserver(this);
36 if (item_ && filter_.Run(item_))
48 DCHECK_EQ(item_, item);
49 if (filter_.Run(item_))
56 DCHECK_EQ(item_, item);
57 item_->RemoveObserver(this);
58 item_
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h33 const unsigned int item_; member in class:webrtc::ListItem
H A Dlist_no_stl.cc21 item_(0)
29 item_(item)
44 return item_;
H A Dlist_stl.cc19 item_(0)
26 item_(item)
41 return item_;
H A Dlist_no_stl.h36 const unsigned int item_; member in class:webrtc::ListNoStlItem
/external/chromium_org/chrome/browser/ui/cocoa/status_icons/
H A Dstatus_icon_mac.h47 // Getter for item_ that allows lazy initialization.
49 base::scoped_nsobject<NSStatusItem> item_; member in class:StatusIconMac
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h36 const unsigned int item_; member in class:webrtc::ListItem
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Davatar_menu_bubble_view.cc220 const AvatarMenu::Item& item() const { return item_; }
228 AvatarMenu::Item item_; member in class:ProfileItemView
243 item_(item),
254 const gfx::ImageSkia profile_icon = *profiles::GetSizedAvatarIcon(item_.icon,
256 if (item_.active || item_.signin_required)
264 name_label_ = new views::Label(item_.name,
265 rb->GetFontList(item_.active ?
272 sync_state_label_ = new views::Label(item_.sync_state);
273 if (item_
[all...]
/external/chromium_org/base/containers/
H A Dsmall_map_unittest.cc431 : item_(item_to_add) {}
433 : item_(0) {}
435 map_ctor->Init(std::make_pair(item_, item_));
438 int item_; member in class:base::__anon2215::hash_map_add_item_initializer

Completed in 422 milliseconds

12