HomeSort by relevance Sort by last modified time
    Searched refs:item_ (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/ui/app_list/views/
tile_item_view.cc 33 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_->icon())
    [all...]
tile_item_view.h 45 SearchResult* item_; member in class:app_list::TileItemView
app_list_main_view.cc 82 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/chrome/browser/ui/ash/launcher/
launcher_context_menu.cc 43 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_.type != ash::TYPE_WINDOWED_APP)
    [all...]
launcher_context_menu.h 53 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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
item.hpp 44 static aux::type_wrapper<T> item_(index_);
45 using Base::item_;
61 static aux::type_wrapper<T> item_(index_);
62 using Base::item_;
79 static aux::type_wrapper<void_> item_(index_);
80 using Base::item_;
95 static aux::type_wrapper<void_> item_(index_);
96 using Base::item_;
vector0.hpp 39 static aux::type_wrapper<void_> item_(...);
  /external/chromium_org/tools/gn/
builder_record.h 56 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
trace.cc 127 : 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_->set_cmdline(FilePathToUTF8(cmdline.GetArgumentsString()))
    [all...]
trace.h 81 TraceItem* item_; member in class:ScopedTrace
  /external/chromium_org/chrome/browser/download/
download_item_model_unittest.cc 59 : 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_, GetURL()
107 NiceMock<content::MockDownloadItem> item_; member in class:__anon8209::DownloadItemModelTest
    [all...]
all_download_item_notifier_unittest.cc 49 content::MockDownloadItem& item() { return item_; }
72 NiceMock<content::MockDownloadItem> item_; member in class:__anon8196::AllDownloadItemNotifierTest
  /external/chromium_org/ui/file_manager/file_manager/background/js/
drive_sync_handler.js 33 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_.progressMax = status.total
    [all...]
  /external/chromium_org/content/renderer/
history_entry.cc 75 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_.target().utf8()] = this
    [all...]
history_entry.h 71 blink::WebHistoryItem& item() { return item_; }
79 blink::WebHistoryItem item_; member in class:content::HistoryEntry::HistoryNode
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service.cc 283 : 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_ == NULL)
855 content::DownloadItem* item_; member in class:safe_browsing::DownloadProtectionService::CheckClientDownloadRequest
    [all...]
  /external/qemu/android/utils/
reflist.h 170 #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/
download_test_observer.cc 23 : 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_ = NULL
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/status_icons/
status_icon_mac.h 47 // Getter for item_ that allows lazy initialization.
49 base::scoped_nsobject<NSStatusItem> item_; member in class:StatusIconMac
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 36 const unsigned int item_; member in class:webrtc::ListItem
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 36 const unsigned int item_; member in class:webrtc::ListNoStlItem
list_stl.h 33 const unsigned int item_; member in class:webrtc::ListItem
list_no_stl.cc 21 item_(0)
29 item_(item)
44 return item_;
list_stl.cc 19 item_(0)
26 item_(item)
41 return item_;
  /external/chromium_org/chrome/browser/ui/views/profiles/
avatar_menu_bubble_view.cc 220 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_.signed_in
    [all...]

Completed in 596 milliseconds

1 2