aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/PathV2.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-02-15Implement a function from PathV2 whose definition is missing.Argyrios Kyrtzidis1-0/+6
2011-02-11Adds llvm::sys::path::is_separator() to test whether a char is a path separatorZhanyong Wan1-12/+13
2011-01-15Support/PathV2: Add identify_magic.Michael J. Spencer1-0/+10
2011-01-15Support/PathV2: Implement has_magic in terms of get_magic.Michael J. Spencer1-26/+8
2011-01-12Support/Path: Deprecate PathV1::IsSymlink and replace all uses with PathV2::i...Michael J. Spencer1-0/+8
2011-01-11Support/Path: Deprecate PathV1::isDirectory and replace all uses with PathV2:...Michael J. Spencer1-0/+16
2011-01-05Support/PathV2: Implement remove_all.Michael J. Spencer1-0/+37
2011-01-05Support/PathV2: Implement directory_entry::status.Michael J. Spencer1-0/+4
2010-12-28Fix a signed/unsigned comparison warning.Benjamin Kramer1-1/+1
2010-12-28Support/PathV2: Implement has_magic.Michael J. Spencer1-0/+38
2010-12-20Support/PathV2: Add missing has_relative_path impl.Michael J. Spencer1-0/+7
2010-12-17PathV2: Use StringRef::substr to simplify substring creation.Benjamin Kramer1-27/+17
2010-12-17Missed some StringRefRefs.Benjamin Kramer1-1/+1
2010-12-17Pass StringRefs by value, for consistency.Benjamin Kramer1-13/+13
2010-12-09Support/FileSystem: Change file_status predicate functions that cannot fail toMichael J. Spencer1-0/+27
2010-12-07Support/PathV2: Remove const from bool return types.Michael J. Spencer1-9/+9
2010-12-07Support/PathV2: Change most functions in the path namespace to return their workMichael J. Spencer1-100/+62
2010-12-07Support/PathV2: Cleanup separator handling.Michael J. Spencer1-7/+10
2010-12-07Support/PathV2: Remove the error_code return type from all functions in the pathMichael J. Spencer1-90/+60
2010-12-07Support/PathV2: Move make_absolute from path to fs.Michael J. Spencer1-55/+57
2010-12-07Support/PathV2: Use SmallVector::clear instead of set_size.Michael J. Spencer1-1/+1
2010-12-07Support/PathV2: Move current_path from path to fs and fix the Unix implementa...Michael J. Spencer1-1/+1
2010-12-06Support/FileSystem: Add directory_iterator implementation.Michael J. Spencer1-0/+10
2010-12-06Support/PathV2: Fix append to not add a slash to empty or root paths.Michael J. Spencer1-1/+1
2010-12-04Silence 'may be used uninitialized in this function' warnings. Static analysisBill Wendling1-2/+2
2010-12-04Support/PathV2: Remove redundant calls to make_error_code.Michael J. Spencer1-32/+32
2010-12-04Support/FileSystem: Add status implementation.Michael J. Spencer1-0/+2
2010-12-03Support/FileSystem: Add create_director{y,ies} implementations.Michael J. Spencer1-0/+15
2010-12-01Support/FileSystem: Add copy_file implementation. Not tests yet because theMichael J. Spencer1-3/+8
2010-12-01Support/PathV2: Add is_{absolute,relative} implementation.Michael J. Spencer1-0/+24
2010-12-01Support/PathV2: Add has_{root_path,root_name,root_directory,parent_path,filen...Michael J. Spencer1-18/+70
2010-12-01Support/PathV2: Add extension implementation.Michael J. Spencer1-0/+16
2010-12-01Support/PathV2: Add stem implementation.Michael J. Spencer1-0/+16
2010-12-01Support/PathV2: Add filename implementation.Michael J. Spencer1-0/+5
2010-12-01Support/PathV2: Add native implementation.Michael J. Spencer1-0/+22
2010-12-01Support/PathV2: Add replace_extension implementation.Michael J. Spencer1-0/+20
2010-12-01Support/PathV2: Add remove_filename implementation.Michael J. Spencer1-0/+8
2010-11-30Support/PathV2: Implement reverse iteration and parent_path.Michael J. Spencer1-8/+115
2010-11-29Support: Add PathV2 implementation.Michael J. Spencer1-0/+409