HomeSort by relevance Sort by last modified time
    Searched refs:add_types (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_delegate.h 67 int add_types; member in struct:TabStripModelDelegate::NewStripContents
tab_strip_model.cc 278 int add_types) {
281 bool active = add_types & ADD_ACTIVE;
285 bool pin = extensions_tab_helper->is_app() || add_types & ADD_PINNED;
300 if ((add_types & ADD_INHERIT_GROUP) && active_contents) {
309 } else if ((add_types & ADD_INHERIT_OPENER) && active_contents) {
787 int add_types) {
791 bool inherit_group = (add_types & ADD_INHERIT_GROUP) == ADD_INHERIT_GROUP;
794 (add_types & ADD_FORCE_INDEX) == 0) {
801 add_types & ADD_ACTIVE);
820 add_types | (inherit_group ? ADD_INHERIT_GROUP : 0))
    [all...]
tab_strip_model.h 167 // |add_types| is a bitmask of AddTabTypes; see it for details.
178 int add_types);
379 // the specified insertion index, transition, etc. |add_types| is a bitmask of
386 int add_types);
  /external/chromium_org/chrome/browser/ui/
browser_tabrestore.cc 106 int add_types = select ? TabStripModel::ADD_ACTIVE local
112 add_types |= TabStripModel::ADD_PINNED;
115 add_types);
browser_tab_strip_model_delegate.cc 72 item.add_types |= TabStripModel::ADD_ACTIVE;
75 static_cast<int>(i), item.web_contents, item.add_types);
browser_commands.cc 654 int add_types = TabStripModel::ADD_ACTIVE | local
658 index + 1, contents_dupe, add_types);
1182 int add_types = TabStripModel::ADD_ACTIVE | local
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_entry.h 43 void add_types(int added_types) { types_ |= added_types; } function in class:appcache::AppCacheEntry
appcache.cc 57 ret.first->second.add_types(entry.types());
appcache_update_job.cc 838 entry->add_types(AppCacheEntry::MANIFEST);
    [all...]
appcache_storage_impl.cc 484 cache->get()->GetEntry(*iter)->add_types(AppCacheEntry::FOREIGN);
    [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 170 void add_types(int value);
173 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does not match any declaration in 'Child'}} function in class:Child
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout.h 61 // Adds a new tab at the specified index. |add_types| is a bitmask of
63 void AddTab(int index, int add_types, int start_x);
stacked_tab_strip_layout_unittest.cc 333 int add_types = 0; local
335 add_types |= StackedTabStripLayout::kAddTypeActive;
337 add_types |= StackedTabStripLayout::kAddTypeMini;
339 layout_->AddTab(test_data[i].add_index, add_types,
stacked_tab_strip_layout.cc 150 void StackedTabStripLayout::AddTab(int index, int add_types, int start_x) {
151 if (add_types & kAddTypeActive)
155 if (add_types & kAddTypeMini)
169 if ((add_types & kAddTypeActive) == 0)
tab_drag_controller.cc 1013 int add_types = TabStripModel::ADD_NONE; local
    [all...]
tab_strip.cc 649 int add_types = 0; local
651 add_types |= StackedTabStripLayout::kAddTypeMini;
653 add_types |= StackedTabStripLayout::kAddTypeActive;
654 touch_layout_->AddTab(model_index, add_types, GetStartXForNormalTabs());
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_tab_util.cc 227 int add_types = active ? TabStripModel::ADD_ACTIVE : TabStripModel::ADD_NONE; local
228 add_types |= TabStripModel::ADD_FORCE_INDEX;
230 add_types |= TabStripModel::ADD_PINNED;
236 navigate_params.tabstrip_add_types = add_types;
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_impl.cc 788 int add_types = first_tab ? TabStripModel::ADD_ACTIVE : local
790 add_types |= TabStripModel::ADD_FORCE_INDEX;
792 add_types |= TabStripModel::ADD_PINNED;
797 params.tabstrip_add_types = add_types;
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_restore.cc 1125 int add_types = TabStripModel::ADD_FORCE_INDEX; local
    [all...]
  /external/chromium_org/content/browser/appcache/
mock_appcache_storage.cc 145 entry->add_types(AppCacheEntry::FOREIGN);

Completed in 248 milliseconds