OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:file_object
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
urlfetcher.py
41
file_object
= urllib.urlopen(url)
42
content =
file_object
.read()
43
file_object
.close()
51
file_object
, filename = self._filesystem.open_binary_tempfile('-fetched')
53
file_object
.write(contents)
54
file_object
.close()
/external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_runner.py
72
file_object
= open(file_name, 'wb')
103
file_object
.write(legend_txt)
104
file_object
.write('<table border="1">')
105
file_object
.write('<tr><th>Base Directory</th>')
106
file_object
.write('<th>Trend Graph</th>')
107
file_object
.write('<th>#Tests</th>')
108
file_object
.write('<th>#Skipped Tests</th>')
109
file_object
.write('<th>#Non-Skipped Failing Tests</th>')
110
file_object
.write('<th>Failing Rate</th>')
111
file_object
.write('<th>Passing Rate</th>'
[
all
...]
layouttests.py
197
file_object
= file(csv_file_path, 'r')
198
reader = csv.reader(
file_object
)
200
file_object
.close()
layouttest_analyzer_helpers.py
281
file_object
= open(file_path)
282
analyzer_result_map = pickle.load(
file_object
)
283
file_object
.close()
292
file_object
= open(file_path, 'wb')
293
pickle.dump(self,
file_object
)
294
file_object
.close()
/build/tools/
event_log_tags.py
43
def __init__(self, filename,
file_object
=None):
45
messages). If '
file_object
' is None, 'filename' will be opened
55
if
file_object
is None:
57
file_object
= open(filename, "rb")
63
for self.linenum, line in enumerate(
file_object
):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_warnings.py
575
file_object
= StringIO.StringIO()
579
file_object
)
580
self.assertEqual(
file_object
.getvalue(), expect)
585
file_object
= StringIO.StringIO()
587
file_object
, expected_file_line)
588
self.assertEqual(expect,
file_object
.getvalue())
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_warnings.py
575
file_object
= StringIO.StringIO()
579
file_object
)
580
self.assertEqual(
file_object
.getvalue(), expect)
585
file_object
= StringIO.StringIO()
587
file_object
, expected_file_line)
588
self.assertEqual(expect,
file_object
.getvalue())
/external/chromium_org/tools/grit/grit/node/
structure.py
321
with open(filename, 'wb') as
file_object
:
322
output_stream = util.WrapOutputStream(
file_object
,
Completed in 257 milliseconds