Searched refs:child (Results 51 - 75 of 1690) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/tools/
H A Dchrome-process-identifier.sh49 # Iterate over child processes and try to identify them
51 local child cmd foundzygote plugin seccomp type
53 for child in $(ps h --format pid --ppid $1); do
54 cmd="$(xargs -0 </proc/$child/cmdline|sed 's/ -/\n-/g')" 2>/dev/null
58 echo "Process $child is part of the browser"
59 identify "$child"
62 echo "Process $child is an extension"
68 echo "Process $child is a \"$plugin\" plugin"
69 identify "$child"
72 # The seccomp sandbox has exactly one child proces
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.cpp36 bool RenderSVGTextPath::isChildAllowed(RenderObject* child, RenderStyle*) const argument
38 if (child->isText())
39 return SVGRenderSupport::isRenderableTextNode(child);
43 ASSERT(child->node());
44 if (isSVGAltGlyphElement(*child->node()))
48 return child->isSVGInline() && !child->isSVGTextPath();
/external/elfutils/0.153/libdw/
H A Dlibdw_visit_scopes.c106 struct Dwarf_Die_Chain child; local
108 child.parent = root;
109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0)
114 return __libdw_visit_scopes (depth + 1, &child,
120 child.prune = false;
124 int result = (*previsit) (depth + 1, &child, arg);
129 if (!child.prune)
130 switch (classify_die (&child.die))
135 if (INTUSE(dwarf_haschildren) (&child.die))
151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child
[all...]
/external/lldb/test/benchmarks/stepping/
H A DTestSteppingSpeed.py43 # So that the child gets torn down after the test.
44 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
45 child = self.child
47 # Turn on logging for what the child sends back.
49 child.logfile_read = sys.stdout
51 child.expect_exact(prompt)
52 child.sendline('breakpoint set %s' % break_spec)
53 child.expect_exact(prompt)
54 child
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFrame.cpp34 // All child frames must be detached first.
109 void WebFrame::appendChild(WebFrame* child) argument
113 child->m_parent = this;
115 m_lastChild = child;
118 child->m_previousSibling = oldLast;
119 oldLast->m_nextSibling = child;
121 m_firstChild = child;
127 void WebFrame::removeChild(WebFrame* child) argument
129 child->m_parent = 0;
131 if (m_firstChild == child)
233 WebFrame* child = frame ? frame->firstChild() : 0; local
[all...]
/external/lldb/test/benchmarks/disassembly/
H A DTestXcode41Vs42GDBDisassembly.py54 # So that the child gets torn down after the test.
55 self.child = pexpect.spawn('%s --nx %s' % (gdb_exe_path, exe))
56 child = self.child
58 # Turn on logging for what the child sends back.
60 child.logfile_read = sys.stdout
62 child.expect_exact(prompt)
63 child.sendline('break %s' % function)
64 child.expect_exact(prompt)
65 child
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXARIAGrid.cpp54 bool AXARIAGrid::addTableCellChild(AXObject* child, HashSet<AXObject*>& appendedRows, unsigned& columnCount) argument
56 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
59 AXTableRow* row = toAXTableRow(child);
100 for (RefPtr<AXObject> child = firstChild(); child; child = child->nextSibling()) {
102 if (!addTableCellChild(child
[all...]
/external/lldb/test/benchmarks/frame_variable/
H A DTestFrameVariableResponse.py43 # So that the child gets torn down after the test.
44 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
45 child = self.child
47 # Turn on logging for what the child sends back.
49 child.logfile_read = sys.stdout
52 child.sendline('breakpoint set %s' % break_spec)
53 child.expect_exact(prompt)
56 child.sendline('run') # Aka 'process launch'.
57 child
[all...]
/external/lldb/test/benchmarks/startup/
H A DTestStartupDelays.py51 # So that the child gets torn down after the test.
52 self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
53 child = self.child
55 # Turn on logging for what the child sends back.
57 child.logfile_read = sys.stdout
61 child.sendline('file %s' % exe) # Aka 'target create'.
62 child.expect_exact(prompt)
66 child.sendline('breakpoint set %s' % break_spec)
67 child
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DChainedData.java96 Data child = d.getChild(path);
97 if (child != null) {
102 return child;
106 first = child;
111 children.add(child);
114 children.add(child);
131 Data child = getChild(path);
132 if (child != null) {
133 return child;
142 Data child
[all...]
/external/chromium_org/athena/util/
H A Dfill_layout_manager.cc30 void FillLayoutManager::OnWindowAddedToLayout(aura::Window* child) { argument
31 SetChildBoundsDirect(child, (gfx::Rect(container_->bounds().size())));
34 void FillLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) { argument
36 void FillLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { argument
38 void FillLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child, argument
41 void FillLayoutManager::SetChildBounds(aura::Window* child, argument
H A Dfill_layout_manager_unittest.cc17 scoped_ptr<aura::Window> child(new aura::Window(NULL));
18 child->SetBounds(gfx::Rect(0, 0, 5, 10));
20 EXPECT_NE(child->bounds().size().ToString(),
23 parent->AddChild(child.get());
24 EXPECT_EQ(child->bounds().size().ToString(),
28 EXPECT_EQ(child->bounds().size().ToString(),
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNode.h97 void appendChild(NodeType* child) argument
99 ASSERT(!child->parent());
100 ASSERT(!child->next());
101 ASSERT(!child->previous());
103 child->m_parent = here();
107 m_lastChild = m_firstChild = child;
113 m_lastChild = child;
115 child->m_previous = oldLast;
116 oldLast->m_next = child;
119 NodeType* removeChild(NodeType* child) argument
144 NodeType* child = oldParent->firstChild(); local
[all...]
/external/qemu/qom/
H A Dcontainer.c30 Object *obj, *child; local
38 for (i = 1; parts[i] != NULL; i++, obj = child) {
39 child = object_resolve_path_component(obj, parts[i]);
40 if (!child) {
41 child = object_new("container");
42 object_property_add_child(obj, parts[i], child, NULL);
/external/chromium_org/chrome/browser/resources/
H A Dabout_memory_linux.css9 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1),
10 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4),
11 table.list#browserComparison tr.firstRow th:nth-child(1) {
15 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2),
16 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(5),
17 table.list#memoryDetails tr.firstRow th:nth-child(2) {
/external/chromium_org/sandbox/win/src/
H A Dpolicy_broker.h19 bool SetupNtdllImports(TargetProcess *child);
/external/chromium_org/ui/events/
H A Devent_targeter.cc33 for (EventTarget* child = iter->GetNextTarget(); child;
34 child = iter->GetNextTarget()) {
35 EventTargeter* targeter = child->GetEventTargeter();
38 if (!targeter->SubtreeShouldBeExploredForEvent(child, *event))
40 target->ConvertEventToTarget(child, event);
41 target = child;
43 targeter->FindTargetForLocatedEvent(child, event) :
44 FindTargetForLocatedEvent(child, event);
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
H A DfooSynthProvider.py10 child = self.valobj.GetChildMemberWithName('a');
12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
14 child = self.valobj.GetChildMemberWithName('r');
15 return child;
/external/lldb/test/functionalities/data-formatter/rdar-10887661/
H A DfooSynthProvider.py10 child = self.valobj.GetChildMemberWithName('a');
12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
14 child = self.valobj.GetChildMemberWithName('r');
15 return child;
/external/lldb/test/functionalities/recursion/
H A DTestValueObjectRecursion.py57 child = root.GetChildAtIndex(1)
60 print child
62 child = child.GetChildAtIndex(1)
64 print child
65 self.assertTrue(child.IsValid(),"could not retrieve the deep ValueObject")
66 self.assertTrue(child.GetChildAtIndex(0).IsValid(),"the deep ValueObject has no value")
67 self.assertTrue(child.GetChildAtIndex(0).GetValueAsUnsigned() != 0,"the deep ValueObject has a zero value")
68 self.assertTrue(child.GetChildAtIndex(1).GetValueAsUnsigned() != 0, "the deep ValueObject has no next")
/external/lldb/test/python_api/formatters/
H A Djas_synth.py8 child = None
10 child = self.valobj.GetChildMemberWithName('A');
12 child = self.valobj.CreateValueFromExpression('X', '(int)1')
13 return child;
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_test_utils.py64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child
[all...]
/external/gtest/test/
H A Dgtest_xml_test_utils.py64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child
[all...]
/external/protobuf/gtest/test/
H A Dgtest_xml_test_utils.py63 * It has an equivalent set of child nodes (including elements and
98 "number of child elements differ in element " + actual_node.tagName)
99 for child_id, child in expected_children.iteritems():
103 self.AssertEquivalentNodes(child, actual_children[child_id])
114 Fetches all of the child nodes of element, a DOM Element object.
121 four is encountered, if two child elements with the same identifying
126 for child in element.childNodes:
127 if child.nodeType == Node.ELEMENT_NODE:
128 self.assert_(child.tagName in self.identifying_attribute,
129 "Encountered unknown element <%s>" % child
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dmerger.cc65 // the smallest child and key() == current_->key(). Otherwise,
69 IteratorWrapper* child = &children_[i]; local
70 if (child != current_) {
71 child->Seek(key());
72 if (child->Valid() &&
73 comparator_->Compare(key(), child->key()) == 0) {
74 child->Next();
91 // the largest child and key() == current_->key(). Otherwise,
95 IteratorWrapper* child = &children_[i]; local
96 if (child !
158 IteratorWrapper* child = &children_[i]; local
173 IteratorWrapper* child = &children_[i]; local
[all...]

Completed in 1237 milliseconds

1234567891011>>