aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/YAMLParser.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-07-30Remove trailing spaceFangrui Song1-1/+1
2018-05-01Remove @brief commands from doxygen comments, too.Adrian Prantl1-54/+54
2018-03-27[YAML] Escape non-printable multibyte UTF8 in Output::scalarString.Graydon Hoare1-1/+5
2017-06-21[ProfileData, Support] Fix some Clang-tidy modernize-use-using and Include Wh...Eugene Zelenko1-20/+38
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-1/+1
2017-05-23Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through.Galina Kistanova1-0/+4
2016-11-28Improve error handling in YAML parsingMehdi Amini1-10/+22
2016-10-16Support: Return void from Scanner::scan_ns_uri_char, no one uses the resultJustin Bogner1-7/+2
2016-09-11ADT: Add AllocatorList, and use it for yaml::TokenDuncan P. N. Exon Smith1-18/+5
2016-08-30ADT: Split ilist_node_traits into alloc and callback, NFCDuncan P. N. Exon Smith1-9/+2
2016-08-22ADT: Remove ilist_*sentinel_traits, NFCDuncan P. N. Exon Smith1-4/+0
2016-08-12ADT: Share code for embedded sentinel traits, NFCDuncan P. N. Exon Smith1-14/+3
2016-08-11Use the range variant of find instead of unpacking begin/endDavid Majnemer1-2/+2
2016-02-16Simplify users of StringRef::{l,r}trim (NFC)Vedant Kumar1-1/+1
2015-12-28Refactor: Simplify boolean conditional return statements in llvm/lib/SupportAlexander Kornienko1-4/+2
2015-10-08Support: Stop relying on iterator auto-conversion, NFCDuncan P. N. Exon Smith1-6/+6
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-4/+4
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-4/+4
2015-05-21YAML: Null terminate block scalar's value.Alex Lorenz1-1/+2
2015-05-18[YAML] Plug a memory leakBenjamin Kramer1-2/+4
2015-05-14Fix memory leak introduced in r237314.Alex Lorenz1-1/+1
2015-05-13YAML: Implement block scalar parsing.Alex Lorenz1-21/+265
2015-05-07YAML: Enable the YAMLParser tests. Alex Lorenz1-9/+14
2015-05-06YAML: Extract the code that skips a comment into a separate method, NFC. Alex Lorenz1-12/+19
2015-03-23Purge unused includes throughout libSupport.Benjamin Kramer1-0/+1
2015-02-19Demote vectors to arrays. No functionality change.Benjamin Kramer1-3/+1
2015-01-17Remove std::move that was preventing return value optimization.Richard Trieu1-3/+3
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