aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/PathV2.cpp
Commit message (Expand)AuthorAgeFilesLines
* [Support/PathV2] Fix out of bounds access in identify_magic when the file is ...Michael J. Spencer2012-06-191-0/+2
* [PathV2]: Fix bug in create_directories which caused infinite recursion onMichael J. Spencer2012-03-211-5/+6
* Support/PathV2: Fix namespace qualifier in make_absolute(), for Win32.Daniel Dunbar2012-02-291-1/+1
* Support/PathV2: Fix make_absolute() to match is_absolute() and not expect toDaniel Dunbar2012-02-291-2/+6
* [PathV2] Fix bug in relative_path.Michael J. Spencer2012-02-291-1/+1
* Change default error_code ctor to a 'named ctor' so it's more self-documenting.David Blaikie2012-02-091-13/+11
* PathV2: Remove static StringRef ctors.Benjamin Kramer2012-02-081-4/+4
* Support/FileSystem: Add file_magic and move a vew clients over to it.Michael J. Spencer2011-12-131-2/+114
* Cleanup whitespace.Michael J. Spencer2011-12-131-3/+3
* Support/Windows: Cleanup scoped handles.Michael J. Spencer2011-12-121-1/+3
* Fix a minor bug in fs::create_directories. Patch by Albert Wong.Eli Friedman2011-09-161-1/+1
* Update the comment for system_temp_directory() to indicate when itDouglas Gregor2011-09-141-1/+1
* Add a simple routine to determine the typical system directory forDouglas Gregor2011-09-141-0/+30
* Remove unimplemented function prototypes from PathV2. They can be readded whe...Benjamin Kramer2011-09-141-3/+1
* Implement a function from PathV2 whose definition is missing.Argyrios Kyrtzidis2011-02-151-0/+6
* Adds llvm::sys::path::is_separator() to test whether a char is a path separatorZhanyong Wan2011-02-111-12/+13
* Support/PathV2: Add identify_magic.Michael J. Spencer2011-01-151-0/+10
* Support/PathV2: Implement has_magic in terms of get_magic.Michael J. Spencer2011-01-151-26/+8
* Support/Path: Deprecate PathV1::IsSymlink and replace all uses with PathV2::i...Michael J. Spencer2011-01-121-0/+8
* Support/Path: Deprecate PathV1::isDirectory and replace all uses with PathV2:...Michael J. Spencer2011-01-111-0/+16
* Support/PathV2: Implement remove_all.Michael J. Spencer2011-01-051-0/+37
* Support/PathV2: Implement directory_entry::status.Michael J. Spencer2011-01-051-0/+4
* Fix a signed/unsigned comparison warning.Benjamin Kramer2010-12-281-1/+1
* Support/PathV2: Implement has_magic.Michael J. Spencer2010-12-281-0/+38
* Support/PathV2: Add missing has_relative_path impl.Michael J. Spencer2010-12-201-0/+7
* PathV2: Use StringRef::substr to simplify substring creation.Benjamin Kramer2010-12-171-27/+17
* Missed some StringRefRefs.Benjamin Kramer2010-12-171-1/+1
* Pass StringRefs by value, for consistency.Benjamin Kramer2010-12-171-13/+13
* Support/FileSystem: Change file_status predicate functions that cannot fail toMichael J. Spencer2010-12-091-0/+27
* Support/PathV2: Remove const from bool return types.Michael J. Spencer2010-12-071-9/+9
* Support/PathV2: Change most functions in the path namespace to return their workMichael J. Spencer2010-12-071-100/+62
* Support/PathV2: Cleanup separator handling.Michael J. Spencer2010-12-071-7/+10
* Support/PathV2: Remove the error_code return type from all functions in the pathMichael J. Spencer2010-12-071-90/+60
* Support/PathV2: Move make_absolute from path to fs.Michael J. Spencer2010-12-071-55/+57
* Support/PathV2: Use SmallVector::clear instead of set_size.Michael J. Spencer2010-12-071-1/+1
* Support/PathV2: Move current_path from path to fs and fix the Unix implementa...Michael J. Spencer2010-12-071-1/+1
* Support/FileSystem: Add directory_iterator implementation.Michael J. Spencer2010-12-061-0/+10
* Support/PathV2: Fix append to not add a slash to empty or root paths.Michael J. Spencer2010-12-061-1/+1
* Silence 'may be used uninitialized in this function' warnings. Static analysisBill Wendling2010-12-041-2/+2
* Support/PathV2: Remove redundant calls to make_error_code.Michael J. Spencer2010-12-041-32/+32
* Support/FileSystem: Add status implementation.Michael J. Spencer2010-12-041-0/+2
* Support/FileSystem: Add create_director{y,ies} implementations.Michael J. Spencer2010-12-031-0/+15
* Support/FileSystem: Add copy_file implementation. Not tests yet because theMichael J. Spencer2010-12-011-3/+8
* Support/PathV2: Add is_{absolute,relative} implementation.Michael J. Spencer2010-12-011-0/+24
* Support/PathV2: Add has_{root_path,root_name,root_directory,parent_path,filen...Michael J. Spencer2010-12-011-18/+70
* Support/PathV2: Add extension implementation.Michael J. Spencer2010-12-011-0/+16
* Support/PathV2: Add stem implementation.Michael J. Spencer2010-12-011-0/+16
* Support/PathV2: Add filename implementation.Michael J. Spencer2010-12-011-0/+5
* Support/PathV2: Add native implementation.Michael J. Spencer2010-12-011-0/+22
* Support/PathV2: Add replace_extension implementation.Michael J. Spencer2010-12-011-0/+20