Searched defs:TreeNodeWithValue (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/ui/base/models/
H A Dtree_node_model.h40 // TreeNodeWithValue<int>* root = new TreeNodeWithValue<int>();
41 // root->Add(new TreeNodeWithValue<int>(ASCIIToUTF16("child 1"), 0));
42 // root->Add(new TreeNodeWithValue<int>(ASCIIToUTF16("child 2"), 1));
43 // TreeNodeModel<TreeNodeWithValue<int> > model(root);
51 // . TreeNodeWithValue is a trivial subclass of TreeNode that has one type
56 // want to associate a value with each node, then use TreeNodeWithValue.
185 // TreeNodeWithValue ----------------------------------------------------------
188 class TreeNodeWithValue : public TreeNode< TreeNodeWithValue<ValueTyp class in namespace:ui
190 TreeNodeWithValue() {} function in class:ui::TreeNodeWithValue
192 explicit TreeNodeWithValue(const ValueType& value) function in class:ui::TreeNodeWithValue
195 TreeNodeWithValue(const base::string16& title, const ValueType& value) function in class:ui::TreeNodeWithValue
[all...]

Completed in 177 milliseconds