Age | Commit message (Expand) | Author |
2008-04-23 | fix a rewriter crash on zero length files. | Chris Lattner |
2008-04-20 | html::EscapeText (using the Rewriter) now replaces tabs by default. | Ted Kremenek |
2008-04-18 | Provide a version of html::HighlightMacros that takes a Preprocessor&. | Ted Kremenek |
2008-04-17 | class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its ... | Ted Kremenek |
2008-04-16 | Make HighlightRange correctly handle multi-line ranges. This causes us to | Chris Lattner |
2008-04-16 | add a new HighlightRange API, it doesn't handle multiline ranges | Chris Lattner |
2008-04-16 | split syntax highlighting of macros from keywords and comments, | Chris Lattner |
2008-04-16 | Add a mode of hackily syntax highlighting comments. This has a number of | Chris Lattner |
2008-04-16 | In html::EscapeText, instead of going through the rewriter with | Chris Lattner |
2008-04-16 | make a method public. | Chris Lattner |
2008-04-16 | speed up -emit-html in a release build by 6.5% by avoiding std::string. | Chris Lattner |
2008-04-14 | Add a bunch of comments, move RewriteRope::MakeRopeString out of line. | Chris Lattner |
2008-04-14 | move a ton of code out of line, from RewriteRope.h -> RewriteRope.cpp | Chris Lattner |
2008-04-14 | remove ifdefs | Chris Lattner |
2008-04-14 | Change the RewriteRope::Chunks data structure from an std::list into | Chris Lattner |
2008-04-12 | Default argument cleanups and minor improvements, patch by | Chris Lattner |
2008-04-12 | move the DeltaTree implementation out of line, remove debugging printfs etc. | Chris Lattner |
2008-04-12 | remove ifdefs | Chris Lattner |
2008-04-12 | Do an initial hack at replacing one of the incredibly inefficient | Chris Lattner |
2008-04-08 | Don't expand tabs in EscapeText, but rather expand them when writing out | Ted Kremenek |
2008-04-06 | don't dereference hte end iterator when inserting at end of buffer. | Chris Lattner |
2008-03-27 | Add html::EscapeText for std::string; use this function to escape text in mes... | Ted Kremenek |
2008-03-19 | Minor speed tweak per Chris's suggestion: use &S[0] instead of S.c_str(). | Ted Kremenek |
2008-03-19 | Integrated some of Chris's comments; check for an empty string in InsertStrXXX() | Ted Kremenek |
2008-03-19 | Moved generation of html header/footer with builtin CSS to the rewriter library. | Ted Kremenek |
2008-03-19 | Added InsertStrXXX/InsertCStrXXX methods to the Rewriter to provide a simpler | Ted Kremenek |
2008-03-19 | More cleanups to HTML rewriter API: remove the InsertTag method; was too comp... | Ted Kremenek |
2008-03-18 | More HTML rewriter cleanups. Preliminary CSS support in code pretty-printing. | Ted Kremenek |
2008-03-18 | Some cleanups to the HTMLRewrite API. Added support for printing out line | Ted Kremenek |
2008-03-18 | Modified "InsertTag" (HTML rewriter) to have an optional "OutermostTag" flag to | Ted Kremenek |
2008-03-18 | Added the beginning of a set of rewriter functions for pretty-printing source | Ted Kremenek |
2008-03-18 | Added variant of "InsertText" in the Rewriter to support inserting text both | Ted Kremenek |
2008-03-18 | Added method "getSourceMgr" to class Rewriter. | Ted Kremenek |
2008-03-10 | Add some missing #includes for GCC mainline, patch by Shantonu Sen! | Chris Lattner |
2008-01-31 | add some helper methods for removing and replacing text, this makes the | Chris Lattner |
2008-01-31 | Make rewriter::inserttext return a bool to indicate if it failed. | Chris Lattner |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-11-08 | add a getAtOffset() member to simplify some code. | Chris Lattner |
2007-11-08 | add a fixme. | Chris Lattner |
2007-11-08 | significantly simplify the implementation of RewriteRope by changing the | Chris Lattner |
2007-11-08 | improve MakeRopeString to avoid doing a malloc for every 2-character string | Chris Lattner |
2007-11-08 | Simplify interface to MakeRopeString. | Chris Lattner |
2007-11-08 | Add a new RewriteRope data structure which is a smarter way to represent the ... | Chris Lattner |
2007-11-08 | abstract out buffer type a bit better | Chris Lattner |
2007-10-17 | Add new API to rewrite one stmt/expr with another. | Chris Lattner |
2007-10-16 | Add a new Rewriter::getRangeSize method. | Chris Lattner |
2007-10-16 | Push the rewriter forward a bit more. Now it rewrites | Chris Lattner |
2007-10-13 | another step forward in rewriter stuff. This still has | Chris Lattner |
2007-10-12 | add comments. | Chris Lattner |
2007-10-11 | Push the rewriting APIs along. Build a trivial client that replaces tabs | Chris Lattner |