HomeSort by relevance Sort by last modified time
    Searched refs:current_dir (Results 1 - 24 of 24) sorted by null

  /external/chromium-trace/catapult/third_party/html5lib-python/
setup.py 28 current_dir = os.path.dirname(__file__) variable
29 with codecs.open(os.path.join(current_dir, 'README.rst'), 'r', 'utf8') as readme_file:
30 with codecs.open(os.path.join(current_dir, 'CHANGES.rst'), 'r', 'utf8') as changes_file:
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_mako_test.py 9 current_dir = os.path.abspath(os.path.dirname(__file__)) variable
10 template_path = os.path.join(current_dir, 'resources', 'mako_templates')
extras_jinja2_test.py 9 current_dir = os.path.abspath(os.path.dirname(__file__)) variable
10 template_path = os.path.join(current_dir, 'resources', 'jinja2_templates')
11 compiled_path = os.path.join(current_dir, 'resources',
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 38 current_dir = dirs_to_explore.popleft()
39 for path in os.listdir(os.path.join(root_dir, current_dir)):
40 expanded_path = os.path.join(root_dir, current_dir, path)
41 relative_path = os.path.join(current_dir, path)
  /external/skia/platform_tools/android/tradefed/
upload_dm_results.py 23 current_dir = os.path.dirname(os.path.abspath(__file__))
24 sys.path.insert(0, os.path.join(current_dir, "../../../common/py/utils"))
  /external/autotest/site_utils/docgen/
CreateDocs.py 372 def CreateMainPage(self, current_dir):
403 readme_file = os.path.join(current_dir, self.readme)
551 def PostProcessDocs(self, current_dir):
569 html_root = os.path.join(current_dir, self.html)
570 shutil.copy(os.path.join(current_dir, logo_image), html_root)
644 def ParseOptions(current_dir):
682 default=os.path.join(current_dir, 'doxygen.conf'),
694 default=os.path.join(current_dir, 'doxygenLayout.xml'),
698 default=os.path.join(current_dir, 'docCreator.log'),
775 current_dir = os.path.dirname(sys.argv[0]
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser_options_unittest.py 75 current_dir = os.path.dirname(__file__)
76 parser.parse_args(['--browser', 'any', '--profile-dir', current_dir])
77 self.assertEquals(options.browser_options.profile_dir, current_dir)
  /external/eigen/bench/spbench/
spbenchsolver.cpp 69 string current_dir; local
  /external/protobuf/gtest/test/
run_tests_util_test.py 60 def __init__(self, current_dir=os.getcwd(), known_paths=None):
61 self.current_dir = current_dir
66 # are absolutized with self.current_dir.
116 return self.normpath(os.path.join(self.current_dir, path))
191 current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
423 current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
443 current_dir=os.path.abspath('/a/b/c'),
498 current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)),
529 current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__))
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 547 current_dir = self.root
549 if component not in current_dir.contents:
552 current_dir = current_dir.GetEntry(component)
592 current_dir = self.root
594 if component not in current_dir.contents:
596 current_dir = current_dir.contents[component]
693 current_dir = self.root
701 if component not in current_dir.contents
    [all...]
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem.py 565 current_dir = self.root
567 if component not in current_dir.contents:
570 current_dir = current_dir.GetEntry(component)
610 current_dir = self.root
612 if component not in current_dir.contents:
614 current_dir = current_dir.contents[component]
711 current_dir = self.root
719 if component not in current_dir.contents
    [all...]
  /external/autotest/client/cros/input_playback/
input_playback.py 144 current_dir = os.path.dirname(os.path.realpath(__file__))
146 current_dir, self._DEFAULT_PROPERTY_FILES[input_type])
415 current_dir = os.path.dirname(os.path.realpath(__file__))
416 gesture_file = os.path.join(current_dir, filename)
  /external/libchrome/sandbox/linux/services/
credentials_unittest.cc 46 char current_dir[PATH_MAX]; local
47 char* cwd = getcwd(current_dir, sizeof(current_dir));
  /external/llvm/lib/Support/
Path.cpp 793 SmallString<128> current_dir;
795 current_directory.toVector(current_dir);
796 else if (std::error_code ec = current_path(current_dir))
802 path::append(current_dir, p);
804 path.swap(current_dir);
809 StringRef cdrn = path::root_name(current_dir);
819 StringRef bRootDirectory = path::root_directory(current_dir);
820 StringRef bRelativePath = path::relative_path(current_dir);
  /ndk/sources/host-tools/make-3.81/tests/
run_make_tests.pl 208 $__pwd = `++(current_dir)`;
  /ndk/
ndk-gdb.py 244 current_dir = os.getcwdu()
245 while not os.path.exists(os.path.join(current_dir, manifest_name)):
246 parent_dir = os.path.dirname(current_dir)
247 if parent_dir == current_dir:
252 current_dir = parent_dir
253 args.project = current_dir
  /external/autotest/site_utils/
test_push.py 247 current_dir = os.path.dirname(os.path.realpath(__file__))
248 cmd = [os.path.join(current_dir, RUN_SUITE_COMMAND),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 284 current_dir = os.getcwd()
293 self.assertEqual(os.getcwd(), current_dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 284 current_dir = os.getcwd()
293 self.assertEqual(os.getcwd(), current_dir)
  /external/autotest/server/cros/network/
wifi_client.py 61 current_dir = os.path.dirname(os.path.realpath(__file__))
63 current_dir, ANDROID_XMLRPC_SERVER_AUTOTEST_PATH)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_shutil.py 568 current_dir = os.getcwd()
578 self.assertEqual(os.getcwd(), current_dir)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_shutil.py 568 current_dir = os.getcwd()
578 self.assertEqual(os.getcwd(), current_dir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 568 current_dir = os.getcwd()
578 self.assertEqual(os.getcwd(), current_dir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 568 current_dir = os.getcwd()
578 self.assertEqual(os.getcwd(), current_dir)

Completed in 1348 milliseconds