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 70 int add_types; member in struct:TabStripModelDelegate::NewStripContents
tab_strip_model.cc 279 int add_types) {
282 bool active = add_types & ADD_ACTIVE;
286 bool pin = extensions_tab_helper->is_app() || add_types & ADD_PINNED;
301 if ((add_types & ADD_INHERIT_GROUP) && active_contents) {
310 } else if ((add_types & ADD_INHERIT_OPENER) && active_contents) {
788 int add_types) {
792 bool inherit_group = (add_types & ADD_INHERIT_GROUP) == ADD_INHERIT_GROUP;
795 (add_types & ADD_FORCE_INDEX) == 0) {
802 add_types & ADD_ACTIVE);
821 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 103 int add_types = select ? TabStripModel::ADD_ACTIVE local
109 add_types |= TabStripModel::ADD_PINNED;
112 add_types);
browser_tab_strip_model_delegate.cc 78 item.add_types |= TabStripModel::ADD_ACTIVE;
81 static_cast<int>(i), item.web_contents, item.add_types);
browser_commands.cc 595 int add_types = TabStripModel::ADD_ACTIVE | local
599 index + 1, contents_dupe, add_types);
1090 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 706 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 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 1326 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 844 int add_types = first_tab ? TabStripModel::ADD_ACTIVE : local
846 add_types |= TabStripModel::ADD_FORCE_INDEX;
848 add_types |= TabStripModel::ADD_PINNED;
853 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 1110 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 1052 int add_types = active ? TabStripModel::ADD_ACTIVE : local
    [all...]

Completed in 745 milliseconds

1 2