OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TreeNodeModel
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/ui/oak/
oak_tree_model.h
19
typedef ui::
TreeNodeModel
<WindowNode> TreeOfWindows;
/external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h
58
class EditorTreeModel : public ui::
TreeNodeModel
<EditorNode> {
61
: ui::
TreeNodeModel
<EditorNode>(root) {}
66
TreeNodeModel
::SetTitle(node, title);
/external/chromium_org/ui/base/models/
tree_node_model.h
22
//
TreeNodeModel
and TreeNodes provide an implementation of TreeModel around
29
// are using TreeNodes with a
TreeNodeModel
you will need to notify the observer
33
// Remove and set_title.
TreeNodeModel
provides cover methods that mutate the
35
//
TreeNodeModel
use the cover methods to save yourself the headache.
38
// creates a
TreeNodeModel
from it:
43
//
TreeNodeModel
<TreeNodeWithValue<int> > model(root);
206
//
TreeNodeModel
--------------------------------------------------------------
210
class
TreeNodeModel
: public TreeModel {
212
// Creates a
TreeNodeModel
with the specified root node. The root is owned
213
// by the
TreeNodeModel
[
all
...]
tree_node_model_unittest.cc
70
TreeNodeModel
<TestNode > model(root);
95
TreeNodeModel
<TestNode > model(root);
281
TreeNodeModel
<TestNode > model(root);
/external/chromium_org/ui/views/examples/
tree_view_example.h
80
ui::
TreeNodeModel
<NodeType> model_;
/external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h
61
class EditorTreeModel : public ui::
TreeNodeModel
<EditorNode> {
64
: ui::
TreeNodeModel
<EditorNode>(root) {}
bookmark_editor_view.cc
632
ui::
TreeNodeModel
<EditorNode>::SetTitle(node, title);
/external/chromium/chrome/browser/
cookies_tree_model.h
451
class CookiesTreeModel : public ui::
TreeNodeModel
<CookieTreeNode> {
492
//
TreeNodeModel
::AddObserver so that it gets all the proper notifications.
cookies_tree_model.cc
509
: ALLOW_THIS_IN_INITIALIZER_LIST(ui::
TreeNodeModel
<CookieTreeNode>(
671
// Call super so that
TreeNodeModel
can notify, too.
672
ui::
TreeNodeModel
<CookieTreeNode>::AddObserver(observer);
677
// Call super so that
TreeNodeModel
doesn't have dead pointers.
678
ui::
TreeNodeModel
<CookieTreeNode>::RemoveObserver(observer);
/external/chromium_org/chrome/browser/browsing_data/
cookies_tree_model.cc
861
: ui::
TreeNodeModel
<CookieTreeNode>(new CookieTreeRootNode(this)),
[
all
...]
cookies_tree_model.h
585
class CookiesTreeModel : public ui::
TreeNodeModel
<CookieTreeNode> {
648
//
TreeNodeModel
::AddObserver so that it gets all the proper notifications.
/external/chromium_org/ui/views/controls/tree/
tree_view_unittest.cc
65
ui::
TreeNodeModel
<TestNode > model_;
Completed in 526 milliseconds