HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 51 - 75 of 1727) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGrid.cpp 54 bool AXARIAGrid::addTableCellChild(AXObject* child, HashSet<AXObject*>& appendedRows, unsigned& columnCount)
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.get(), appendedRows, columnCount))
    [all...]
  /external/lldb/test/benchmarks/frame_variable/
TestFrameVariableResponse.py 43 # 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.expect_exact(prompt
    [all...]
  /external/lldb/test/benchmarks/startup/
TestStartupDelays.py 51 # 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.expect_exact(prompt
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
ChainedData.java 96 Data child = d.getChild(path); local
97 if (child != null) {
102 return child;
106 first = child;
111 children.add(child);
114 children.add(child);
131 Data child = getChild(path); local
132 if (child != null) {
133 return child;
142 Data child = getChild(path) local
152 Data child = getChild(path); local
167 Data child = getChild(path); local
177 Data child = getChild(path); local
187 Data child = getChild(path); local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskBatch.cpp 38 bool TaskBatch::addChild(TaskGeneric* child)
40 if (child->getType() != TaskGeneric::ETaskCase) {
41 LOGE("TaskBatch::addChild wrong child type %d", child->getType());
44 return TaskGeneric::addChild(child);
47 bool runAlways(TaskGeneric* child, void* data)
49 child->run();
  /external/chromium_org/athena/util/
fill_layout_manager.cc 30 void FillLayoutManager::OnWindowAddedToLayout(aura::Window* child) {
31 SetChildBoundsDirect(child, (gfx::Rect(container_->bounds().size())));
34 void FillLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) {
36 void FillLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) {
38 void FillLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child,
41 void FillLayoutManager::SetChildBounds(aura::Window* child,
fill_layout_manager_unittest.cc 17 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/
TreeNode.h 97 void appendChild(NodeType* child)
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)
144 NodeType* child = oldParent->firstChild(); local
    [all...]
  /external/chromium_org/tools/grit/grit/format/
chrome_messages_json.py 25 for child in root.ActiveDescendants():
26 if isinstance(child, message.MessageNode):
27 id = child.attrs['name']
31 loc_message = encoder.encode(child.ws_at_start + child.Translate(lang) +
32 child.ws_at_end)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TreeExtensions.cs 45 public static void setFirstChild( this ITree tree, ITree child )
48 tree.AddChild( child );
50 tree.SetChild( 0, child );
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager_delegate.h 27 virtual void OnWindowAddedToLayout(aura::Window* child) = 0;
30 virtual void OnWindowRemovedFromLayout(aura::Window* child) = 0;
33 virtual void OnChildWindowVisibilityChanged(aura::Window* child,
  /external/chromium_org/chrome/browser/resources/
about_memory_linux.css 9 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/lldb/test/pexpect-2.4/examples/
df.py 12 child = pexpect.spawn ('df') variable
18 i = child.expect ([pattern, pexpect.EOF])
20 filesystem_list.append (child.match.groups())
ssh_session.py 45 child = spawn(command,
50 seen = child.expect(self.keys)
51 self.f.write(str(child.before) + str(child.after)+'\n')
53 child.sendline('yes')
54 seen = child.expect(self.keys)
58 child.sendline(self.password)
59 child.readline()
62 if not child.isalive():
63 seen = child.expect(self.keys
    [all...]
chess3.py 17 self.child = pexpect.spawn (engine)
20 # self.child.expect ('Chess')
21 # if self.child.after != 'Chess':
29 k = self.child.read(1, 10)
42 c = self.child.read(1,10)
51 self.child.sendline (move)
56 i = self.child.expect (['\[17;59H', '\[17;58H'])
59 self.child.expect (REGEX_MOVE)
60 if len(self.child.after) < 4:
61 self.child.after = self.child.after + self.last_computer_move[3
    [all...]
  /cts/suite/audio_quality/lib/include/task/
TaskBatch.h 28 virtual bool addChild(TaskGeneric* child);
  /external/chromium_org/ui/events/
event_targeter.cc 33 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/
fooSynthProvider.py 10 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/
fooSynthProvider.py 10 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/python_api/formatters/
jas_synth.py 8 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/
gtest_xml_test_utils.py 64 * 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.tagName
    [all...]
  /external/gtest/test/
gtest_xml_test_utils.py 64 * 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.tagName
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
merger.cc 65 // 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 != current_)
158 IteratorWrapper* child = &children_[i]; local
173 IteratorWrapper* child = &children_[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PseudoElement.cpp 118 RenderObject* child = content->createRenderer(document(), style); local
119 if (renderer->isChildAllowed(child, style)) {
120 renderer->addChild(child);
121 if (child->isQuote())
122 toRenderQuote(child)->attachQuote();
124 child->destroy();
141 for (RenderObject* child = renderer->nextInPreOrder(renderer); child; child = child->nextInPreOrder(renderer))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 44 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
45 if (child->isSVGInlineTextBox())
46 toSVGInlineTextBox(child)->paintSelectionBackground(childPaintInfo);
47 else if (child->isSVGInlineFlowBox())
48 toSVGInlineFlowBox(child)->paintSelectionBackground(childPaintInfo);
55 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()
    [all...]

Completed in 1428 milliseconds

1 23 4 5 6 7 8 91011>>