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

1 2

  /external/clang/bindings/python/tests/cindex/
test_file.py 3 def test_file(): function
  /external/lldb/test/arm_emulation/
TestEmulations.py 24 test_file = os.path.join (test_dir, f)
25 self.run_a_single_test (test_file)
38 test_file = os.path.join (test_dir, f)
39 self.run_a_single_test (test_file)
  /external/compiler-rt/test/tsan/
test_output.sh 18 test_file() { function
59 test_file $c $COMPILER &
65 test_file $HERE/$1 $CXX "DUMP"
  /development/testrunner/test_defs/
gtest.py 89 for test_file in test_file_list:
90 logger.SilentLog('Creating gtest suite for file %s' % test_file)
93 # expect tests in /data/nativetest/test_file/test_file
94 suite.SetTargetExecPath(os.path.join(target_root_path, test_file, test_file))
  /external/vboot_reference/tests/
gen_test_cases.sh 12 TEST_FILE=${TESTCASE_DIR}/test_file
24 openssl dgst -${hashalgo} -binary ${TEST_FILE} > \
25 ${TEST_FILE}.${hashalgo}.digest
27 ${TEST_FILE} | openssl rsautl \
29 > ${TEST_FILE}.rsa${keylen}_${hashalgo}.sig
38 dd if=/dev/urandom of=${TEST_FILE} bs=${TEST_FILE_SIZE} count=1
run_rsa_tests.sh 15 TEST_FILE=${TESTCASE_DIR}/test_file
26 ${TEST_FILE}.rsa${keylen}_${hashalgo}.sig \
27 ${TEST_FILE}
vb2_rsa_tests.sh 15 TEST_FILE=${TESTCASE_DIR}/test_file
26 ${TEST_FILE}.rsa${keylen}_${hashalgo}.sig \
27 ${TEST_FILE}
  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
full_test.py 107 for test_file in test_files:
108 resource_path = os.path.join(_RESOURCE_PREFIX, test_file)
not_strict_test.py 66 for test_file in test_files:
67 resource_path = os.path.join(_RESOURCE_PREFIX, test_file)
  /external/google-breakpad/src/common/linux/
memory_mapped_file_unittest.cc 86 string test_file = temp_dir.path() + "/empty_file"; local
87 ASSERT_TRUE(WriteFile(test_file.c_str(), NULL, 0));
90 MemoryMappedFile mapped_file(test_file.c_str(), 0);
95 EXPECT_TRUE(mapped_file.Map(test_file.c_str(), 0));
108 string test_file = temp_dir.path() + "/test_file"; local
109 ASSERT_TRUE(WriteFile(test_file.c_str(), data, data_size));
112 MemoryMappedFile mapped_file(test_file.c_str(), 0);
120 EXPECT_TRUE(mapped_file.Map(test_file.c_str(), 0));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 185 def check_file_refactoring(self, test_file, fixers=_2TO3_FIXERS,
191 shutil.copy(test_file, tmpdir)
192 test_file = os.path.join(tmpdir, os.path.basename(test_file))
193 os.chmod(test_file, 0o644)
196 with open(test_file, "rb") as fp:
204 rt.refactor_file(test_file)
209 rt.refactor_file(test_file, True)
215 test_file = os.path.join(FIXER_DIR, "parrot_example.py")
216 self.check_file_refactoring(test_file, _DEFAULT_FIXERS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 185 def check_file_refactoring(self, test_file, fixers=_2TO3_FIXERS,
191 shutil.copy(test_file, tmpdir)
192 test_file = os.path.join(tmpdir, os.path.basename(test_file))
193 os.chmod(test_file, 0o644)
196 with open(test_file, "rb") as fp:
204 rt.refactor_file(test_file)
209 rt.refactor_file(test_file, True)
215 test_file = os.path.join(FIXER_DIR, "parrot_example.py")
216 self.check_file_refactoring(test_file, _DEFAULT_FIXERS
    [all...]
  /external/lldb/include/lldb/API/
SBInstruction.h 76 TestEmulation (lldb::SBStream &output_stream, const char *test_file);
  /build/tools/releasetools/
test_common.py 76 test_file = tempfile.NamedTemporaryFile(delete=False)
77 test_file_name = test_file.name
91 test_file.write(contents)
92 test_file.close()
146 test_file = tempfile.NamedTemporaryFile(delete=False)
147 test_file_name = test_file.name
160 test_file.write(large)
161 test_file.close()
  /system/extras/tests/fstest/
recovery_test.cpp 254 const char* test_file = "/cache/FsRecoveryTestGarbage.txt"; local
255 DataFileVerifier file_verify(test_file);
285 const char* test_file = "/cache/CorruptGdtGarbage.txt"; local
286 DataFileVerifier file_verify(test_file);
303 const char* test_file = "/cache/ErrorBitGarbagetxt"; local
304 DataFileVerifier file_verify(test_file);
  /external/linux-tools-perf/src/tools/perf/tests/
dso-data.c 13 static char *test_file(int size) function
99 char *file = test_file(TEST_FILE_SIZE);
  /external/skia/tests/
DocumentTest.cpp 60 static void test_file(skiatest::Reporter* reporter) { function
103 test_file(reporter);
  /external/lldb/scripts/Python/interface/
SBInstruction.i 67 TestEmulation (lldb::SBStream &output_stream, const char *test_file);
  /external/lldb/source/API/
SBInstruction.cpp 234 SBInstruction::TestEmulation (lldb::SBStream &output_stream, const char *test_file)
239 return m_opaque_sp->TestEmulation (output_stream.get(), test_file);
  /external/lldb/source/Core/
Disassembler.cpp 855 FILE *test_file = fopen (file_name, "r"); local
856 if (!test_file)
863 if (!fgets (buffer, 255, test_file))
866 fclose (test_file);
873 fclose (test_file);
879 OptionValueSP data_dictionary_sp (ReadDictionary (test_file, out_stream));
883 fclose (test_file);
887 fclose (test_file);
    [all...]
  /external/mesa3d/src/glsl/tests/lower_jumps/
create_test_cases.py 292 test_file = '{0}.opt_test'.format(test_name)
293 with open(test_file, 'w') as f:
298 os.chmod(test_file, 0774)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmath.py 2 from test.test_math import parse_testfile, test_file namespace
59 self.test_values = open(test_file)
297 for id, fn, ar, ai, er, ei, flags in parse_testfile(test_file):
test_urllib2net.py 115 def test_file(self): member in class:OtherNetworkTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmath.py 2 from test.test_math import parse_testfile, test_file namespace
59 self.test_values = open(test_file)
297 for id, fn, ar, ai, er, ei, flags in parse_testfile(test_file):
test_urllib2net.py 115 def test_file(self): member in class:OtherNetworkTests

Completed in 481 milliseconds

1 2