OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXISTING_NODE
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/bookmarks/
bookmark_editor.cc
11
existing_node
(NULL) {
15
: type(
EXISTING_NODE
),
16
existing_node
(node) {
bookmark_editor.h
33
// is editing is set in |
existing_node
|.
34
EXISTING_NODE
,
37
// |
existing_node
| is null in this case.
42
// |
existing_node
| is null in this case.
53
// If type ==
EXISTING_NODE
this gives the existing node.
54
const BookmarkNode*
existing_node
;
member in struct:BookmarkEditor::EditDetails
66
// |parent| is only used if |details.
existing_node
| is null.
/external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_editor_gtk.cc
279
if (details_.type == EditDetails::
EXISTING_NODE
) {
280
title = UTF16ToUTF8(details_.
existing_node
->GetTitle());
293
if (details_.type == EditDetails::
EXISTING_NODE
)
294
url_spec = details_.
existing_node
->GetURL().spec();
319
if (details_.type == EditDetails::
EXISTING_NODE
)
320
selected_id = details_.
existing_node
->parent()->id();
404
if ((details_.type == EditDetails::
EXISTING_NODE
&&
405
details_.
existing_node
->HasAncestor(node)) ||
/external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc
272
if (details_.type == EditDetails::
EXISTING_NODE
)
273
title = details_.
existing_node
->GetTitle();
285
if (details_.type == EditDetails::
EXISTING_NODE
) {
292
url_text = net::FormatUrl(details_.
existing_node
->GetURL(), languages,
390
if ((details_.type == EditDetails::
EXISTING_NODE
&&
391
details_.
existing_node
->HasAncestor(node)) ||
473
if (details_.type == EditDetails::
EXISTING_NODE
)
474
to_select = details_.
existing_node
->parent();
Completed in 118 milliseconds