Home | History | Annotate | Download | only in aidl

Lines Matching full:path

36   for (string path : import_paths) {
37 if (path.empty()) {
38 path = ".";
40 if (path[path.size() - 1] != OS_PATH_SEPARATOR) {
41 path += OS_PATH_SEPARATOR;
43 import_paths_.push_back(std::move(path));
49 // Convert the canonical name to a relative file path.
58 // Look for that relative path at each of our import roots.
59 for (string path : import_paths_) {
60 path = path + relative_path;
61 if (io_delegate_.FileIsReadable(path)) {
62 return path;