OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:drop_parent
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.cc
169
const BookmarkNode*
drop_parent
= node->parent();
local
170
int index_to_drop_at =
drop_parent
->GetIndexOf(node);
174
drop_parent
= node;
177
DCHECK(
drop_parent
);
179
profile_, event, drop_data_,
drop_parent
, index_to_drop_at);
189
const BookmarkNode*
drop_parent
= drop_node->parent();
local
190
DCHECK(
drop_parent
);
191
int index_to_drop_at =
drop_parent
->GetIndexOf(drop_node);
196
drop_parent
= drop_node;
201
profile_, drop_data_,
drop_parent
, index_to_drop_at)
[
all
...]
/external/chromium/chrome/browser/extensions/
extension_bookmark_manager_api.cc
397
const BookmarkNode*
drop_parent
= model->GetNodeByID(id);
local
398
if (!
drop_parent
) {
407
drop_index =
drop_parent
->child_count();
424
drop_parent
, drop_index);
local
/external/chromium/chrome/browser/bookmarks/
bookmark_utils.h
59
// Returns true if the bookmark data can be dropped on |
drop_parent
| at
62
// |data| are an ancestor of |
drop_parent
| and one of the nodes isn't already
63
// a child of |
drop_parent
| at |index|.
66
const BookmarkNode*
drop_parent
,
bookmark_utils.cc
282
const BookmarkNode*
drop_parent
,
284
if (!
drop_parent
->is_folder()) {
298
int node_index = (
drop_parent
== node->parent()) ?
299
drop_parent
->GetIndexOf(nodes[i]) : -1;
303
//
drop_parent
can't accept a child that is an ancestor.
304
if (
drop_parent
->HasAncestor(node))
Completed in 179 milliseconds