Home
last modified time | relevance | path

Searched refs:locate_file (Results 1 – 8 of 8) sorted by relevance

/external/autotest/client/site_tests/graphics_Idle/
Dgraphics_Idle.py281 governor_path = utils.locate_file('governor', node)
282 clock_path = utils.locate_file('cur_freq', node)
290 clock_path = utils.locate_file('clock', node)
291 enable_path = utils.locate_file(enable_node, node)
298 freqs_path = utils.locate_file('available_frequencies', node)
/external/python/cpython3/Lib/test/test_importlib/
Dtest_zip.py58 path = str(file.dist.locate_file(file))
77 path = str(file.dist.locate_file(file))
/external/python/setuptools/setuptools/_vendor/importlib_metadata/
D__init__.py493 return self.dist.locate_file(self)
516 def locate_file(self, path): member in Distribution
921 def locate_file(self, path): member in PathDistribution
/external/python/cpython3/Lib/importlib/metadata/
D__init__.py503 return self.dist.locate_file(self)
526 def locate_file(self, path): member in Distribution
931 def locate_file(self, path): member in PathDistribution
/external/skia/site/docs/user/modules/
Dcanvaskit.md122 let locate_file = '';
125 locate_file = 'https://unpkg.com/canvaskit-wasm@0.38.0/bin/full/';
131 s.src = locate_file + 'canvaskit.js';
140 locateFile: (file) => locate_file + file,
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py1034 self.assertEqual(self.android_dev_server.locate_file(
Ddev_server.py1393 def locate_file(self, file_name, artifacts, build, build_info): member in ImageServerBase
/external/autotest/client/common_lib/
Dutils.py445 def locate_file(path, base_dir=None): function