]> granicus.if.org Git - clang/history - include/clang/Basic/SourceManager.h
Header guard canonicalization, clang part.
[clang] / include / clang / Basic / SourceManager.h
2014-08-13 Benjamin KramerHeader guard canonicalization, clang part.
2014-07-21 James DennettTrivial doc fixes: add missing whitespace, and s/overri...
2014-06-27 David BlaikieRemove 'const' from MemoryBuffers used through the...
2014-06-16 Alp TokerFix typos
2014-05-21 Alp TokerSourceManager: Use setMainFileID() consistently
2014-05-16 Alp TokerRename SourceManager::createFileIDForMemBuffer()
2014-05-06 Craig Topper[C++11] Use 'nullptr'
2014-04-16 Chandler CarruthHopefully avoid a warning on some GCCs (but not all...
2014-04-15 Chandler Carruth[Allocator] Make the ContentCache object actually carry...
2014-03-09 Ahmed Charles[C++11] Replace OwningPtr include with <memory>.
2014-03-07 Ahmed CharlesReplace OwningPtr with std::unique_ptr.
2013-11-24 James DennettFix a typo: "SLocEnty" should read "SLocEntry".
2013-09-27 Benjamin KramerSourceManager: Open code isInMainFile.
2013-08-22 Eli FriedmanSplit isFromMainFile into two functions.
2013-06-07 Argyrios KyrtzidisThread the 'Invalid' out parameter through SourceManage...
2013-05-16 Argyrios Kyrtzidis[Lexer] Improve Lexer::getSourceText() when the given...
2013-05-07 Argyrios KyrtzidisHave SourceManager::getLocForEndOfFile() point at the...
2013-04-13 Argyrios KyrtzidisIntroduce SourceManager::getDecomposedIncludedLoc,...
2013-02-27 Ted KremenekRefine SourceManager's isBeforeInTranslationUnit()...
2013-02-22 Benjamin KramerReplace some typically large vectors with SmallVector.
2013-02-17 James DennettDocumentation cleanup: fix a typo ("////" for "///...
2013-01-28 Douglas GregorBack out r173689. It doesn't matter when we're building...
2013-01-28 Douglas GregorNote that SrcMgr::SLocEntry's are POD-like, so SmallVec...
2013-01-13 Michael J. SpencerFix LLP64 build.
2013-01-12 Dmitri GribenkoRemove useless 'llvm::' qualifier from names like Strin...
2013-01-12 Matt Beaumont-GayFix -Wunused-comparison for comparisons in arguments...
2012-12-05 Richard SmithSimplify slightly by seperating out the responsibility...
2012-12-05 Richard SmithSimplify diagnostic emission. No functionality change...
2012-12-04 Chandler CarruthSort #include lines for all files under include/...
2012-11-30 Douglas GregorRename ModuleBuildPath -> ModuleBuildStack. Thanks...
2012-11-30 Douglas GregorWhen we're emitting a diagnostic with a source location...
2012-11-30 Douglas GregorWhen an error occurs while building a module on demand...
2012-11-14 Richard SmithAdd -cc1 option -fno-diagnostics-use-presumed-location...
2012-11-09 Argyrios KyrtzidisAdd a FileCharacteristic parameter to SourceManager...
2012-10-20 Argyrios KyrtzidisWhen associating file ranges of macro arguments with...
2012-09-22 Dmitri GribenkoRemove superfluous \namespace command.
2012-09-18 Craig TopperMark unimplemented copy constructors and copy assignmen...
2012-07-29 Benjamin KramerMicrooptimize isOffsetInFileID a bit.
2012-07-23 Sylvestre LedruFix a typo (the the => the)
2012-07-11 Argyrios KyrtzidisIntroduce a flag in SourceManager to treat non-system...
2012-07-10 Jordan RoseAllow line numbers on -verify directives.
2012-07-02 James DennettDocumentation cleanup:
2012-07-02 James DennettDocumentation cleanup: reformatting/fixing up file...
2012-06-20 James DennettDocumentation cleanup:
2012-06-20 Dmitri GribenkoStructured comment parsing, first step.
2012-06-19 Meador IngeRevert predefined decl tracking.
2012-06-18 Matt Beaumont-GayMove a few static functions from DiagnosticRenderer...
2012-06-15 James DennettDocumentation cleanup:
2012-06-13 James DennettMore doxygen/documentation cleanups.
2012-06-06 Jordan RoseAdd pedantic warning -Wempty-translation-unit (C11...
2012-05-03 Argyrios Kyrtzidis[PCH] When validating that the files coming from PCH...
2012-02-20 Argyrios Kyrtzidis[PCH] Recover gracefully if the ASTReader detects that...
2012-02-20 Dylan NoblesmithBasic: import IntrusiveRefCntPtr<> into clang namespace
2012-01-27 Douglas GregorIntroduce module attributes into the module map grammar...
2012-01-06 Matt Beaumont-GaySuppress -Wunused-value within macros from system headers.
2012-01-05 Argyrios KyrtzidisWhen loading an AST file, set SourceManager::MainFileID...
2012-01-05 Argyrios KyrtzidisSanity checks in SourceManager::getFileEntryForID(...
2011-12-21 Argyrios KyrtzidisFix bugs in SourceManager::computeMacroArgsCache()...
2011-12-21 Argyrios KyrtzidisFor SourceManager::isBeforeInTranslationUnit(), have...
2011-12-09 Matt Beaumont-GayFix up doxyments (\arg vs \p).
2011-11-19 Douglas GregorAdd missing initialization in the ContentCache. Serious...
2011-11-16 Douglas GregorImplement (de-)serialization of the buffer contents...
2011-11-04 Argyrios KyrtzidisCheck for invalid after calling getSLocEntry, for safety.
2011-10-31 Axel NaumannAdd possibility to specify an include location for...
2011-10-31 Argyrios KyrtzidisIntroduce SourceManager::isLocalFileID/isLoadedFileID...
2011-10-25 Argyrios Kyrtzidis[PCH] When visiting preprocessed entities, make it...
2011-10-20 David BlaikieFix all 80 col violations in include/clang/Basic, plus...
2011-10-18 Argyrios Kyrtzidis[libclang] Make sure we do a correct invalid check...
2011-10-12 Argyrios KyrtzidisIntroduce SourceManager::getFileLoc which returns a...
2011-09-27 Argyrios KyrtzidisBreak SourceManager::translateFileLineCol into translat...
2011-09-26 Argyrios KyrtzidisAssociate the macro arguments location map with a FileI...
2011-09-26 Argyrios KyrtzidisRemove SourceManager::getLocation().
2011-09-25 David BlaikieRename Diagnostic to DiagnosticsEngine as per issue...
2011-09-19 Argyrios Kyrtzidis[libclang] When getting a source location from a file...
2011-09-19 Argyrios KyrtzidisBreak SourceManager::translateFileLineCol into translat...
2011-09-19 Argyrios KyrtzidisIntroduce isLoadedSourceLocation() and isLocalSourceLoc...
2011-09-19 Argyrios Kyrtzidis[PCH] Preload the PreloadSLocEntries through the Source...
2011-09-19 Argyrios KyrtzidisFor SourceManager::isBeforeInTranslationUnit, when...
2011-09-08 Eric ChristopherRearrange comment slightly for Bill.
2011-09-08 Eric ChristopherAdd a block comment explaining how the different source...
2011-09-01 Argyrios Kyrtzidis[arcmt] Fix test/ARCMT/remove-statements.m regression...
2011-08-23 Argyrios KyrtzidisRemove one SourceManager::isInFileID overload and use...
2011-08-23 Argyrios KyrtzidisAmend r138129 (reduction of SLocEntries) which introduc...
2011-08-23 Argyrios KyrtzidisIntroduce SourceManager::isInSLocAddrSpace and use...
2011-08-23 Argyrios KyrtzidisRename SourceManager::isBeforeInSourceLocationOffset...
2011-08-23 Argyrios KyrtzidisMove a couple of SourceManager functions out-of-line...
2011-08-21 Argyrios KyrtzidisFix gcc build.
2011-08-21 Argyrios KyrtzidisBoost the efficiency of SourceManager::getMacroArgExpan...
2011-08-19 Argyrios KyrtzidisFor assigning SourceLocations to macro arg tokens,...
2011-08-19 Argyrios KyrtzidisRefactor common functionality into SourceManager::getFi...
2011-08-17 Argyrios KyrtzidisIntroduce SourceManager::getMacroArgExpandedLocation...
2011-08-17 Argyrios KyrtzidisMake SourceManager::isBeforeInTranslationUnit handle...
2011-07-26 Ted Kremenekclang_getCXTUResourceUsage: Report memory used by data...
2011-07-26 Chandler CarruthClean up as many of the comments in Basic I can find...
2011-07-26 Chandler CarruthMigrate 'Instantiation' data and API bits of SLocEntry...
2011-07-26 Chandler CarruthConvert InstantiationInfo and much of the related code...
2011-07-26 Chandler CarruthRename create(MacroArg)InstantiationLoc to create(Macro...
2011-07-26 Chandler CarruthRename SourceManager (and InstantiationInfo) isMacroArg...
2011-07-25 Chandler CarruthRename getInstantiationLineNumber to getExpansionLineNu...
2011-07-25 Chandler CarruthRepair some indentation I missed in my previous commit.
next