Home | History | Annotate | Download | only in class.directory_entry

Lines Matching refs:path

18 // void assign(path const&);
19 // void replace_filename(path const&);
36 const path p("foo/bar/baz");
37 const path p2("abc");
40 assert(e.path() == p && e2.path() == path());
42 assert(e.path() == p && e2.path() == p);
45 assert(e2.path() == p2 && e3.path() == p2);
57 const path p("foo/bar/baz");
58 const path p2("abc");
61 assert(e.path() == p && e2.path() == p2);
63 assert(e2.path() == p);
64 assert(e.path() != p); // testing moved from state
71 const path p("foo/bar/baz");
72 const path p2("abc");
80 assert(e.path() == p);
82 assert(e.path() == p2 && e.path() != p);
84 assert(e.path() == p && e.path() != p2);
91 const path p("/path/to/foo.exe");
92 const path replace("bar.out");
93 const path expect("/path/to/bar.out");
102 assert(e.path() == p);
104 assert(e.path() == expect);