HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 226 - 250 of 4009) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CameraITS/tests/scene3/
test_edge_enhancement.py 24 import os.path namespace
51 NAME = os.path.basename(__file__).split(".")[0]
test_reprocess_edge_enhancement.py 24 import os.path namespace
55 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CameraITS/tests/scene4/
test_aspect_ratio_and_crop.py 19 import os.path namespace
38 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CameraITS/tests/scene5/
test_lens_shading_and_color_uniformity.py 19 import os.path namespace
37 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CameraITS/tests/
tutorial.py 31 import os.path namespace
53 NAME = os.path.basename(__file__).split(".")[0]
  /development/tools/checkstyle/gitlint/
git.py 16 import os.path namespace
23 """Returns the root of the repository as an absolute path."""
56 root: the root of the repository, it has to be an absolute path.
65 assert os.path.isabs(root), "Root has to be absolute, got: %s" % root
85 return dict((os.path.join(root, _remove_filename_quotes(filename)), mode)
102 return dict((os.path.join(root, _remove_filename_quotes(filename)),
  /development/tools/idegen/src/
IntelliJ.java 93 String path = file.getPath(); local
96 if (path.contains("test-runner")) {
100 return path.toUpperCase().contains("TEST");
  /device/google/dragon/crash_collector/
coredump_writer.h 53 std::string path; member in struct:CoredumpWriter::FileInfo
  /external/apache-http/src/org/apache/http/cookie/
CookiePathComparator.java 40 * that those with more specific Path attributes precede those with
44 * This comparator assumes that Path attributes of two cookies
45 * path-match a commmon request-URI. Otherwise, the result of the
61 String path = cookie.getPath(); local
62 if (path == null) {
63 path = "/";
65 if (!path.endsWith("/")) {
66 path = path + '/';
68 return path;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 32 * This class runs over a path expression that is assumed to be absolute, and
42 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
43 * @return true if the path is confirmed to be absolute, false if it
46 public boolean checkAbsolute(LocPathIterator path)
49 path.callVisitors(null, this);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 46 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
47 * @return true if the path is confirmed to be absolute, false if it
50 public static boolean check(LocPathIterator path)
53 path.callVisitors(null, hppc);
86 * Visit a predicate within a location path. Note that there isn't a
  /external/autotest/client/bin/input/
input_event_player.py 16 import os.path namespace
74 help='device path (/dev/input/event0)')
89 elif not os.path.exists(options.devpath):
97 if not os.path.exists(options.gesture_file):
  /external/autotest/client/site_tests/graphics_GLES2ConformChrome/
graphics_GLES2ConformChrome.py 5 import os.path namespace
41 if not os.path.exists(self.get_chrome_binary_path(self.BINARY)):
  /external/autotest/client/site_tests/graphics_KhronosGLCTSChrome/
graphics_KhronosGLCTSChrome.py 5 import os.path namespace
36 if not os.path.exists(self.get_chrome_binary_path(self.BINARY)):
40 log_file = os.path.join(self.resultsdir, self.BINARY + ".xml")
  /external/autotest/client/site_tests/logging_CrashServices/
logging_CrashServices.py 5 import os, os.path, logging namespace
53 def _find_file_in_path(self, path, process_name, filetype):
57 @param path: Dirctory path where the dump files are expected.
65 entries = os.listdir(path)
70 (filename, ext) = os.path.splitext(entry)
72 logging.info('the path is %s' % os.path)
73 if os.path.getsize(path + '/' + entry) > 0
    [all...]
  /external/autotest/client/site_tests/power_PSROccupancyTest/
power_PSROccupancyTest.py 6 import os.path namespace
31 if not os.path.exists(enable_psr_file_path):
38 if not os.path.exists(debugfs_file_path):
  /external/autotest/client/site_tests/security_ReservedPrivileges/
security_ReservedPrivileges.py 10 import os.path namespace
36 # Figure out path to baseline file, by looking up our own path
37 path = os.path.abspath(__file__)
38 path = os.path.join(os.path.dirname(path), 'baseline.%s' % bltype)
39 if (os.path.isfile(path) == False)
    [all...]
  /external/autotest/server/
deb_kernel.py 9 import os, os.path, time namespace
49 basename = os.path.basename(self.source_material)
50 remote_filename = os.path.join(remote_tmpdir, basename)
85 The full path to the kernel image file as it will be
99 The full path to the initrd file as it will be
125 The full path to the temporary directory on host where
137 basename = os.path.basename(self.source_material)
138 remote_filename = os.path.join(remote_tmpdir, basename)
140 content_dir= os.path.join(remote_tmpdir, "contents")
  /external/autotest/server/self-test/
utils_test.py 12 import os.path namespace
31 tmppath = os.path.join(tmpdir, 'testfile')
50 path = utils.get('/proc/cpuinfo')
51 self.assertTrue(file(path).readline().startswith('processor'))
55 path = utils.get('/tmp loves rabbits!')
56 self.assertTrue(file(path).readline().startswith('/tmp loves'))
61 origpath = os.path.join(tmpdir, 'testGetWithDir')
65 self.assertTrue(os.path.isdir(dstpath))
  /external/autotest/server/site_tests/hardware_DiskFirmwareUpgrade/
hardware_DiskFirmwareUpgrade.py 5 import os, os.path, re namespace
79 self._client.send_file(os.path.join(self.bindir, p),
84 disk_firmware_package=os.path.join(self._tmpdir, p),
  /external/autotest/tko/
jsonp_fetcher.cgi 22 path = parameters['path'] variable
26 file_contents = urllib2.urlopen('http://localhost' + path).read()
29 result_dict['err'] = LogFileNotFound('%s not found' % path)
  /external/autotest/tko/parsers/test/
inspect_parser_result_store.py 9 from os import path namespace
23 scenario_dirpath = path.normpath(args[0])
24 if not path.exists(scenario_dirpath) or not path.isdir(scenario_dirpath):
new_scenario.py 21 from os import path namespace
48 results_dirpath = path.normpath(args[0])
49 if not path.exists(results_dirpath) or not path.isdir(results_dirpath):
54 scenarios_dirpath = path.normpath(args[1])
55 if not path.exists(scenarios_dirpath) or not path.isdir(scenarios_dirpath):
60 results_dirname = path.basename(results_dirpath)
65 scenario_package_dirpath = path.join(
67 if path.exists(scenario_package_dirpath)
    [all...]
  /external/bison/lib/
spawn_int.h 43 const char *path; member in struct:__spawn_action::__anon6609::__anon6612
59 extern int __spawni (pid_t *pid, const char *path,
  /external/boringssl/src/util/bot/
extract.py 20 import os.path namespace
27 def CheckedJoin(output, path):
29 CheckedJoin returns os.path.join(output, path). It does sanity checks to
30 ensure the resulting path is under output, but shouldn't be used on untrusted
33 path = os.path.normpath(path)
34 if os.path.isabs(path) or path.startswith('.')
    [all...]

Completed in 793 milliseconds

1 2 3 4 5 6 7 8 91011>>