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

1 2

  /external/chromium_org/chrome/browser/ui/gtk/tabs/
drag_data.cc 89 int add_types = TabStripModel::ADD_NONE; local
91 add_types |= TabStripModel::ADD_PINNED;
93 add_types |= TabStripModel::ADD_ACTIVE;
94 return add_types;
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_delegate.h 68 int add_types; member in struct:TabStripModelDelegate::NewStripContents
tab_strip_model.cc 152 int add_types) {
155 bool active = add_types & ADD_ACTIVE;
159 bool pin = extensions_tab_helper->is_app() || add_types & ADD_PINNED;
174 if ((add_types & ADD_INHERIT_GROUP) && active_contents) {
182 } else if ((add_types & ADD_INHERIT_OPENER) && active_contents) {
653 int add_types) {
657 bool inherit_group = (add_types & ADD_INHERIT_GROUP) == ADD_INHERIT_GROUP;
660 (add_types & ADD_FORCE_INDEX) == 0) {
667 add_types & ADD_ACTIVE);
686 add_types | (inherit_group ? ADD_INHERIT_GROUP : 0))
    [all...]
tab_strip_model.h 169 // |add_types| is a bitmask of AddTabTypes; see it for details.
180 int add_types);
381 // the specified insertion index, transition, etc. |add_types| is a bitmask of
388 int add_types);
  /external/chromium_org/chrome/browser/ui/
browser_tabrestore.cc 103 int add_types = select ? TabStripModel::ADD_ACTIVE local
109 add_types |= TabStripModel::ADD_PINNED;
112 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 593 int add_types = TabStripModel::ADD_ACTIVE | local
597 index + 1, contents_dupe, add_types);
1054 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_update_job.cc 700 entry->add_types(AppCacheEntry::MANIFEST);
    [all...]
appcache.cc 57 ret.first->second.add_types(entry.types());
mock_appcache_storage.cc 138 entry->add_types(AppCacheEntry::FOREIGN);
  /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/chrome/browser/tabs/
tab_strip_model.cc 118 int add_types) {
119 bool active = add_types & ADD_ACTIVE;
122 contents->extension_tab_helper()->is_app() || add_types & ADD_PINNED;
137 if ((add_types & ADD_INHERIT_GROUP) && selected_contents) {
145 } else if ((add_types & ADD_INHERIT_OPENER) && selected_contents) {
621 int add_types) {
625 bool inherit_group = (add_types & ADD_INHERIT_GROUP) == ADD_INHERIT_GROUP;
628 (add_types & ADD_FORCE_INDEX) == 0) {
635 contents, transition, add_types & ADD_ACTIVE);
655 add_types | (inherit_group ? ADD_INHERIT_GROUP : 0))
    [all...]
tab_strip_model.h 165 // Adds the specified TabContents at the specified location. |add_types| is a
177 int add_types);
392 // specified insertion index, transition, etc. |add_types| is a bitmask of
398 int add_types);
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout.h 59 // Adds a new tab at the specified index. |add_types| is a bitmask of
61 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 1171 int add_types = TabStripModel::ADD_NONE; local
    [all...]
  /external/chromium/chrome/browser/sessions/
session_restore.cc 714 int add_types = TabStripModel::ADD_FORCE_INDEX; local
716 add_types |= TabStripModel::ADD_ACTIVE;
722 params.tabstrip_add_types = add_types;
  /external/chromium/chrome/browser/ui/
browser_init.cc 1006 int add_types = first_tab ? TabStripModel::ADD_ACTIVE : local
    [all...]
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_impl.cc 814 int add_types = first_tab ? TabStripModel::ADD_ACTIVE : local
816 add_types |= TabStripModel::ADD_FORCE_INDEX;
818 add_types |= TabStripModel::ADD_PINNED;
823 params.tabstrip_add_types = add_types;
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.cc 743 int add_types = selected ? TabStripModel::ADD_ACTIVE : local
745 add_types |= TabStripModel::ADD_FORCE_INDEX;
747 add_types |= TabStripModel::ADD_PINNED;
751 params.tabstrip_add_types = add_types;
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_restore.cc 1122 int add_types = TabStripModel::ADD_FORCE_INDEX; local
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.cc 903 int add_types = TabStripModel::ADD_NONE; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_api.cc 1120 int add_types = active ? TabStripModel::ADD_ACTIVE : local
    [all...]

Completed in 380 milliseconds

1 2