Home
last modified time | relevance | path

Searched refs:base_path (Results 1 – 25 of 46) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestfilesystem.c20 char *base_path; in main() local
31 base_path = SDL_GetBasePath(); in main()
32 if(base_path == NULL){ in main()
37 SDL_Log("base path: '%s'\n", base_path); in main()
38 SDL_free(base_path); in main()
/third_party/cef/tests/ceftests/
Dscoped_temp_dir_unittest.cc63 CefString base_path; in TEST() local
64 ASSERT_TRUE(CefCreateNewTempDirectory("base_dir", base_path)); in TEST()
69 EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path)); in TEST()
72 EXPECT_TRUE(test_path.ToString().find(base_path.ToString()) == 0); in TEST()
75 CefDeleteFile(base_path, true); in TEST()
Dcors_unittest.cc777 const std::string& base_path = "/" + test_name; in SetupIframeRequest() local
780 iframe_resource->Init(iframe_handler, base_path + ".iframe.html", in SetupIframeRequest()
785 main_resource->Init(main_handler, base_path, kMimeTypeHtml, in SetupIframeRequest()
1121 const std::string& base_path = "/" + test_name; in SetupExecRequest() local
1124 const std::string& sub_path = base_path + ".sub.txt"; in SetupExecRequest()
1130 main_resource->Init(main_handler, base_path, kMimeTypeHtml, in SetupExecRequest()
1497 const std::string& base_path = "/" + test_name; in SetupRedirectGetRequest() local
1500 redirect_resource->Init(redirect_handler, base_path + ".redirect.html", in SetupRedirectGetRequest()
1506 main_resource->Init(main_handler, base_path, kMimeTypeHtml, std::string()); in SetupRedirectGetRequest()
1677 const std::string& base_path = "/" + test_name; in SetupRedirectPostRequest() local
[all …]
/third_party/python/Lib/lib2to3/fixes/
Dfix_import.py90 base_path = dirname(self.filename)
91 base_path = join(base_path, imp_name)
94 if not exists(join(dirname(base_path), "__init__.py")):
97 if exists(base_path + ext):
/third_party/boost/boost/function_types/detail/
Dpp_arity_loop.hpp35 # define BOOST_FT_AL_FILE(base_path,max_arity,mfp) \ argument
36 BOOST_FT_AL_FILE_I(base_path,max_arity,mfp)
37 # define BOOST_FT_AL_FILE_I(base_path,max_arity,mfp) \ argument
38 <base_path/arity ## max_arity ## _ ## mfp.hpp>
/third_party/jsoncpp/test/
Dpyjsontestrunner.py20 base_path = os.path.splitext(input_path)[0] variable
21 actual_path = base_path + '.actual'
22 rewrite_path = base_path + '.rewrite'
23 rewrite_actual_path = base_path + '.actual-rewrite'
Drunjsontests.py122 base_path = os.path.splitext(input_path)[0]
123 actual_output = safeReadFile(base_path + '.actual')
124 actual_rewrite_output = safeReadFile(base_path + '.actual-rewrite')
125 open(base_path + '.process-output', 'wt', encoding = 'utf-8').write(process_output)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Danalyzer.py139 def _AddSources(sources, base_path, base_path_components, result): argument
158 result.append(base_path + source)
163 def _ExtractSourcesFromAction(action, base_path, base_path_components, argument
166 _AddSources(action['inputs'], base_path, base_path_components, results)
182 base_path = posixpath.dirname(_ToLocalPath(toplevel_dir, _ToGypPath(target)))
183 base_path_components = base_path.split('/')
186 if len(base_path):
187 base_path += '/'
190 print('ExtractSources', target, base_path)
194 _AddSources(target_dict['sources'], base_path, base_path_components,
[all …]
Dandroid.py112 def Write(self, qualified_target, relative_target, base_path, output_filename, argument
136 self.path = base_path
981 base_path = gyp.common.RelativePath(os.path.dirname(build_file),
984 output_file = os.path.join(options.depth, base_path, base_name)
987 base_path = gyp.common.RelativePath(os.path.dirname(build_file),
989 return base_path, output_file
1051 base_path, output_file = CalculateMakefilePath(build_file,
1064 android_module = writer.Write(qualified_target, relative_target, base_path,
Dcmake.py95 def NormjoinPathForceCMakeSource(base_path, rel_path): argument
109 os.path.normpath(os.path.join(base_path, rel_path)))
112 def NormjoinPath(base_path, rel_path): argument
120 return os.path.normpath(os.path.join(base_path, rel_path))
327 def NormjoinRulePathForceCMakeSource(base_path, rel_path, rule_source): argument
331 return NormjoinPathForceCMakeSource(base_path, rel_path)
838 base_path = gyp.common.RelativePath(os.path.dirname(gyp_file),
842 os.path.join(target_output_directory, base_path))
/third_party/node/tools/gyp/pylib/gyp/generator/
Danalyzer.py152 def _AddSources(sources, base_path, base_path_components, result): argument
171 result.append(base_path + source)
176 def _ExtractSourcesFromAction(action, base_path, base_path_components, results): argument
178 _AddSources(action["inputs"], base_path, base_path_components, results)
194 base_path = posixpath.dirname(_ToLocalPath(toplevel_dir, _ToGypPath(target)))
195 base_path_components = base_path.split("/")
198 if len(base_path):
199 base_path += "/"
202 print("ExtractSources", target, base_path)
206 _AddSources(target_dict["sources"], base_path, base_path_components, results)
[all …]
Dandroid.py116 base_path, argument
146 self.path = base_path
1048 base_path = gyp.common.RelativePath(os.path.dirname(build_file), options.depth)
1050 output_file = os.path.join(options.depth, base_path, base_name)
1054 base_path = gyp.common.RelativePath(
1057 return base_path, output_file
1118 base_path, output_file = CalculateMakefilePath(
1136 base_path,
Dcmake.py102 def NormjoinPathForceCMakeSource(base_path, rel_path): argument
116 "${CMAKE_CURRENT_LIST_DIR}", os.path.normpath(os.path.join(base_path, rel_path))
120 def NormjoinPath(base_path, rel_path): argument
128 return os.path.normpath(os.path.join(base_path, rel_path))
335 def NormjoinRulePathForceCMakeSource(base_path, rel_path, rule_source): argument
339 return NormjoinPathForceCMakeSource(base_path, rel_path)
888 base_path = gyp.common.RelativePath(
893 target_output_directory, base_path
Dmake.py736 self, qualified_target, base_path, output_filename, spec, configs, part_of_all argument
755 self.path = base_path
2240 base_path = gyp.common.RelativePath(os.path.dirname(build_file), options.depth)
2242 output_file = os.path.join(options.depth, base_path, base_name)
2245 options.depth, options.generator_output, base_path, base_name
2247 base_path = gyp.common.RelativePath(
2250 return base_path, output_file
2440 base_path, output_file = CalculateMakefilePath(
2453 base_path,
2483 base_path, output_file = CalculateMakefilePath(
/third_party/cef/libcef_dll/wrapper/
Dcef_scoped_temp_dir.cc30 const CefString& base_path) { in CreateUniqueTempDirUnderPath() argument
35 if (!CefCreateDirectory(base_path)) in CreateUniqueTempDirUnderPath()
39 if (!CefCreateTempDirectoryInDirectory(base_path, "scoped_dir_", path_)) in CreateUniqueTempDirUnderPath()
/third_party/gn/src/base/files/
Dscoped_temp_dir.cc38 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) { in CreateUniqueTempDirUnderPath() argument
43 if (!base::CreateDirectory(base_path)) in CreateUniqueTempDirUnderPath()
47 if (!base::CreateTemporaryDirInDir(base_path, kScopedDirPrefix, &path_)) in CreateUniqueTempDirUnderPath()
/third_party/python/Lib/test/
Dtest_modulefinder.py383 base_path = os.path.join(TEST_DIR, 'a')
384 source_path = base_path + importlib.machinery.SOURCE_SUFFIXES[0]
385 bytecode_path = base_path + importlib.machinery.BYTECODE_SUFFIXES[0]
/third_party/python/Lib/test/support/
Dos_helper.py463 base_path = base.name
464 case_path = base_path.upper()
465 if case_path == base_path:
466 case_path = base_path.lower()
468 return os.path.samefile(base_path, case_path)
/third_party/grpc/src/php/lib/Grpc/
DRpcServer.php101 $base_path = "/" . $prefix . $service_name;
108 $full_path = $base_path . "/" . ucfirst($method_name);
/third_party/mindspore/tests/st/model_zoo_tests/DeepFM/
Dprocess_data.py211 base_path = args.base_path variable
212 data_path = base_path + ""
220 stats_output_path = base_path + "stats_dict/"
/third_party/skia/third_party/externals/tint/tools/
Drun_tests.py171 base_path = os.path.abspath(
177 default=os.path.join(base_path, 'out', 'Debug'),
187 default=os.path.join(base_path, 'tools', 'known_tint_failures'),
/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dperf_test_runner.py19 base_path = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')) variable
82 binary_path = os.path.join(base_path, path, binary_name)
/third_party/skia/third_party/externals/dawn/scripts/
Dperf_test_runner.py25 base_path = os.path.abspath( variable
88 binary_path = os.path.join(base_path, path, binary_name)
/third_party/skia/third_party/externals/angle2/scripts/
Dperf_test_runner.py21 base_path = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')) variable
116 binary_path = os.path.join(base_path, path, args.suite)
/third_party/nghttp2/src/
Dhttp2.cc1362 std::string path_join(const StringRef &base_path, const StringRef &base_query, in path_join() argument
1366 return path_join(balloc, base_path, base_query, rel_path, rel_query).str(); in path_join()
1712 StringRef path_join(BlockAllocator &balloc, const StringRef &base_path, in path_join() argument
1716 balloc, std::max(static_cast<size_t>(1), base_path.size()) + in path_join()
1722 if (base_path.empty()) { in path_join()
1725 p = std::copy(std::begin(base_path), std::end(base_path), p); in path_join()
1749 } else if (base_path.empty()) { in path_join()
1752 p = std::copy(std::begin(base_path), std::end(base_path), p); in path_join()

12