- 0621cb2 Make clang's rewrite engine a core feature by Alp Toker · 11 years ago[Renamed from clang/lib/Rewrite/Core/HTMLRewrite.cpp]
- dfca6f9 [C++11] Replace OwningPtr include with <memory>. by Ahmed Charles · 12 years ago
- f6a24ce Fix a tranche of comment, test and doc typos by Alp Toker · 12 years ago
- fbf914c Port HTMLDiagnostics to PathV2. No intended functionality change. by Benjamin Kramer · 12 years ago
- 33a35df Added Lexer::getBufferEnd(). by Alexander Kornienko · 12 years ago
- 241f451 Remove duplicate includes. by Roman Divacky · 13 years ago
- 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- 811db4e Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 13 years ago
- cdf8149 Split library clangRewrite into clangRewriteCore and clangRewriteFrontend. by Ted Kremenek · 13 years ago[Renamed (99%) from clang/lib/Rewrite/HTMLRewrite.cpp]
- 11790a4 [analyzer] Add Prev/Next links to the HTML output. by Jordan Rose · 13 years ago
- de1a292 Disable _Pragma during HTML macro rewriting to keep from crashing. by Jordan Rose · 13 years ago
- bbafb8a Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
- d67aea2 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 14 years ago
- 7ec12c9 Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 14 years ago
- 2c1dd27 Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
- 02c746d Remove Diagnostic.h include from Preprocessor.h. by Benjamin Kramer · 14 years ago
- 6b33356 Per PR 11814, use Monospace instead of Andale Mono. by Ted Kremenek · 14 years ago
- 8a40f70 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 14 years ago
- d0e9e3a Introduce a pure virtual clone() method to DiagnosticConsumer, so that by Douglas Gregor · 14 years ago
- b578432 Rename DiagnosticInfo to Diagnostic as per issue 5397 by David Blaikie · 14 years ago
- 2cb2a83 Rename IgnoringDiagClient to IgnoringDiagConsumer as per issue 5397 by David Blaikie · 14 years ago
- e2eefae Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 by David Blaikie · 14 years ago
- 9c902b5 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
- e6e67de Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. by Argyrios Kyrtzidis · 14 years ago
- fb65e59 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 14 years ago
- 6d28d7f Rename SourceManager::getInstantiationRange to getExpansionRange. by Chandler Carruth · 14 years ago
- 35f5320 Mechanically rename SourceManager::getInstantiationLoc and by Chandler Carruth · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- 5d4aff0 Switch a comment in Rewrite from 'instantiation' to 'expansion'. by Chandler Carruth · 14 years ago
- ea4f7c7 Introduced raw_identifier token kind. by Abramo Bagnara · 15 years ago
- d004064 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 15 years ago
- f0708de Fix crasher with IgnoringDiagClient by Douglas Gregor · 15 years ago
- 0384e635 make the token paste avoidance logic turn "..." into ".. ." instead of ". . ." by Chris Lattner · 16 years ago
- eb92dc0 Let SourceManager::getBufferData return StringRef instead of a pair of two const char*. by Benjamin Kramer · 16 years ago
- e0fbb83 Give SourceManager a Diagnostic object with which to report errors, by Douglas Gregor · 16 years ago
- 0adf318 Add some <cstdio> includes to unbreak the buildbots by Douglas Gregor · 16 years ago
- 802b776 Introduce a new BufferResult class to act as the return type of by Douglas Gregor · 16 years ago
- 710bb87 Fix PR5633 by making the preprocessor handle the case where we can by Chris Lattner · 16 years ago
- a2ff3b4 Make html::{SyntaxHighlight,HighlightMacros} take a const Preprocessor. by Daniel Dunbar · 16 years ago
- d0ba0e6 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 16 years ago
- 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- 62c850f Remove now unnecessary helper methods. by Daniel Dunbar · 16 years ago
- dec484a Convert parts of Rewriter to StringRef based API. by Daniel Dunbar · 16 years ago
- 69c300d Use raw_svector_ostream for string concatenation. by Daniel Dunbar · 16 years ago
- b562444 adjust indentation. by Zhongxing Xu · 16 years ago
- 6dec002 Patch by Stefan Bühler: Escape text in macro expansion when emitting HTML in the HTMLRewriter. by Ted Kremenek · 16 years ago
- 184e65d Change Lexer::MeasureTokenLength to take a LangOptions reference. by Chris Lattner · 17 years ago
- e07ea35 fix PR3798 by ignoring all diagnostics generated while repreprocessing a file in rewrite macros. by Chris Lattner · 17 years ago
- a039a62 Adjust HTML diagnostics CSS to not use "smaller" for font size and instead use by Ted Kremenek · 17 years ago
- 6c6a098 Tighten message bubble height. by Ted Kremenek · 17 years ago
- ccca5c3 Adjust CSS to make message bubble numbers less gaudy. by Ted Kremenek · 17 years ago
- c62af6c Adjust HTML message bubbles to utilize information from PathDiagnosticPiece::Kind. by Ted Kremenek · 17 years ago
- e780823 Update HTML diagnostics to honor the different between 'event' and 'control-flow' diagnostics. by Ted Kremenek · 17 years ago
- 87f95b0 Introduce code modification hints into the diagnostics system. When we by Douglas Gregor · 17 years ago
- 59da739 Fix PR3635 by handling ## magically by Chris Lattner · 17 years ago
- 8cad67b simplify this code and make it use highlight range. This by Chris Lattner · 17 years ago
- 20cf430 fix a fixme in -emit-html output: highlight the entire range of a macro by Chris Lattner · 17 years ago
- 9ef847b Fix rdar://6562329, a static analyzer crash Ted noticed on by Chris Lattner · 17 years ago
- 837b990 make "floating macro bubble" output of -emit-html much prettier: by Chris Lattner · 17 years ago
- c360bf2 rename getFullFilePos -> getFileOffset. by Chris Lattner · 17 years ago
- 4fa2362 Check in the long promised SourceLocation rewrite. This lays the by Chris Lattner · 17 years ago
- cbc35ecb Rename SourceManager::getCanonicalFileID -> getFileID. There is by Chris Lattner · 17 years ago
- 08354fe add a simplified lexer ctor that sets up the lexer to raw-lex an entire file. by Chris Lattner · 17 years ago
- d32480d this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 17 years ago
- 8a42586 more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 17 years ago
- 50c9050 Change how raw lexers are handled: instead of creating them and then by Chris Lattner · 17 years ago
- 2d470fc Patch by Csaba Hruska! by Ted Kremenek · 17 years ago
- afe2a9f Patch by Kovarththanan Rajaratnam! by Ted Kremenek · 17 years ago
- 0b79bfe honor EscapeSpaces in 2nd overload of EscapeText() by Nico Weber · 17 years ago
- ba11962 Add CSS for word wrapping of long message bubbles. by Ted Kremenek · 17 years ago
- 79ab0fa In a report-XXXXX.html, make the title include the name of the file with the bug. Patch by Jean-Daniel Dupas! by Ted Kremenek · 17 years ago
- 1e517a7 replace form feeds with an <hr> tag. by Chris Lattner · 18 years ago
- a960be4 Provide a version of html::HighlightMacros that takes a Preprocessor&. by Ted Kremenek · 18 years ago
- 4bbd164 Make tab insertion really right: the number of spaces inserted by Chris Lattner · 18 years ago
- a3d0263 Use HTML5 doctype when generating HTML. by Ted Kremenek · 18 years ago
- a821e08 Updated CSS colors. Patch by Cedric Venet! by Ted Kremenek · 18 years ago
- 54349c5 Fix a problem noticed by Nuno, where we wouldn't escape characters in by Chris Lattner · 18 years ago
- f42f3fb class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 18 years ago
- 6929bd8 don't give macros a background by Chris Lattner · 18 years ago
- f219126 Make sure popup is on top over other spans. wrap long line. by Chris Lattner · 18 years ago
- c2c08ca Add support in HTML macro expansion for hovering over a macro and automatically by Ted Kremenek · 18 years ago
- f1c70d7 insert macro expansions into floating divs. For now, they are always displayed, by Chris Lattner · 18 years ago
- 775fdd3 correctly hilight multi-line macro definitions and other by Chris Lattner · 18 years ago
- 10dbbb0 Make HighlightRange correctly handle multi-line ranges. This causes us to by Chris Lattner · 18 years ago
- 8e3006a add a new HighlightRange API, it doesn't handle multiline ranges by Chris Lattner · 18 years ago
- e9786c3 reenable highlighting of (the first line of) comments by Chris Lattner · 18 years ago
- 0bb0e7e switch from relexing with the preprocessor to do syntax highlighting to relexing by Chris Lattner · 18 years ago
- 03b8fcc Take a stab at highlighting #defines and #includes. This doesn't work yet. by Chris Lattner · 18 years ago
- 5e69a2d Syntax highlight keywords. I assume someone else will pick less appaling colors. by Chris Lattner · 18 years ago
- a5a75e7 split syntax highlighting of macros from keywords and comments, by Chris Lattner · 18 years ago
- 060d8aa Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 18 years ago
- c326f7e Switch AddLineNumbers to hack on a rewritebuffer instead of on a by Chris Lattner · 18 years ago
- e7d696e In html::EscapeText, instead of going through the rewriter with by Chris Lattner · 18 years ago
- 05e5310 switch AddLineNumber to use a SmallString instead of sstream. This by Chris Lattner · 18 years ago
- 7d6219f For HTML diagnostics, output more information about a bug report. by Ted Kremenek · 18 years ago
- f17d575 Micro-optimization: Don't use ostringstream when using a C-string literal by Ted Kremenek · 18 years ago
- 5f7ece0 Don't expand tabs in EscapeText, but rather expand them when writing out by Ted Kremenek · 18 years ago
- b1f773c When substituting tabs during HTMLification, only add " " when we are by Ted Kremenek · 18 years ago
- a9077ab Add ids for line numbers, allowing us to jump to arbitrary line numbers within by Ted Kremenek · 18 years ago
- bd1bd88 Tweak message bubble color (gold) by Ted Kremenek · 18 years ago