Home
last modified time | relevance | path

Searched refs:root_directory (Results 1 – 7 of 7) sorted by relevance

/external/skia/tools/copyright/
Dmain.py30 def Main(root_directory): argument
35 filepaths = GetAllFilepaths(root_directory)
64 def GetAllFilepaths(root_directory): argument
70 for dirpath, dirnames, filenames in os.walk(root_directory):
/external/chromium-trace/catapult/third_party/Paste/paste/
Durlparser.py429 def __init__(self, directory, root_directory=None, argument
432 self.root_directory = self.normpath(root_directory or directory)
449 if not full.startswith(self.root_directory):
456 return self.__class__(full, root_directory=self.root_directory,
/external/llvm/include/llvm/Support/
DPath.h218 StringRef root_directory(StringRef path);
/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_urlparser.py107 assert '..' not in app.root_directory
/external/llvm/lib/Support/
DPath.cpp409 StringRef root_directory(StringRef path) { in root_directory() function
603 return !root_directory(p).empty(); in has_root_directory()
819 StringRef bRootDirectory = path::root_directory(current_dir); in make_absolute()
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
Dfake_filesystem_test.py1412 root_directory = '/foo'
1415 self.filesystem.CreateDirectory(root_directory)
1417 directory = self.os.path.join(root_directory, directory)
1420 test_file = self.os.path.join(root_directory, test_file)
1425 generator = self.os.walk(root_directory)
1429 self.assertEqual(root_directory, root)
/external/llvm/unittests/Support/
DPath.cpp127 path::root_directory(*i); in TEST()