Home
last modified time | relevance | path

Searched refs:pathstr (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/tools/build/src/engine/
Dfilent.cpp219 char const * const pathstr = object_str( info->name ); in try_file_query_root() local
220 if ( !pathstr[ 0 ] ) in try_file_query_root()
225 else if ( pathstr[ 0 ] == '\\' && ! pathstr[ 1 ] ) in try_file_query_root()
230 else if ( pathstr[ 1 ] == ':' ) in try_file_query_root()
232 if ( !pathstr[ 2 ] || ( pathstr[ 2 ] == '\\' && !pathstr[ 3 ] ) ) in try_file_query_root()
234 buf[ 0 ] = pathstr[ 0 ]; in try_file_query_root()
269 char const * const pathstr = object_str( info->name ); in file_query_() local
277 if ( ( dir = strrchr( pathstr, '\\' ) ) ) in file_query_()
279 parent = object_new_range( pathstr, dir - pathstr ); in file_query_()
Dfilesys.cpp319 char const * const pathstr = object_str( info->name ); in file_query_posix_() local
320 char const * const pathspec = *pathstr ? pathstr : "."; in file_query_posix_()
/third_party/ninja/src/
Dgraphviz.cc27 string pathstr = node->path(); in AddTarget() local
28 replace(pathstr.begin(), pathstr.end(), '\\', '/'); in AddTarget()
29 printf("\"%p\" [label=\"%s\"]\n", node, pathstr.c_str()); in AddTarget()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DFile.cpp125 auto pathstr = path; in createPhysical() local
126 auto pos = pathstr.rfind("/"); in createPhysical()
129 auto dir = pathstr.substr(0, pos); in createPhysical()
130 auto name = pathstr.substr(pos + 1); in createPhysical()
/third_party/python/Lib/
Dmailcap.py49 pathstr = os.environ['MAILCAPS']
50 mailcaps = pathstr.split(os.pathsep)
/third_party/python/Lib/test/
Dtest_pathlib.py262 for pathstr in ('a', 'a/b', 'a/b/c', '/', '/a/b', '/a/b/c'):
263 self._check_str(pathstr, (pathstr,))
270 for pathstr in ('a', 'a/b', 'a/b/c', '/', '/a/b', '/a/b/c'):
271 self.assertEqual(P(pathstr).as_posix(), pathstr)
287 for pathstr in ('a', 'a/b', 'a/b/c', '/', '/a/b', '/a/b/c'):
288 p = self.cls(pathstr)