summaryrefslogtreecommitdiffstats
path: root/include/clang/Lex/LiteralSupport.h
Commit message (Expand)AuthorAgeFilesLines
* Allow lexer to handle string_view literals. Patch from Anton Bikineev.Eric Fiselier2016-12-301-0/+2
* Enable support for __float128 in Clang and enable it on pertinent platformsNemanja Ivanovic2016-05-091-0/+1
* Add missing headers (fix build after headers cleanup in LLVM)Mehdi Amini2016-04-161-0/+1
* Revert 266186 as it breaks anything that includes type_traits on some platformsNemanja Ivanovic2016-04-151-1/+0
* Enable support for __float128 in ClangNemanja Ivanovic2016-04-131-0/+1
* [OpenCL] Added half type literal with suffix h.Anastasia Stulova2016-02-171-0/+1
* PR26349: correctly check whether a digit sequence is empty in the presence of...Richard Smith2016-02-091-0/+6
* [Lex] Share some common code between decimal and octal parsing in NumericLite...Craig Topper2016-01-281-0/+1
* Properly track that a character literal is UTF-8, and pretty print the prefix...Aaron Ballman2016-01-071-0/+1
* [lex] Bitfieldize some booleans.Benjamin Kramer2015-03-311-7/+7
* Header guard canonicalization, clang part.Benjamin Kramer2014-08-131-2/+2
* Convert StringLiteralParser constructor to use ArrayRef instead of a pointer ...Craig Topper2014-06-261-4/+4
* Lex: Use the correct types for MS integer suffixesDavid Majnemer2014-06-211-1/+1
* Revert "Lex: Use the correct types for MS integer suffixes"Rafael Espindola2014-06-211-1/+1
* Lex: Use the correct types for MS integer suffixesDavid Majnemer2014-06-211-1/+1
* [C++11] Use 'nullptr'Craig Topper2014-05-061-1/+2
* PR18855: Add support for UCNs and UTF-8 encoding within ud-suffixes.Richard Smith2014-02-171-1/+6
* Replace a bool with an enum for clarity, based on review comment from James D...Richard Smith2013-09-261-1/+3
* Implement C++1y digit separator proposal (' as a digit separator). This is notRichard Smith2013-09-261-4/+12
* C++1y literal suffix support:Richard Smith2013-07-231-0/+2
* Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.Jordan Rose2013-02-081-3/+3
* Sort #include lines for all files under include/...Chandler Carruth2012-12-041-1/+1
* Small cleanup of literal semantic analysis: hiding 'char *' pointers behindDmitri Gribenko2012-09-241-2/+4
* When a bad UTF-8 encoding or bogus escape sequence is encountered in aRichard Smith2012-09-081-2/+2
* In StringLiteralParser::init, make sure we emit an error whenArgyrios Kyrtzidis2012-05-031-0/+1
* Add support for cooked forms of user-defined-integer-literal andRichard Smith2012-03-081-3/+12
* User-defined literal support for character literals.Richard Smith2012-03-081-0/+18
* Lexing support for user-defined literals. Currently these lex as the same tokenRichard Smith2012-03-051-0/+5
* Implement warning for non-wide string literals with an unexpected encoding. ...Eli Friedman2012-02-111-0/+1
* Basic: import SmallString<> into clang namespaceDylan Noblesmith2012-02-051-1/+1
* Fix the representation of wide strings in the AST and IR so that it uses the ...Eli Friedman2011-11-011-5/+6
* Perform proper conversion for strings encoded in the source file as UTF-8. (...Eli Friedman2011-11-011-1/+1
* Rename Diagnostic to DiagnosticsEngine as per issue 5397David Blaikie2011-09-251-3/+3
* Raw string followup. Pass a couple StringRefs by value.Craig Topper2011-08-111-1/+1
* Add support for C++0x raw string literals.Craig Topper2011-08-111-0/+1
* Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor2011-07-271-11/+20
* now that we have a centralized place to do so, add some using declarations forChris Lattner2011-07-201-2/+3
* Make more use of llvm::StringRef in various APIs. In particular, don'tJay Foad2011-06-211-1/+3
* Fix a nasty bug where inside StringLiteralParser:Argyrios Kyrtzidis2011-05-171-3/+5
* Remove unused STL header includes.Jay Foad2011-04-231-1/+0
* Add missing standard includes. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-191-1/+2
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* propagate preprocessor out of StringLiteralParser. It is nowChris Lattner2010-11-171-1/+11
* push use of Preprocessor out farther.Chris Lattner2010-11-171-6/+6
* push use of Preprocessor out of getOffsetOfStringByte Chris Lattner2010-11-171-1/+4
* refactor the interface to StringLiteralParser::getOffsetOfStringByte,Chris Lattner2010-11-171-1/+6
* Revert my user-defined literal commits - r1124{58,60,67} pendingSean Hunt2010-08-301-5/+0
* Implement C++0x user-defined string literals.Sean Hunt2010-08-291-0/+5
* Tell the string literal parser when it's not permitted to emitDouglas Gregor2010-05-261-2/+2
* Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641John McCall2009-12-241-8/+2