Searched refs:child (Results 1 - 25 of 1690) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/s390x/
H A Dtest_fork.stdout.exp0 child
/external/lldb/test/pexpect-2.4/examples/
H A Dftp.py12 child = pexpect.spawn('ftp ftp.openbsd.org') variable
13 child.expect('(?i)name .*: ')
14 child.sendline('anonymous')
15 child.expect('(?i)password')
16 child.sendline('pexpect@sourceforge.net')
17 child.expect('ftp> ')
18 child.sendline('cd /pub/OpenBSD/3.7/packages/i386')
19 child.expect('ftp> ')
20 child.sendline('bin')
21 child
[all...]
H A Dsshls.py21 child = pexpect.spawn('ssh -l %s %s %s'%(user, host, command))
22 i = child.expect([pexpect.TIMEOUT, ssh_newkey, 'password: '])
26 print child.before, child.after
29 child.sendline ('yes')
30 child.expect ('password: ')
31 i = child.expect([pexpect.TIMEOUT, 'password: '])
35 print child.before, child.after
37 child
[all...]
H A Dpassmass.py17 child = pexpect.spawn('ssh -l %s %s'%(user, host))
19 child.setlog (fout)
21 i = child.expect([pexpect.TIMEOUT, SSH_NEWKEY, '[Pp]assword: '])
25 print child.before, child.after
28 child.sendline ('yes')
29 child.expect ('[Pp]assword: ')
30 child.sendline(password)
33 i = child.expect (['Permission denied', TERMINAL_PROMPT, COMMAND_PROMPT])
38 child
[all...]
H A Dmonitor.py79 child = pexpect.spawn('ssh -l %s %s'%(user, host))
80 i = child.expect([pexpect.TIMEOUT, SSH_NEWKEY, COMMAND_PROMPT, '(?i)password'])
83 print child.before, child.after
84 print str(child)
87 child.sendline ('yes')
88 child.expect ('(?i)password')
95 child.sendline(password)
98 i = child.expect ([COMMAND_PROMPT, TERMINAL_PROMPT])
100 child
[all...]
/external/lldb/test/functionalities/stop-hook/
H A DTestStopHookMechanism.py45 # So that the child gets torn down after the test.
46 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
47 child = self.child
48 # Turn on logging for what the child sends back.
50 child.logfile_read = sys.stdout
53 child.expect_exact(prompt)
54 child.sendline('breakpoint set -f main.cpp -l %d' % self.begl)
55 child.expect_exact(prompt)
56 child
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRuby.cpp75 RenderObject* child = ruby->slowFirstChild(); local
76 return isRubyBeforeBlock(child) ? toRenderBlock(child) : 0;
81 RenderObject* child = ruby->slowLastChild(); local
82 return isRubyAfterBlock(child) ? toRenderBlock(child) : 0;
95 RenderObject* child = ruby->slowLastChild(); local
96 if (child && !child->isRubyRun())
97 child
102 findRubyRunParent(RenderObject* child) argument
126 addChild(RenderObject* child, RenderObject* beforeChild) argument
191 removeChild(RenderObject* child) argument
232 addChild(RenderObject* child, RenderObject* beforeChild) argument
297 removeChild(RenderObject* child) argument
[all...]
H A DRenderDeprecatedFlexibleBox.cpp51 RenderBox* child = m_box->firstChildBox(); local
52 while (child) {
53 if (child->style()->boxOrdinalGroup() > m_largestOrdinal)
54 m_largestOrdinal = child->style()->boxOrdinalGroup();
55 child = child->nextSiblingBox();
142 static LayoutUnit marginWidthForChild(RenderBox* child) argument
147 Length marginLeft = child->style()->marginLeft();
148 Length marginRight = child->style()->marginRight();
157 static bool childDoesNotAffectWidthOrFlexing(RenderObject* child) argument
163 contentWidthForChild(RenderBox* child) argument
170 contentHeightForChild(RenderBox* child) argument
985 placeChild(RenderBox* child, const LayoutPoint& location) argument
994 allowedChildFlex(RenderBox* child, bool expanding, unsigned int group) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTSpan.cpp37 bool RenderSVGTSpan::isChildAllowed(RenderObject* child, RenderStyle*) const argument
40 if (child->isText())
41 return SVGRenderSupport::isRenderableTextNode(child);
50 return child->isSVGInline() && !child->isSVGTextPath();
H A DSVGInlineFlowBox.cpp37 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
38 if (child->isSVGInlineTextBox())
39 toSVGInlineTextBox(child)->paintSelectionBackground(childPaintInfo);
40 else if (child->isSVGInlineFlowBox())
41 toSVGInlineFlowBox(child)->paintSelectionBackground(childPaintInfo);
52 for (InlineBox* child = firstChild(); child; chil
[all...]
/external/lldb/test/functionalities/embedded_interpreter/
H A DTestConvenienceVariables.py39 # So that the child gets torn down after the test.
40 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
41 child = self.child
42 # Turn on logging for what the child sends back.
44 child.logfile_read = sys.stdout
48 child.expect_exact(prompt)
49 child.sendline('breakpoint set -f main.c -l %d' % self.line)
50 child.expect_exact(prompt)
51 child
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemUnknown.java58 for (ElemTemplateElement child = m_firstChild; child != null;
59 child = child.m_nextSibling)
61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
65 transformer.pushElemTemplateElement(child);
66 ((ElemFallback) child).executeFallback(transformer);
78 * Return true if this extension element has a <xsl:fallback> child element.
80 * @return true if this extension element has a <xsl:fallback> child element.
84 for (ElemTemplateElement child
[all...]
/external/lldb/test/functionalities/command_regex/
H A DTestCommandRegex.py21 child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
22 # Turn on logging for what the child sends back.
24 child.logfile_read = sys.stdout
26 self.child = child
29 child.expect_exact(prompt)
30 child.sendline("command regex 'Help__'")
31 child.expect_exact(regex_prompt)
32 child.sendline('s/^$/help/')
33 child
[all...]
/external/valgrind/main/none/tests/
H A Dallexec32.stdout.exp3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
H A Dallexec64.stdout.exp3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DImageFilterBuilderTest.cpp97 SkImageFilter* child = filter->getInput(0); // Should be Merge local
98 EXPECT_EQ(child->asColorFilter(0), false);
99 EXPECT_EQ(child->countInputs(), 2);
100 child = child->getInput(1); // Should be CS (D->L)
101 EXPECT_EQ(child->asColorFilter(0), true);
102 EXPECT_EQ(child->countInputs(), 1);
103 child = child->getInput(0); // Should be Blend
104 EXPECT_EQ(child
[all...]
/external/chromium_org/ui/v2/src/
H A Dlayout.cc17 void Layout::SetChildBounds(View* child, argument
19 SetChildBoundsDirect(child, requested_bounds);
25 void Layout::SetChildBoundsDirect(View* child, const gfx::Rect& bounds) { argument
26 ViewPrivate(child).set_bounds(bounds);
/external/chromium_org/ash/
H A Dsnap_to_pixel_layout_manager.cc23 void SnapToPixelLayoutManager::OnWindowAddedToLayout(aura::Window* child) { argument
27 aura::Window* child) {
30 void SnapToPixelLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { argument
34 aura::Window* child,
39 aura::Window* child,
41 SetChildBoundsDirect(child, requested_bounds);
42 wm::SnapWindowToPixelBoundary(child);
26 OnWillRemoveWindowFromLayout( aura::Window* child) argument
33 OnChildWindowVisibilityChanged( aura::Window* child, bool visibile) argument
38 SetChildBounds( aura::Window* child, const gfx::Rect& requested_bounds) argument
/external/lldb/test/terminal/
H A DTestSTTYBeforeAndAfter.py34 # So that the child gets torn down after the test.
35 self.child = pexpect.spawn('expect')
36 child = self.child
38 child.expect(expect_prompt)
39 child.setecho(True)
41 child.logfile = sys.stdout
44 child.sendline('set env(TERM) xterm')
46 child.sendline('set env(TERM) vt100')
47 child
[all...]
/external/libcxxabi/test/
H A Dinherited_exception.cpp43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10;
53 child.b2 = 11;
54 child.c = 12;
55 throw static_cast<Base2&>(child);
59 Child* child = new Child; local
[all...]
/external/lldb/test/benchmarks/expression/
H A DTestRepeatedExprs.py43 # So that the child gets torn down after the test.
44 self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, 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 -f %s -l %d' % (self.source, self.line_to_break))
53 child.expect_exact(prompt)
54 child
[all...]
/external/lldb/test/benchmarks/turnaround/
H A DTestCompileRunToBreakpointTurnaround.py39 # So that the child gets torn down after the test.
40 self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, self.lldbOption, exe))
41 child = self.child
43 # Turn on logging for what the child sends back.
45 child.logfile_read = sys.stdout
47 child.expect_exact(prompt)
48 child.sendline('breakpoint set -F %s' % function)
49 child.expect_exact(prompt)
50 child
[all...]
/external/chromium_org/tools/grit/grit/format/
H A Dchrome_messages_json.py25 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/chromium_org/ui/aura/
H A Dlayout_manager.h18 // An interface implemented by an object that places child windows.
27 // Invoked when the window |child| has been added.
28 virtual void OnWindowAddedToLayout(Window* child) = 0;
31 virtual void OnWillRemoveWindowFromLayout(Window* child) = 0;
34 virtual void OnWindowRemovedFromLayout(Window* child) = 0;
36 // Invoked when the |SetVisible()| is invoked on the window |child|.
40 virtual void OnChildWindowVisibilityChanged(Window* child, bool visible) = 0;
42 // Invoked when |Window::SetBounds| is called on |child|.
44 // |child|'s bounds. LayoutManager may modify |requested_bounds|
46 virtual void SetChildBounds(Window* child,
[all...]
/external/lldb/test/benchmarks/disassembly/
H A DTestDisassembly.py73 # So that the child gets torn down after the test.
74 self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, self.lldbOption, exe))
75 child = self.child
77 # Turn on logging for what the child sends back.
79 child.logfile_read = sys.stdout
81 child.expect_exact(prompt)
82 child.sendline('breakpoint set -F %s' % function)
83 child.expect_exact(prompt)
84 child
[all...]

Completed in 1629 milliseconds

1234567891011>>