HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 501 - 525 of 1569) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view_unittest.cc 65 const BookmarkNode* parent,
68 editor_.reset(new BookmarkEditorView(profile, parent, details,
90 BookmarkEditorView::EditorNode* parent) {
91 return editor_->AddNewFolder(parent);
101 return editor_->url_tf_->parent();
182 // Changes the title and makes sure parent/visual order doesn't change.
198 // Changes the url and makes sure parent/visual order doesn't change.
265 // Parent the node to "F21".
411 const BookmarkNode* parent = local
415 CreateEditor(profile_.get(), parent,
    [all...]
bookmark_menu_delegate.cc 44 views::Widget* parent,
49 parent_(parent),
65 MenuItemView* parent,
72 if (parent) {
73 parent_menu_item_ = parent;
74 int initial_count = parent->GetSubmenu() ?
75 parent->GetSubmenu()->GetMenuItemCount() : 0;
78 parent->AppendSeparator();
80 BuildMenu(node, start_child_index, parent, &next_menu_id_);
82 BuildMenusForPermanentNodes(parent, &next_menu_id_)
358 MenuItemView* parent = menu->GetParentMenuItem(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_view_layout.cc 252 views::View* parent = browser_view_->parent(); local
256 parent, browser_view_, &point_in_browser_view_coords);
263 if (ConvertedHitTest(parent, tab_strip_, &test_point)) {
390 browser_view->parent(), browser_view, &tabstrip_origin);
  /external/chromium_org/chrome/browser/ui/webui/
cookies_tree_model_util.cc 289 void CookiesTreeModelUtil::GetChildNodeList(const CookieTreeNode* parent,
295 const CookieTreeNode* child = parent->GetChild(start + i);
308 const CookieTreeNode* parent = root; local
318 child_index = parent->GetIndexOf(child);
322 parent = child;
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
bookmarks_handler.cc 161 const BookmarkNode* parent_node = node->parent();
190 void BookmarksHandler::SetParentInBookmarksResult(const BookmarkNode* parent,
192 result->SetString(kParentIdParam, GetBookmarkIdForNtp(parent));
241 const BookmarkNode* parent = GetParentOf(folder); local
243 while (parent != NULL) {
245 if (IsRoot(parent))
248 hierarchy_entry->SetString("title", parent->GetTitle());
249 hierarchy_entry->SetString("id", GetBookmarkIdForNtp(parent));
251 parent = GetParentOf(parent);
    [all...]
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.cc 56 BrowserAccessibility* parent,
60 parent_ = parent;
95 void BrowserAccessibility::UpdateParent(BrowserAccessibility* parent,
97 parent_ = parent;
141 // Walk up the parent chain. Every time we encounter a Web Area, offset
144 BrowserAccessibility* parent = parent_; local
148 while (parent) {
150 parent->location().width() > 0 &&
151 parent->location().height() > 0) {
152 bounds.Offset(parent->location().x(), parent->location().y())
    [all...]
browser_accessibility.h 72 BrowserAccessibility* parent,
81 // Update the parent and index in parent if this node has been moved.
82 void UpdateParent(BrowserAccessibility* parent, int index_in_parent);
90 // Returns the parent of this object, or NULL if it's the root.
91 BrowserAccessibility* parent() const { return parent_; } function in class:content::BrowserAccessibility
100 // child of its parent.
104 // of its parent.
254 // The parent of this object, may be NULL if we're the root object.
257 // The index of this within its parent object
    [all...]
browser_accessibility_cocoa.h 82 @property(nonatomic, readonly) id parent; variable
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.cc 291 // up the parent chain until we find a node the browser has, or until
316 // child of its parent, and if so move the notification to the parent.
320 WebAccessibilityObject parent = obj.parentObject(); local
321 while (!parent.isDetached() &&
322 parent.accessibilityIsIgnored()) {
323 parent = parent.parentObject();
326 if (parent.isDetached()) {
331 for (unsigned int i = 0; i < parent.childCount(); ++i)
479 BrowserTreeNode* parent = child->parent; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_http.cc 103 ScopedMountNode parent;
104 error = FindOrCreateDir(path.Parent(), &parent);
108 error = parent->AddChild(path.Basename(), node);
273 // If not the root node, find the parent node and add it to the parent
275 ScopedMountNode parent; local
276 error = FindOrCreateDir(path.Parent(), &parent);
280 error = parent->AddChild(path.Basename(), node)
    [all...]
  /external/chromium_org/net/spdy/
spdy_priority_forest.h 23 // node can have at most one parent and at most one child (forming a list), but
47 // Add a new node to the forest, with the given parent. Returns true on
49 // or if the parent doesn't exist, or if the parent already has a child.
60 // Get the parent of the given node. If the node doesn't exist, or is a root
61 // node (and thus has no parent), returns NodeId().
64 // Determine if the given node is unordered with respect to its parent. If
65 // the node doesn't exist, or is a root node (and thus has no parent),
78 // Set the parent of the given node. If the node was a root node, this makes
80 // effect if (1) the node and/or the parent doesn't exist, (2) the new paren
185 Node* parent = &all_nodes_[parent_id]; local
208 Node* parent = &all_nodes_[node.depends_on.parent_id]; local
286 Node* parent = &all_nodes_[node->depends_on.parent_id]; local
    [all...]
  /external/chromium_org/remoting/host/setup/
daemon_installer_win.cc 399 HWND parent = GetAncestor(window, GA_PARENT); local
400 if (parent == NULL) {
404 window = parent;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime.cpp 390 // Always associate this object with it's top-most parent.
393 NPObject* parent = 0; local
395 parent = ownerEntry->value;
397 if (parent)
398 owner = parent;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Text.cpp 152 RefPtr<ContainerNode> parent = parentNode(); // Protect against mutation handlers moving this node during traversal local
153 for (RefPtr<Node> n = startText; n && n != this && n->isTextNode() && n->parentNode() == parent;) {
156 parent->removeChild(nodeToRemove.get(), IGNORE_EXCEPTION);
161 for (RefPtr<Node> n = nextSibling(); n && n != onePastEndText && n->isTextNode() && n->parentNode() == parent;) {
164 parent->removeChild(nodeToRemove.get(), IGNORE_EXCEPTION);
169 if (parent && parentNode() == parent)
170 parent->removeChild(this, IGNORE_EXCEPTION);
207 RenderObject* parent = context.parentRenderer();
208 if (!parent->canHaveWhitespaceChildren()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/history/
HistoryItem.cpp 177 const String& HistoryItem::parent() const function in class:WebCore::HistoryItem
219 void HistoryItem::setParent(const String& parent)
221 m_parent = parent;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionElement.cpp 93 // manually cache the value. This happens if our parent doesn't have a
269 for (ContainerNode* parent = parentNode(); parent ; parent = parent->parentNode()) {
270 if (parent->hasTagName(datalistTag))
271 return static_cast<HTMLDataListElement*>(parent);
331 ContainerNode* parent = parentNode(); local
332 if (parent && isHTMLOptGroupElement(parent))
    [all...]
HTMLTableElement.cpp 215 RefPtr<ContainerNode> parent; local
217 parent = row ? row->parentNode() : lastRow->parentNode();
219 parent = lastBody();
220 if (!parent) {
230 parent->insertBefore(newRow, row.get(), es, AttachLazily);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 63 RefPtr<ContainerNode> parent; member in struct:WebCore::HTMLConstructionSiteTask
188 void attachLater(ContainerNode* parent, PassRefPtr<Node> child, bool selfClosing = false);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.cpp 159 while ((frame = frame->tree()->parent())) {
211 ASSERT(!m_frame->tree()->parent());
301 if (!m_currentItem && !m_frame->tree()->parent()) {
311 Frame* parentFrame = m_frame->tree()->parent();
496 Frame* parentFrame = m_frame->tree()->parent();
497 String parent = parentFrame ? parentFrame->tree()->uniqueName() : ""; local
502 item->setParent(parent);
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.cpp 46 if (!parent()) {
51 m_uniqueName = parent()->tree()->uniqueChildName(name);
60 Frame* FrameTree::parent() const function in class:WebCore::FrameTree
67 Frame* oldParent = child->tree()->parent();
77 // We need to ensure that the child still has a unique frame name with respect to its new parent.
144 // Find the nearest parent that has a frame with a path in it.
147 for (frame = m_thisFrame; frame; frame = frame->tree()->parent()) {
263 return parent() ? parent() : m_thisFrame;
310 for (Frame* frame = m_thisFrame; frame; frame = frame->tree()->parent())
    [all...]
PageSerializer.cpp 129 Element* parent = text->parentElement(); local
130 if (parent && !shouldIgnoreElement(parent))
SpatialNavigation.cpp 437 Node* parent = node; local
439 if (parent->isDocumentNode())
440 parent = toDocument(parent)->document()->frame()->ownerElement();
442 parent = parent->parentNode();
443 } while (parent && !canScrollInDirection(parent, direction) && !parent->isDocumentNode());
445 return parent;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Scrollbar.h 62 virtual ScrollView* parent() const { return Widget::parent(); } function in class:WebCore::Scrollbar
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderCounter.cpp 167 // identifier in the CounterNode tree for identifier and sets parent and
182 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, RefPtr<CounterNode>& parent, RefPtr<CounterNode>& previousSibling)
202 // We found a reset counter that is on a renderer that is a sibling of ours or a parent.
207 parent = currentCounter->parent();
208 previousSibling = parent ? currentCounter : 0;
209 return parent;
213 parent = currentCounter;
215 // In these cases the identified previousSibling will be invalid as its parent is different from
216 // our identified parent
541 CounterNode* parent = node->parent(); local
    [all...]
RenderVideo.cpp 272 RenderObject* parent = renderer->parent(); local
273 if (!parent)
276 RenderFullScreen* fullScreen = parent->isRenderFullScreen() ? toRenderFullScreen(parent) : 0;

Completed in 946 milliseconds

<<21222324252627282930>>