aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/PathV2.cpp
AgeCommit message (Expand)Author
2013-03-21<rdar://problem/13477190> On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_...Douglas Gregor
2013-02-12Add static cast to unsigned char whenever a character classification function...Guy Benyei
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-06-19[Support/PathV2] Fix out of bounds access in identify_magic when the file is ...Michael J. Spencer
2012-03-21[PathV2]: Fix bug in create_directories which caused infinite recursion onMichael J. Spencer
2012-02-29Support/PathV2: Fix namespace qualifier in make_absolute(), for Win32.Daniel Dunbar
2012-02-29Support/PathV2: Fix make_absolute() to match is_absolute() and not expect toDaniel Dunbar
2012-02-29[PathV2] Fix bug in relative_path.Michael J. Spencer
2012-02-09Change default error_code ctor to a 'named ctor' so it's more self-documenting.David Blaikie
2012-02-08PathV2: Remove static StringRef ctors.Benjamin Kramer
2011-12-13Support/FileSystem: Add file_magic and move a vew clients over to it.Michael J. Spencer
2011-12-13Cleanup whitespace.Michael J. Spencer
2011-12-12Support/Windows: Cleanup scoped handles.Michael J. Spencer
2011-09-16Fix a minor bug in fs::create_directories. Patch by Albert Wong.Eli Friedman
2011-09-14Update the comment for system_temp_directory() to indicate when itDouglas Gregor
2011-09-14Add a simple routine to determine the typical system directory forDouglas Gregor
2011-09-14Remove unimplemented function prototypes from PathV2. They can be readded whe...Benjamin Kramer
2011-02-15Implement a function from PathV2 whose definition is missing.Argyrios Kyrtzidis
2011-02-11Adds llvm::sys::path::is_separator() to test whether a char is a path separatorZhanyong Wan
2011-01-15Support/PathV2: Add identify_magic.Michael J. Spencer
2011-01-15Support/PathV2: Implement has_magic in terms of get_magic.Michael J. Spencer
2011-01-12Support/Path: Deprecate PathV1::IsSymlink and replace all uses with PathV2::i...Michael J. Spencer
2011-01-11Support/Path: Deprecate PathV1::isDirectory and replace all uses with PathV2:...Michael J. Spencer
2011-01-05Support/PathV2: Implement remove_all.Michael J. Spencer
2011-01-05Support/PathV2: Implement directory_entry::status.Michael J. Spencer
2010-12-28Fix a signed/unsigned comparison warning.Benjamin Kramer
2010-12-28Support/PathV2: Implement has_magic.Michael J. Spencer
2010-12-20Support/PathV2: Add missing has_relative_path impl.Michael J. Spencer
2010-12-17PathV2: Use StringRef::substr to simplify substring creation.Benjamin Kramer
2010-12-17Missed some StringRefRefs.Benjamin Kramer
2010-12-17Pass StringRefs by value, for consistency.Benjamin Kramer
2010-12-09Support/FileSystem: Change file_status predicate functions that cannot fail toMichael J. Spencer
2010-12-07Support/PathV2: Remove const from bool return types.Michael J. Spencer
2010-12-07Support/PathV2: Change most functions in the path namespace to return their workMichael J. Spencer
2010-12-07Support/PathV2: Cleanup separator handling.Michael J. Spencer
2010-12-07Support/PathV2: Remove the error_code return type from all functions in the pathMichael J. Spencer
2010-12-07Support/PathV2: Move make_absolute from path to fs.Michael J. Spencer
2010-12-07Support/PathV2: Use SmallVector::clear instead of set_size.Michael J. Spencer
2010-12-07Support/PathV2: Move current_path from path to fs and fix the Unix implementa...Michael J. Spencer
2010-12-06Support/FileSystem: Add directory_iterator implementation.Michael J. Spencer
2010-12-06Support/PathV2: Fix append to not add a slash to empty or root paths.Michael J. Spencer
2010-12-04Silence 'may be used uninitialized in this function' warnings. Static analysisBill Wendling
2010-12-04Support/PathV2: Remove redundant calls to make_error_code.Michael J. Spencer
2010-12-04Support/FileSystem: Add status implementation.Michael J. Spencer
2010-12-03Support/FileSystem: Add create_director{y,ies} implementations.Michael J. Spencer
2010-12-01Support/FileSystem: Add copy_file implementation. Not tests yet because theMichael J. Spencer
2010-12-01Support/PathV2: Add is_{absolute,relative} implementation.Michael J. Spencer
2010-12-01Support/PathV2: Add has_{root_path,root_name,root_directory,parent_path,filen...Michael J. Spencer
2010-12-01Support/PathV2: Add extension implementation.Michael J. Spencer
2010-12-01Support/PathV2: Add stem implementation.Michael J. Spencer