Home
last modified time | relevance | path

Searched refs:is_rooted (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/tools/build/src/engine/
Dpathsys.cpp312 bool is_rooted = p[0] == '/' || p[0] == '\\'; in normalize() local
355 if (is_rooted) return ""; in normalize()
361 if (result.empty()) return is_rooted ? "/" : "."; in normalize()
363 if (!is_rooted) return result.substr(1); in normalize()
Dpathsys.h100 inline bool is_rooted(const std::string &p) in is_rooted() function
Dstartup.cpp69 if (b2::paths::is_rooted(dir)) in builtin_boost_build()
/third_party/boost/tools/build/src/util/
Dpath.py69 def is_rooted (path): function
216 if is_rooted(path) or '..' in path: