OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Tee
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
outputtee_unittest.py
32
from webkitpy.common.system.outputtee import
Tee
, OutputTee
38
tee
=
Tee
(file1, file2)
39
tee
.write("foo bar\n")
40
tee
.write("baz\n")
outputtee.py
36
class
Tee
:
75
sys.stdout =
Tee
(self._original_stdout, *files)
76
sys.stderr =
Tee
(self._original_stderr, *files)
executive.py
40
from webkitpy.common.system.outputtee import
Tee
105
# Use our own custom wait loop because Popen ignores a
tee
'd
130
child_stdout =
Tee
(child_out_file, tee_stdout)
Completed in 42 milliseconds