HomeSort by relevance Sort by last modified time
    Searched refs:child_node (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.cc 110 SafeBrowsingHostMsg_MalwareDOMDetails_Node child_node; local
111 child_node.url = child_url;
112 child_node.tag_name = element.tagName().utf8();
113 child_node.parent = parent_node->url;
114 resources->push_back(child_node);
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
lookup_key.h 45 // deeper with the next level node being |child_node|.
47 // For example, if |parent| is "data/US" and |child_node| is "CA", then this
50 // The |parent| can be at most LOCALITY level. The |child_node| cannot be
52 void FromLookupKey(const LookupKey& parent, const std::string& child_node);
lookup_key.cc 116 const std::string& child_node) {
118 assert(!child_node.empty());
122 nodes_.insert(std::make_pair(child_field, child_node));
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.cc 540 const BookmarkNode* child_node = NULL; local
541 child_node = node_finder.FindBookmarkNode(
545 if (child_node) {
546 Associate(child_node, sync_child_id);
552 sync_child_node, bookmark_model_, child_node, profile_);
553 bookmark_model_->Move(child_node, parent_node, index);
557 child_node = BookmarkChangeProcessor::CreateBookmarkNode(
559 if (child_node)
560 Associate(child_node, sync_child_id);
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmark_api_helpers.cc 84 linked_ptr<BookmarkTreeNode> child_node(
86 children.push_back(child_node);
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 1482 const BookmarkNode* child_node = node->GetChild(i); local
1715 const BookmarkNode* child_node = bookmark_bar_node->GetChild(remove_index); local
1900 const BookmarkNode* child_node = bookmark_bar_node->GetChild(remove_index); local
    [all...]
profile_sync_service_autofill_unittest.cc 639 syncer::ReadNode child_node(&trans);
640 if (child_node.InitByIdLookup(child_id) != BaseNode::INIT_OK)
644 child_node.GetAutofillSpecifics());
663 child_id = child_node.GetSuccessorId();
678 syncer::ReadNode child_node(&trans);
679 if (child_node.InitByIdLookup(child_id) != BaseNode::INIT_OK)
683 child_node.GetAutofillProfileSpecifics());
689 child_id = child_node.GetSuccessorId();
    [all...]
profile_sync_service_typed_url_unittest.cc 289 syncer::ReadNode child_node(&trans);
290 if (child_node.InitByIdLookup(child_id) != syncer::BaseNode::INIT_OK)
294 child_node.GetTypedUrlSpecifics());
305 child_id = child_node.GetSuccessorId();
    [all...]
  /external/chromium_org/extensions/common/
extension_api.cc 83 const base::DictionaryValue* child_node = NULL; local
88 child_node = FindListItem(list_node, "name", child_name);
89 if (child_node)
90 return child_node;
  /external/chromium_org/chrome/common/extensions/docs/server2/
subversion_file_system.py 37 for child_node in node.childNodes:
38 text.append(_InnerText(child_node))
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter.cc 71 BrowserAccessibility* child_node = node.InternalGetChild(i); local
74 RecursiveBuildAccessibilityTree(*child_node, child_dict);
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 556 ListNode * const child_node = child_list->next; local
558 if (child_node->refcount < -1) {
559 list_remove_free(child_node, free_value, NULL);
595 const ListNode *child_node; local
599 for (child_node = child_list->next; child_node != child_list;
600 child_node = child_node->next) {
601 const SourceLocation * const location = child_node->value;
    [all...]
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.h 144 scoped_ptr<NodeBase> RemoveChild(NodeBase* child_node, Nodes* orphans);
r_tree_base.cc 131 NodeBase* child_node, Nodes* orphans) {
132 DCHECK_EQ(this, child_node->parent());
134 scoped_ptr<NodeBase> orphan(child_node->RemoveAndReturnLastChild());
137 orphan = child_node->RemoveAndReturnLastChild();
140 Nodes::iterator i = std::find(children_.begin(), children_.end(), child_node);
144 return scoped_ptr<NodeBase>(child_node);
r_tree_unittest.cc 62 const RTreeBase::NodeBase* child_node = node->child(i); local
63 check_bounds.Union(child_node->rect());
64 EXPECT_EQ(node->Level() - 1, child_node->Level());
65 EXPECT_EQ(node, child_node->parent());
    [all...]
  /external/chromium_org/build/android/gyp/
generate_v14_compatible_resources.py 63 for child_node in node.childNodes:
64 for child_node_element in IterateXmlElements(child_node):
  /system/core/sdcard/
sdcard.c 1097 struct node* child_node; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
malware_details_unittest.cc 408 SafeBrowsingHostMsg_MalwareDOMDetails_Node child_node; local
409 child_node.url = GURL(kDOMChildURL);
410 child_node.tag_name = "iframe";
411 child_node.parent = GURL(kDOMParentURL);
412 params.push_back(child_node);
  /external/chromium_org/components/bookmarks/browser/
bookmark_model.cc 222 BookmarkNode* child_node = permanent_node->GetChild(j); local
223 removed_nodes.push_back(child_node);
224 RemoveNodeAndGetRemovedUrls(child_node, &removed_urls);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_definitions.py 592 def child_node(extended_attribute_node): function in function:ext_attributes_node_to_extended_attributes
603 child = child_node(extended_attribute_node)

Completed in 594 milliseconds