OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:golden_file
(Results
1 - 5
of
5
) sorted by null
/external/gtest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
run_tests.py
22
golden_file
= os.path.join(tests_path, 'golden.dat')
variable
63
with open(
golden_file
, 'wt') as golden:
66
with open(
golden_file
, 'rt') as golden:
/external/chromium_org/testing/gtest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/chromium_org/ppapi/native_client/
chrome_main.scons
357
# Compares output_file and
golden_file
.
360
def CheckGoldenFile(
golden_file
, output_file,
362
golden = open(
golden_file
).read()
375
# Returns action that compares output_file and
golden_file
.
378
def GoldenFileCheckAction(env, output_file,
golden_file
,
382
return CheckGoldenFile(env.subst(
golden_file
), env.subst(output_file),
503
golden_file
= env.subst(params['golden'])
509
env, stream_file,
golden_file
,
/external/chromium_org/base/android/jni_generator/
jni_generator_tests.py
94
def _ReadGoldenFile(self,
golden_file
):
95
if not os.path.exists(
golden_file
):
97
with file(
golden_file
, 'r') as f:
107
golden_file
= os.path.join(script_dir, caller + '.golden')
108
golden_text = self._ReadGoldenFile(
golden_file
)
111
with file(
golden_file
, 'w') as f:
803
golden_file
= os.path.join(script_dir, 'golden_sample_for_tests_jni.h')
804
golden_content = file(
golden_file
).read()
811
with file(
golden_file
, 'w') as f:
[
all
...]
Completed in 192 milliseconds