OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:existing_node
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_editor.cc
47
: type(node_type),
existing_node
(NULL), parent_node(NULL), index(-1) {
53
case
EXISTING_NODE
:
54
node_type =
existing_node
->type();
71
case EditDetails::
EXISTING_NODE
:
73
dialog_title = (type == EditDetails::
EXISTING_NODE
&&
74
existing_node
->type() == BookmarkNode::FOLDER) ?
91
EditDetails details(
EXISTING_NODE
);
92
details.
existing_node
= node;
134
const BookmarkNode* node = details.
existing_node
;
156
const BookmarkNode* node = details.
existing_node
;
[
all
...]
bookmark_editor.h
57
// is editing is set in |
existing_node
|.
58
EXISTING_NODE
,
61
// |
existing_node
| is null in this case.
66
// |
existing_node
| is null in this case.
75
// If type ==
EXISTING_NODE
this gives the existing node.
76
const BookmarkNode*
existing_node
;
member in class:BookmarkEditor::EditDetails
100
// |details.parent_node| is only used if |details.
existing_node
| is null.
/external/chromium_org/content/renderer/
history_controller.cc
135
if (HistoryEntry::HistoryNode*
existing_node
=
137
existing_node
->set_item(item);
/external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc
276
if (details_.type == EditDetails::
EXISTING_NODE
) {
277
title = details_.
existing_node
->GetTitle();
278
url = details_.
existing_node
->url();
387
if ((details_.type == EditDetails::
EXISTING_NODE
&&
388
details_.
existing_node
->HasAncestor(node)) ||
484
if (details_.type == EditDetails::
EXISTING_NODE
)
485
to_select = details_.
existing_node
->parent();
/external/chromium_org/components/enhanced_bookmarks/
enhanced_bookmark_model_unittest.cc
367
const BookmarkNode*
existing_node
=
local
372
EXPECT_TRUE(model_->GetRemoteId(
existing_node
).empty());
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js
1054
JqTreeWidget.prototype.addNodeAfter = function(new_node_info,
existing_node
) {
1056
new_node =
existing_node
.addAfter(new_node_info);
1057
this._refreshElements(
existing_node
.parent);
1061
JqTreeWidget.prototype.addNodeBefore = function(new_node_info,
existing_node
) {
1063
new_node =
existing_node
.addBefore(new_node_info);
1064
this._refreshElements(
existing_node
.parent);
1068
JqTreeWidget.prototype.addParentNode = function(new_node_info,
existing_node
) {
1070
new_node =
existing_node
.addParent(new_node_info);
[
all
...]
Completed in 445 milliseconds