OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:top_directory
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder.py
34
def __init__(self, filesystem,
top_directory
, starting_subdirectory):
36
self.
top_directory
= filesystem.realpath(
top_directory
)
37
self.search_directory = self.
top_directory
41
self.search_directory = filesystem.join(self.
top_directory
, starting_subdirectory)
45
search_directory = self.filesystem.join(self.
top_directory
, sub_directory)
56
return path.replace(self.
top_directory
+ self.filesystem.sep, '').replace(self.filesystem.sep, '.')[:-3]
60
realpath = self.filesystem.realpath(self.filesystem.join(self.
top_directory
, path))
61
if realpath.startswith(self.
top_directory
+ self.filesystem.sep):
62
return realpath.replace(self.
top_directory
+ self.filesystem.sep, ''
[
all
...]
main.py
83
def add_tree(self,
top_directory
, starting_subdirectory=None):
84
self.finder.add_tree(
top_directory
, starting_subdirectory)
Completed in 34 milliseconds