Searched refs:child (Results 251 - 275 of 1690) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/Object/
H A DArchive.h100 Child child; member in class:llvm::object::Archive::child_iterator
102 child_iterator() : child(Child(nullptr, nullptr)) {}
103 child_iterator(const Child &c) : child(c) {}
105 return &child;
109 return child == other.child;
117 return child < other.child;
121 child = child
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowListView.java30 View child = super.findViewById(id);
31 if (child == null) {
32 child = findView(headerViews, id);
34 if (child == null) {
35 child = findView(footerViews, id);
38 return child;
42 View child = null;
44 child = v.findViewById(viewId);
45 if (child != null) {
49 return child;
[all...]
/external/chromium_org/ash/wm/
H A Dlock_layout_manager.h58 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE;
59 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE;
60 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE;
61 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
63 virtual void SetChildBounds(aura::Window* child,
H A Dlock_layout_manager.cc55 void LockLayoutManager::OnWindowAddedToLayout(aura::Window* child) { argument
56 child->AddObserver(this);
58 // LockWindowState replaces default WindowState of a child.
59 wm::WindowState* window_state = LockWindowState::SetLockWindowState(child);
64 void LockLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) { argument
65 child->RemoveObserver(this);
68 void LockLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { argument
71 void LockLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child, argument
75 void LockLayoutManager::SetChildBounds(aura::Window* child, argument
77 wm::WindowState* window_state = wm::GetWindowState(child);
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/
H A Dview.h65 void AddChild(View* child);
66 void RemoveChild(View* child);
72 bool Contains(View* child) const;
103 void LocalAddChild(View* child);
104 void LocalRemoveChild(View* child);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTransformableContainer.cpp50 bool RenderSVGTransformableContainer::isChildAllowed(RenderObject* child, RenderStyle* style) const argument
54 Node* node = child->node();
58 // Reject this child if it isn't the first valid node.
64 if (isSVGAElement(*child->node()))
67 return parent()->isChildAllowed(child, style);
69 return RenderSVGContainer::isChildAllowed(child, style);
H A DRenderSVGText.cpp72 bool RenderSVGText::isChildAllowed(RenderObject* child, RenderStyle*) const argument
74 return child->isSVGInline() || (child->isText() && SVGRenderSupport::isRenderableTextNode(child));
134 if (RenderObject* child = toRenderSVGInline(current)->firstChild()) {
135 current = child;
155 void RenderSVGText::subtreeChildWasAdded(RenderObject* child) argument
157 ASSERT(child);
164 // The positioning elements cache doesn't include the new 'child' yet. Clear the
168 if (!child
226 subtreeChildWillBeRemoved(RenderObject* child, Vector<SVGTextLayoutAttributes*, 2>& affectedAttributes) argument
499 addChild(RenderObject* child, RenderObject* beforeChild) argument
507 removeChild(RenderObject* child) argument
[all...]
/external/chromium_org/ui/aura/
H A Dwindow.cc146 // Does a depth first search for all descendants of |child| that have layers.
148 void GetLayersToStack(aura::Window* child, std::vector<ui::Layer*>* layers) { argument
149 if (child->layer()) {
150 layers->push_back(child->layer());
153 for (size_t i = 0; i < child->children().size(); ++i)
154 GetLayersToStack(child->children()[i], layers);
422 // existing child windows.
500 void Window::StackChildAtTop(Window* child) { argument
501 if (children_.size() <= 1 || child == children_.back())
503 StackChildAbove(child, children
506 StackChildAbove(Window* child, Window* target) argument
510 StackChildAtBottom(Window* child) argument
516 StackChildBelow(Window* child, Window* target) argument
520 AddChild(Window* child) argument
561 RemoveChild(Window* child) argument
820 Window* child = *it; local
828 Window* child = children_[0]; local
956 Window* child = children_[i]; local
997 Window* child = *it; local
1023 RemoveChildImpl(Window* child, Window* new_parent) argument
1103 StackChildRelativeTo(Window* child, Window* target, StackDirection direction) argument
1140 StackChildLayerRelativeTo(Window* child, Window* target, StackDirection direction) argument
[all...]
/external/valgrind/main/memcheck/tests/
H A Derr_disable4.c65 pthread_t child[NTHREADS]; local
84 r = pthread_create(&child[i], &attr, child_fn_1, NULL);
95 r = pthread_join(child[i], NULL); assert(!r);
107 r = pthread_create(&child[i], &attr, child_fn_2, NULL);
118 r = pthread_join(child[i], NULL); assert(!r);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.h141 bool hasMarginBeforeQuirk(const RenderBox* child) const;
142 bool hasMarginAfterQuirk(const RenderBox* child) const;
217 LayoutUnit logicalWidthForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->width() : child->height(); }
218 LayoutUnit logicalHeightForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child->height() : child->width(); }
219 LayoutSize logicalSizeForChild(const RenderBox* child) const { return isHorizontalWritingMode() ? child
225 setMarginStartForChild(RenderBox* child, LayoutUnit value) const argument
226 setMarginEndForChild(RenderBox* child, LayoutUnit value) const argument
227 setMarginBeforeForChild(RenderBox* child, LayoutUnit value) const argument
228 setMarginAfterForChild(RenderBox* child, LayoutUnit value) const argument
[all...]
H A DInlineFlowBox.cpp58 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
59 child->setHasBadParent();
94 void InlineFlowBox::addToLine(InlineBox* child) argument
96 ASSERT(!child->parent());
97 ASSERT(!child->nextOnLine());
98 ASSERT(!child->prevOnLine());
101 child
181 removeChild(InlineBox* child, MarkLineBoxes markDirty) argument
206 InlineBox* child = firstChild(); local
271 isLastChildForRenderer(RenderObject* ancestor, RenderObject* child) argument
294 isAnsectorAndWithinBlock(RenderObject* ancestor, RenderObject* child) argument
[all...]
H A DRenderBlockFlow.cpp75 // This flag tracks whether we are still looking at child margins that can all collapse together at the beginning of a block.
144 static bool inNormalFlow(RenderBox* child) argument
146 RenderBlock* curr = child->containingBlock();
147 RenderView* renderView = child->view();
482 for (RenderObject* child = lastChild(); child; child = child->previousSibling()) {
483 if (child->isRenderBlockFlow() && !child
505 determineLogicalLeftPositionForChild(RenderBox* child) argument
532 setLogicalLeftForChild(RenderBox* child, LayoutUnit logicalLeft) argument
541 setLogicalTopForChild(RenderBox* child, LayoutUnit logicalTop) argument
550 layoutBlockChild(RenderBox* child, MarginInfo& marginInfo, LayoutUnit& previousFloatLogicalBottom) argument
692 adjustBlockChildForPagination(LayoutUnit logicalTopAfterClear, LayoutUnit estimateWithoutPagination, RenderBox* child, bool atBeforeSideOfBlock) argument
873 adjustForUnsplittableChild(RenderBox* child, LayoutUnit logicalOffset, bool includeMargins) argument
1045 RenderBox* child = next; local
1168 collapseMargins(RenderBox* child, MarginInfo& marginInfo, bool childIsSelfCollapsing) argument
1332 adjustPositionedBlock(RenderBox* child, const MarginInfo& marginInfo) argument
1356 clearFloatsIfNeeded(RenderBox* child, MarginInfo& marginInfo, LayoutUnit oldTopPosMargin, LayoutUnit oldTopNegMargin, LayoutUnit yPos, bool childIsSelfCollapsing) argument
1437 marginBeforeEstimateForChild(RenderBox* child, LayoutUnit& positiveMarginBefore, LayoutUnit& negativeMarginBefore, bool& discardMarginBefore) const argument
1493 estimateLogicalTopPosition(RenderBox* child, const MarginInfo& marginInfo, LayoutUnit& estimateWithoutPagination) argument
1717 applyBeforeBreak(RenderBox* child, LayoutUnit logicalOffset) argument
1741 applyAfterBreak(RenderBox* child, LayoutUnit logicalOffset, MarginInfo& marginInfo) argument
1863 getClearDelta(RenderBox* child, LayoutUnit logicalTop) argument
1987 updateStaticInlinePositionForChild(RenderBox* child, LayoutUnit logicalTop) argument
1995 setStaticInlinePositionForChild(RenderBox* child, LayoutUnit inlinePosition) argument
2179 flipFloatForWritingModeForChild(const FloatingObject* child, const LayoutPoint& point) const argument
2531 addOverhangingFloats(RenderBlockFlow* child, bool makeChildPaintOtherFloats) argument
[all...]
H A DRenderTable.cpp127 void RenderTable::addChild(RenderObject* child, RenderObject* beforeChild) argument
129 bool wrapInAnonymousSection = !child->isOutOfFlowPositioned();
131 if (child->isTableCaption())
133 else if (child->isRenderTableCol()) {
136 } else if (child->isTableSection()) {
137 switch (child->style()->display()) {
141 m_head = toRenderTableSection(child);
145 m_firstBody = toRenderTableSection(child);
152 m_foot = toRenderTableSection(child);
160 m_firstBody = toRenderTableSection(child);
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_node.py29 # which will be passed as a child to a standard IDLNode.
79 # property dictionary, and nodes into the local child list in order. In
82 for child in children:
83 if child.cls == 'ExtAttribute':
84 self.SetProperty(child.name, child.value)
86 self.AddChild(child)
151 for child in self._children:
152 child.Dump(depth+1, comments=comments, out=out)
161 for child i
[all...]
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc137 bool IsValidChild(const views::View* child) const;
147 // Schedules animation for a child to the specified position. Returns false
148 // if |child| will disappear after the animation.
149 bool AnimateChild(views::View* child, int top, int height);
217 views::View* child = child_at(i); local
218 if (!child->visible())
220 int height = child->GetHeightForWidth(child_area.width());
221 child->SetBounds(child_area.x(), top, child_area.width(), height);
268 DCHECK_LE(0, index); // GetIndexOf is negative if not a child.
283 const views::View* child local
300 const views::View* child = child_at(i); local
355 views::View* child = child_at(i); local
437 views::View* child = child_at(i); local
454 views::View* child = child_at(i); local
464 views::View* child = child_at(i); local
482 views::View* child = child_at(i); local
489 AnimateChild(views::View* child, int top, int height) argument
516 views::View* child = clearing_all_views_.front(); local
783 const views::View* child = child_at(0); local
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp73 /// @param child - The class that may be the subset
75 /// @return - True if child is a subset of parent, false otherwise.
76 static inline bool inheritsFrom(InstructionContext child, argument
79 if (child == parent)
84 return(inheritsFrom(child, IC_64BIT) ||
85 inheritsFrom(child, IC_OPSIZE) ||
86 inheritsFrom(child, IC_ADSIZE) ||
87 inheritsFrom(child, IC_XD) ||
88 inheritsFrom(child, IC_XS));
90 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/external/chromium_org/content/browser/
H A Dsite_per_process_browsertest.cc213 FrameTreeNode* child = root->child_at(0); local
215 NavigateFrameToURL(child, http_url);
227 child->render_manager()->GetRenderFrameProxyHost(
245 SiteInstance* site_instance = child->current_frame_host()->GetSiteInstance();
246 RenderViewHost* rvh = child->current_frame_host()->render_view_host();
247 RenderProcessHost* rph = child->current_frame_host()->GetProcess();
259 proxy_to_parent = child->render_manager()->GetProxyToParent();
278 child = root->child_at(0);
280 child->current_frame_host()->render_view_host());
281 EXPECT_NE(rvh, child
329 FrameTreeNode* child = root->child_at(0); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A DglX_XML.py53 child = element.children
54 while child:
55 if child.type == "element" and child.name == "size":
56 n = child.nsProp( "name", None )
57 c = child.nsProp( "count", None )
58 m = child.nsProp( "mode", None )
73 child = child.next
138 child
[all...]
/external/mesa3d/src/mapi/glapi/gen/
H A DglX_XML.py53 child = element.children
54 while child:
55 if child.type == "element" and child.name == "size":
56 n = child.nsProp( "name", None )
57 c = child.nsProp( "count", None )
58 m = child.nsProp( "mode", None )
73 child = child.next
138 child
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb54 child = self.child_of( tree, i )
55 simulate_tree_construction( child )
56 @debug_listener.add_child( tree, child )
72 def add_child( tree, child )
73 case child
75 node = create_with_payload( child )
78 tree.nil? || child.nil? and return
79 super( tree, child )
80 @debug_listener.add_child( tree, child )
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeTraversal.cpp102 for (Node* child = descendant; child; child = child->lastChild())
103 descendant = child;
119 while (Node* child = previous->lastChild())
120 previous = child;
148 while (Node* child = next->firstChild())
149 next = child;
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc122 const XmlChild* child = element->FirstChild(); local
124 if (child == NULL)
128 while (child) {
129 if (child->IsText()) {
131 PrintCDATAText(child->AsText()->Text());
133 PrintBodyText(child->AsText()->Text());
136 PrintElement(child->AsElement());
138 child = child->NextChild();
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp305 // A document can never be a child. Thanks to Noam.
819 // 2) An element with only a text child is printed as <foo> text </foo>
902 const TiXmlNode* child = this->FirstChild(); local
903 if ( child ) {
904 const TiXmlText* childText = child->ToText();
1636 TiXmlNode* child = node->FirstChild();
1637 if ( child )
1638 return TiXmlHandle( child );
1648 TiXmlNode* child = node->FirstChild( value );
1649 if ( child )
[all...]
/external/chromium_org/third_party/skia/src/views/
H A DSkViewInflate.cpp26 const SkDOM::Node* child = dom.getFirstChild(node); local
27 while (child)
29 SkView* view = this->createView(dom, child);
32 this->rInflate(dom, child, view);
37 const char* name = dom.getName(child);
40 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
43 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
46 child = dom.getNextSibling(child);
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dxmlprinter.cc105 const XmlChild* child = element->FirstChild(); local
107 if (child == NULL)
111 while (child) {
112 if (child->IsText()) {
114 PrintCDATAText(child->AsText()->Text());
116 PrintBodyText(child->AsText()->Text());
119 PrintElement(child->AsElement());
121 child = child->NextChild();

Completed in 976 milliseconds

<<11121314151617181920>>