Searched refs:child (Results 226 - 250 of 1690) sorted by relevance

1234567891011>>

/external/chromium_org/ash/wm/workspace/
H A Dworkspace_layout_manager.cc76 void WorkspaceLayoutManager::OnWindowAddedToLayout(Window* child) { argument
77 wm::WindowState* window_state = wm::GetWindowState(child);
80 windows_.insert(child);
81 child->AddObserver(this);
86 backdrop_delegate_->OnWindowAddedToLayout(child);
87 WindowPositioner::RearrangeVisibleWindowOnShow(child);
90 void WorkspaceLayoutManager::OnWillRemoveWindowFromLayout(Window* child) { argument
91 windows_.erase(child);
92 child->RemoveObserver(this);
93 wm::GetWindowState(child)
99 OnWindowRemovedFromLayout(Window* child) argument
106 OnChildWindowVisibilityChanged(Window* child, bool visible) argument
123 SetChildBounds( Window* child, const gfx::Rect& requested_bounds) argument
[all...]
/external/chromium_org/ui/views/layout/
H A Dbox_layout.cc61 View* child = host->child_at(i); local
62 if (!child->visible())
65 MainAxisSizeForView(child, child_area.width()) + between_child_spacing_;
67 flex_sum += GetFlexForView(child);
106 View* child = host->child_at(i); local
107 if (!child->visible())
114 int free_space = CrossAxisSize(bounds) - CrossAxisSizeForView(child);
122 SetCrossAxisSize(CrossAxisSizeForView(child), &bounds);
127 if (GetFlexForView(child) > 0) {
128 current_flex += GetFlexForView(child);
160 const View* child = host->child_at(i); local
271 const View* child = host->child_at(i); local
288 const View* child = host->child_at(i); local
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_priority_forest.h24 // node can have at most one parent and at most one child (forming a list), but
50 // or if the parent doesn't exist, or if the parent already has a child.
70 // Get the child of the given node. If the node doesn't exist, or has no
71 // child, returns NodeId().
82 // already has a different child than the node, or (3) if the new parent is a
115 Node() : type(ROOT_NODE), flags(0), child() {
124 NodeId child; // node ID of child (or NodeId() for no child) member in struct:net::SpdyPriorityForest::Node
187 if (parent->child !
217 Node* child = &all_nodes_[node.child]; local
470 Node *child = &all_nodes_[next->child]; local
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dgcm_internals.css15 tr:nth-child(odd) {
31 #device-info tr :first-child {
/external/chromium_org/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc42 InfoBarView* child = static_cast<InfoBarView*>(child_at(i)); local
43 top -= child->arrow_height();
44 int child_height = child->total_height();
45 child->SetBounds(0, top, width(), child_height);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildListMutationScope.h112 void childAdded(Node& child) argument
115 m_accumulator->childAdded(&child);
118 void willRemoveChild(Node& child) argument
121 m_accumulator->willRemoveChild(&child);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRuby.h59 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OVERRIDE;
60 virtual void removeChild(RenderObject* child) OVERRIDE;
77 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0) OVERRIDE;
78 virtual void removeChild(RenderObject* child) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTSpan.h32 virtual bool isChildAllowed(RenderObject* child, RenderStyle*) const OVERRIDE;
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_relocated_shared_relro.cpp38 pid_t child = fork(); local
39 if (child < 0)
42 if (child == 0) {
43 // In the child.
52 printf("RELRO used in child process\n");
82 printf("Relocated RELRO sent to child\n");
86 printf("Parent waiting for child\n");
88 // Wait for child to complete.
90 waitpid(child, &status, 0);
H A Dtest_shared_relro.cpp47 pid_t child = fork(); local
48 if (child < 0)
51 if (child == 0) {
52 // In the child.
58 printf("RELRO used in child process\n");
82 printf("RELRO enabled and sent to child\n");
86 printf("Parent waiting for child\n");
88 // Wait for child to complete.
90 waitpid(child, &status, 0);
/external/chromium_org/third_party/webtreemap/src/
H A Dwebtreemap.js110 var rmin = node.data['$area']; // Smallest seen child so far.
111 var rmax = rmin; // Largest child.
147 y1 += 14; // XXX get first child height for caption spacing
151 for (var start = 0, child; child = tree.children[start]; ++start) {
153 if (child.dom) {
154 child.dom.style.zIndex = 0;
155 position(child.dom, -2, -2, 0, 0);
179 child = tree.children[i];
180 if (!child
[all...]
/external/chromium_org/tools/cr/cr/
H A Dvisitor.py43 for child in node.children:
44 self.VisitNode(child)
202 def OnChanged(self, child):
203 _ = child
211 def _AddChild(self, child):
212 if child and child != self and child not in self._children:
213 self._children.appendleft(child)
214 child
[all...]
/external/chromium_org/ui/aura/client/
H A Dwindow_stacking_client.h22 virtual bool AdjustStacking(Window** child,
/external/junit/src/org/junit/runner/manipulation/
H A DFilter.java31 public void apply(Object child) throws NoTestsRemainException {
82 * @param child the runner to be filtered by the receiver
85 public void apply(Object child) throws NoTestsRemainException { argument
86 if (!(child instanceof Filterable))
88 Filterable filterable= (Filterable) child;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DDotTreeGenerator.cs132 // must have already dumped as child from previous
140 // for each child, do a "<unique-name> [label=text]" node def
143 object child = adaptor.GetChild( tree, i );
144 yield return GetNodeText( adaptor, child );
145 foreach ( var t in DefineNodes( child, adaptor ) )
158 // must have already dumped as child from previous
165 // for each child, do a parent -> child edge using unique node names
169 object child = adaptor.GetChild( tree, i );
170 string childText = adaptor.GetNodeText(child);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
H A DDOTTreeGenerator.cs126 // must have already dumped as child from previous
134 // for each child, do a "<unique-name> [label=text]" node def
136 object child = adaptor.GetChild(tree, i);
137 yield return GetNodeText(adaptor, child);
138 foreach (var t in DefineNodes(child, adaptor))
149 // must have already dumped as child from previous
156 // for each child, do a parent -> child edge using unique node names
159 object child = adaptor.GetChild(tree, i);
160 string childText = adaptor.GetText(child);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DDotTreeGenerator.cs132 // must have already dumped as child from previous
140 // for each child, do a "<unique-name> [label=text]" node def
143 object child = adaptor.GetChild( tree, i );
144 yield return GetNodeText( adaptor, child );
145 foreach ( var t in DefineNodes( child, adaptor ) )
158 // must have already dumped as child from previous
165 // for each child, do a parent -> child edge using unique node names
169 object child = adaptor.GetChild( tree, i );
170 string childText = adaptor.GetText( child );
[all...]
/external/chromium_org/chromecast/service/
H A Dcast_service_simple.cc49 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {
50 child->SetBounds(root_->bounds());
53 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {}
55 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {}
57 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
60 virtual void SetChildBounds(aura::Window* child,
62 SetChildBoundsDirect(child, requested_bounds);
/external/chromium_org/content/shell/browser/
H A Dshell_platform_data_aura.cc39 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {
40 child->SetBounds(root_->bounds());
43 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {
46 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {
49 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
53 virtual void SetChildBounds(aura::Window* child,
55 SetChildBoundsDirect(child, requested_bounds);
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportChild.cpp203 for (HTMLImportChild* child = toHTMLImportChild(firstChild()); child; child = toHTMLImportChild(child->next())) {
204 if (child->formsCycle())
205 child->invalidateCustomElementMicrotaskStep();
206 child->normalize();
/external/markdown/markdown/extensions/
H A Drss.py77 for child in root:
79 if child.tag in ["h1", "h2", "h3", "h4", "h5"]:
81 heading = child.text.strip()
93 elif child.tag in ["p"]:
100 if len(child):
102 for node in child])
104 content = child.text
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DStyleInvalidator.cpp123 for (Element* child = ElementTraversal::firstChild(*root); child; child = ElementTraversal::nextSibling(*child)) {
124 bool childRecalced = invalidate(*child, recursionData);
130 for (Element* child = ElementTraversal::firstChild(element); child; child = ElementTraversal::nextSibling(*child)) {
131 bool childRecalced = invalidate(*child, recursionDat
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DTablePainter.cpp62 for (RenderObject* child = m_renderTable.firstChild(); child; child = child->nextSibling()) {
63 if (child->isBox() && !toRenderBox(child)->hasSelfPaintingLayer() && (child->isTableSection() || child->isTableCaption())) {
64 LayoutPoint childPoint = m_renderTable.flipForWritingModeForChild(toRenderBox(child), paintOffset);
65 child
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsub_task.cc154 for (const buzz::XmlChild* child = pubsub_event->FirstChild();
155 child != NULL;
156 child = child->NextChild()) {
157 const buzz::XmlElement* child_element = child->AsElement();
181 for (const buzz::XmlChild* child = pubsub_iq_response->FirstChild();
182 child != NULL;
183 child = child->NextChild()) {
184 const buzz::XmlElement* child_element = child
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_aggregate_size.c77 Dwarf_Die child;
78 if (INTUSE(dwarf_child) (die, &child) != 0)
86 switch (INTUSE(dwarf_tag) (&child))
90 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_count,
101 (&child, DW_AT_upper_bound,
106 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_lower_bound,
155 /* We have to find the DW_TAG_enumerator child with the
184 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_byte_stride,
190 else if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_bit_stride,
203 while (INTUSE(dwarf_siblingof) (&child,
[all...]

Completed in 5669 milliseconds

1234567891011>>