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

1 2 3

  /external/autotest/client/site_tests/security_Minijail0/src/
mountns-enter-child.py 9 test_file = sys.argv[1] variable
11 # We entered a mount namespace where |test_file| should not be accessible.
12 if os.access(test_file, os.F_OK):
mountns-enter.py 16 test_file = os.path.join(tmpdir, "test") variable
17 with open(test_file, "w") as t:
22 sys.executable, child_path, test_file])
  /external/clang/bindings/python/tests/cindex/
test_file.py 3 def test_file(): function
  /external/libxkbcommon/xkbcommon/test/
filecomp.c 27 test_file(struct xkb_context *ctx, const char *path_rel) function
43 assert(test_file(ctx, "keymaps/basic.xkb"));
44 assert(test_file(ctx, "keymaps/comprehensive-plus-geom.xkb"));
45 assert(test_file(ctx, "keymaps/no-types.xkb"));
46 assert(test_file(ctx, "keymaps/quartz.xkb"));
47 assert(test_file(ctx, "keymaps/no-aliases.xkb"));
49 assert(!test_file(ctx, "keymaps/divide-by-zero.xkb"));
50 assert(!test_file(ctx, "keymaps/bad.xkb"));
51 assert(!test_file(ctx, "keymaps/syntax-error.xkb"));
52 assert(!test_file(ctx, "keymaps/syntax-error2.xkb"))
    [all...]
  /external/capstone/suite/
test_mc.py 67 def test_file(fname): function
257 test_file(fname.strip())
260 test_file(sys.argv[1])
  /external/perf_data_converter/src/quipper/
conversion_utils_test.cc 23 const string test_file = GetParam(); local
27 input.filename = GetTestInputFilePath(test_file);
29 output.filename = output_path + test_file + ".pb_text";
33 string golden_file = GetTestInputFilePath(string(test_file) + ".pb_text");
  /external/adhd/cras/src/dsp/tests/
eq2_test.c 37 static void test_file(const char *input_filename, const char *output_filename) function
86 test_file(argv[1], argv[2]);
eq_test.c 71 static void test_file(const char *input_filename, const char *output_filename) function
131 test_file(argv[1], argv[2]);
  /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));
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
radeon_compiler_optimize_tests.c 39 struct rc_test_file test_file; local
43 if (!load_program(c, &test_file, filename)) {
radeon_compiler_regalloc_tests.c 50 struct rc_test_file test_file; local
58 if (!load_program(c, &test_file, filename)) {
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser_unittest.cpp 55 std::string test_file; local
57 &test_file));
58 ASSERT_TRUE(parser.InitTestFromFile(test_file.c_str())) << test_file;
71 std::string test_file; local
73 "parser_rebuildxref_error_notrailer.pdf", &test_file));
74 ASSERT_TRUE(parser.InitTestFromFile(test_file.c_str())) << test_file;
  /external/vulkan-validation-layers/scripts/
vk_validation_stats.py 73 test_file = '../tests/layer_validation_tests.cpp' variable
258 for test_file in self.test_files:
259 with open(test_file) as tf:
324 test_parser = TestParser([test_file, ])
  /external/webrtc/talk/media/devices/
filevideocapturer_unittest.cc 194 const std::string test_file = local
197 cricket::FileVideoCapturer::CreateFileVideoCapturerDevice(test_file);
devicemanager_unittest.cc 209 const std::string test_file = local
211 EXPECT_TRUE(dm->GetVideoCaptureDevice(test_file, &device));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_urllib2net.py 115 def test_file(self): member in class:OtherNetworkTests
test_repr.py 130 def test_file(self): member in class:ReprTests
  /external/python/cpython3/Lib/test/
test_urllib2net.py 106 def test_file(self): member in class:OtherNetworkTests
  /external/skia/tests/
PDFDocumentTest.cpp 75 static void test_file(skiatest::Reporter* reporter) { function
124 test_file(reporter);
  /external/skqp/tests/
PDFDocumentTest.cpp 75 static void test_file(skiatest::Reporter* reporter) { function
124 test_file(reporter);
  /external/linux-kselftest/tools/testing/selftests/powerpc/mm/
subpage_prot.c 173 int test_file(void) function
221 return test_harness(test_file, "subpage_prot_file");
  /external/ltp/testcases/kernel/syscalls/symlink/
symlink03.c 153 char *test_file; /* testfile name */ local
171 test_file = Test_cases[ind].file;
184 TEST(symlink(test_file, sym_file));
  /external/python/cpython2/Lib/test/
test_repr.py 130 def test_file(self): member in class:ReprTests
test_urllib2net.py 111 def test_file(self): member in class:OtherNetworkTests
  /external/webrtc/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 156 FILE* test_file; local
157 test_file = fopen(FLAGS_input_filename.c_str(), "rb");
158 if (test_file == NULL) {
163 fclose(test_file);
196 test_file = fopen(config->output_filename.c_str(), "wb");
197 if (test_file == NULL) {
202 fclose(test_file);

Completed in 624 milliseconds

1 2 3