aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/YAMLParser.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-08-30Fix some cases where StringRef was being passed by const reference. Remove co...Craig Topper1-1/+1
2014-08-27yaml::Stream doesn't need to take ownership of the buffer.Rafael Espindola1-25/+26
2014-08-21Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...David Blaikie1-3/+5
2014-08-17Convert an ownership comment with std::uinque_ptr.Rafael Espindola1-16/+9
2014-04-09[C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper1-2/+2
2014-04-07[C++11] Make use of 'nullptr' in the Support library.Craig Topper1-22/+22
2014-03-23remove a bunch of unused private methodsNuno Lopes1-39/+0
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-9/+5
2014-03-02[C++11] Switch all uses of the llvm_move macro to use std::moveChandler Carruth1-3/+3
2013-11-19[weak vtables] Remove a bunch of weak vtablesJuergen Ributzka1-0/+9
2013-11-18Revert r194865 and r194874.Alexey Samsonov1-9/+0
2013-11-15[weak vtables] Remove a bunch of weak vtablesJuergen Ributzka1-0/+9
2013-10-18Can we move to C++11 already?Michael J. Spencer1-3/+3
2013-10-18[Support][YAML] Add support for accessing tags and tag handle substitution.Michael J. Spencer1-11/+91
2013-05-05Add ArrayRef constructor from None, and do the cleanups that this constructor...Dmitri Gribenko1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-4/+3
2012-11-19Allow using MemoryBuffers with yaml::Stream directly.Sean Silva1-0/+20
2012-09-26YAMLParser: Fix invalid reads when encountering incorrectly quoted scalar.Benjamin Kramer1-0/+7
2012-07-20Remove unused private member variables uncovered by the recent changes to cla...Benjamin Kramer1-4/+0
2012-06-09Convert comments to proper Doxygen comments.Dmitri Gribenko1-6/+6
2012-05-14[Support/YAMLParser] Use rtrim on plain scalars.Michael J. Spencer1-3/+1
2012-05-01YAMLParser: get rid of global ctors & dtors.Benjamin Kramer1-2/+0
2012-04-27[Support/YAMLParser] Fix ASan found bugs.Michael J. Spencer1-1/+7
2012-04-26[Support/YAML] Properly fix unitialized variable warning by inserting aMichael J. Spencer1-6/+12
2012-04-22Remove some potential warnings about variables used uninitialized.Bill Wendling1-3/+3
2012-04-21YAMLParser: silence warning about tautological comparison on unsigned-char pl...Benjamin Kramer1-1/+1
2012-04-04Move yaml::Stream's dtor out of line so it can see Scanner's dtor.Benjamin Kramer1-0/+2
2012-04-03Sorry about that. MSVC seems to accept just about any random string you give ...Michael J. Spencer1-2/+2
2012-04-03Add YAML parser to Support.Michael J. Spencer1-0/+2115