Searched refs:join_path (Results 1 – 10 of 10) sorted by relevance
/external/vm_tools/p9/src/server/ |
D | tests.rs | 35 fn join_path<P: AsRef<Path>, R: AsRef<Path>>( in join_path() function 472 &join_path(path.clone(), "nested", &root).expect("normal"), in path_joins() 476 let p1 = join_path(path, "..", &root).expect("parent 1"); in path_joins() 479 let p2 = join_path(p1, "..", &root).expect("parent 2"); in path_joins() 482 let p3 = join_path(p2, "..", &root).expect("parent 3"); in path_joins() 485 let p4 = join_path(p3, "..", &root).expect("parent of root"); in path_joins() 494 join_path(path.clone(), ".", &root).expect_err("current directory"); in invalid_joins() 495 join_path(path.clone(), "c/d/e", &root).expect_err("too many components"); in invalid_joins() 496 join_path(path, "/c/d/e", &root).expect_err("absolute path"); in invalid_joins()
|
/external/dtc/ |
D | fstree.c | 31 tmpname = join_path(dirname, de->d_name); in read_fstree()
|
D | util.h | 67 extern char *join_path(const char *path, const char *name);
|
D | dtc.c | 36 tree->fullpath = join_path(prefix, tree->name); in fill_fullpaths()
|
D | util.c | 84 char *join_path(const char *path, const char *name) in join_path() function
|
D | srcpos.c | 107 fullname = join_path(dirname, fname); in try_open()
|
/external/libchrome/third_party/jinja2/ |
D | environment.py | 782 def join_path(self, template, parent): member in Environment 829 name = self.join_path(name, parent) 852 name = self.join_path(name, parent)
|
/external/python/jinja/src/jinja2/ |
D | environment.py | 789 def join_path(self, template, parent): member in Environment 837 name = self.join_path(name, parent) 869 name = self.join_path(name, parent)
|
/external/blktrace/iowatcher/ |
D | main.c | 232 static char * join_path(char *dest_dir, char *filename) in join_path() function 332 path = join_path(blktrace_dest_dir, tf->filename); in read_traces() 1635 char *path = join_path(blktrace_dest_dir, blktrace_outfile); in main()
|
/external/python/jinja/docs/ |
D | api.rst | 84 get_or_select_template, join_path, extend, compile_expression,
|