HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 1 - 25 of 2913) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
test_fork.stdout.exp 0 child
  /external/lldb/test/pexpect-2.4/examples/
ftp.py 12 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.expect('ftp> '
    [all...]
sshls.py 21 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.sendline(password
    [all...]
passmass.py 17 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.sendline (TERMINAL_TYPE
    [all...]
monitor.py 79 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.sendline (TERMINAL_TYPE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRuby.cpp 75 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 = child->previousSibling()
    [all...]
RenderDeprecatedFlexibleBox.cpp 53 RenderBox* child = m_box->firstChildBox(); local
54 while (child) {
55 if (child->style()->boxOrdinalGroup() > m_largestOrdinal)
56 m_largestOrdinal = child->style()->boxOrdinalGroup();
57 child = child->nextSiblingBox();
151 static LayoutUnit marginWidthForChild(RenderBox* child)
156 Length marginLeft = child->style()->marginLeft();
157 Length marginRight = child->style()->marginRight();
166 static bool childDoesNotAffectWidthOrFlexing(RenderObject* child)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTSpan.cpp 37 bool RenderSVGTSpan::isChildAllowed(RenderObject* child, RenderStyle*) const
40 if (child->isText())
41 return SVGRenderSupport::isRenderableTextNode(child);
50 return child->isSVGInline() && !child->isSVGTextPath();
SVGInlineFlowBox.cpp 40 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
41 if (child->isSVGInlineTextBox())
42 toSVGInlineTextBox(child)->paintSelectionBackground(childPaintInfo);
43 else if (child->isSVGInlineFlowBox())
44 toSVGInlineFlowBox(child)->paintSelectionBackground(childPaintInfo);
55 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUnknown.java 58 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 = m_firstChild; child != null
    [all...]
  /external/lldb/test/functionalities/command_regex/
TestCommandRegex.py 21 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.expect_exact(regex_prompt1
    [all...]
  /external/valgrind/main/none/tests/
allexec32.stdout.exp 3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
allexec64.stdout.exp 3 child exited
5 child exited
7 child exited
10 child exited
12 child exited
14 child exited
  /external/chromium_org/ui/aura/
layout_manager.h 18 // 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/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
ImageFilterBuilderTest.cpp 97 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->asColorFilter(0), false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowsCollection.cpp 66 HTMLElement* child = 0; local
68 child = Traversal<HTMLElement>::firstChild(table);
70 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode());
71 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) {
72 if (child->hasLocalName(theadTag)) {
73 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*child))
80 child = Traversal<HTMLElement>::firstChild(table);
82 child = Traversal<HTMLElement>::nextSibling(*previous)
    [all...]
  /external/chromium_org/ui/v2/src/
layout.cc 17 void Layout::SetChildBounds(View* child,
19 SetChildBoundsDirect(child, requested_bounds);
25 void Layout::SetChildBoundsDirect(View* child, const gfx::Rect& bounds) {
26 ViewPrivate(child).set_bounds(bounds);
  /external/lldb/test/functionalities/stop-hook/
TestStopHookMechanism.py 45 # 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.sendline('breakpoint set -f main.cpp -l %d' % self.line
    [all...]
  /external/lldb/test/terminal/
TestSTTYBeforeAndAfter.py 34 # 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.expect(expect_prompt
    [all...]
  /external/libcxxabi/test/
inherited_exception.cpp 38 struct Child : public Base, public Base2 {
43 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
59 Child* child = new Child; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
inherited_exception.cpp 20 struct Child : public Base, public Base2 {
25 Child child; local
26 child.b1 = 10;
27 child.b2 = 11;
28 child.c = 12;
29 throw child;
33 Child child; local
34 child.b1 = 10
41 Child* child = new Child; local
    [all...]
  /external/lldb/test/benchmarks/expression/
TestRepeatedExprs.py 43 # 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.sendline('run'
    [all...]
  /external/lldb/test/functionalities/embedded_interpreter/
TestConvenienceVariables.py 39 # 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.sendline('run'
    [all...]
  /external/chromium_org/ash/wm/
status_area_layout_manager.cc 34 void StatusAreaLayoutManager::OnWindowAddedToLayout(aura::Window* child) {
38 aura::Window* child) {
41 void StatusAreaLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) {
45 aura::Window* child, bool visible) {
49 aura::Window* child,
51 // Only need to have the shelf do a layout if the child changing is the status
53 if (child != shelf_->status_area_widget()->GetNativeView() || in_layout_) {
54 SetChildBoundsDirect(child, requested_bounds);
60 if (requested_bounds == child->GetTargetBounds())
63 SetChildBoundsDirect(child, requested_bounds)
    [all...]
  /external/lldb/test/benchmarks/disassembly/
TestDisassembly.py 73 # 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.sendline('run'
    [all...]

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011>>