aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaCodeComplete.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-01-31When code completing in a statement, parenthesized expression, orDouglas Gregor1-1/+9
2013-01-31Allow the computation of the base priority for a declaration code completion ...Douglas Gregor1-19/+65
2013-01-30Add "instancetype" as a code completion result for the return type ofDouglas Gregor1-0/+5
2013-01-30The instance methods of the root class of an Objective-C hieararchyDouglas Gregor1-2/+6
2013-01-23Use 'const Decl *' throughout code completion in SemaDmitri Gribenko1-116/+125
2013-01-16Rework the traversal of Objective-C categories and extensions toDouglas Gregor1-27/+48
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko1-1/+1
2013-01-11Constify parameter of clang::getCursorKindForDeclDmitri Gribenko1-2/+2
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith1-5/+5
2012-12-20Revert r170500. It over-zealously converted *ALL* things named Attributes, wh...Bill Wendling1-19/+19
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling1-19/+19
2012-12-19Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe...David Blaikie1-3/+4
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-6/+6
2012-10-18From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.Axel Naumann1-3/+3
2012-10-09If a macro has been #undef'd in a precompiled header, we still need toDouglas Gregor1-14/+12
2012-10-05[libclang] Introduce CXCursor_ModuleImportDecl cursor kind, used for a moduleArgyrios Kyrtzidis1-0/+3
2012-09-27[libclang] Always report a CXCursor_MacroDefinition for code-completionArgyrios Kyrtzidis1-1/+3
2012-09-26[libclang] Remove the ParentKind cursor kind from code-completion results.Argyrios Kyrtzidis1-1/+0
2012-09-06Remove unused typedefs. Found by gcc48.Roman Divacky1-12/+0
2012-08-31Improved MSVC __interface support by adding first class support for it, inste...Joao Matos1-4/+9
2012-08-29Keep history of macro definitions and #undefsAlexander Kornienko1-1/+5
2012-08-23Fix a bunch of -Wdocumentation warnings.Dmitri Gribenko1-1/+1
2012-08-21Screw around with ObjCRuntime some more, changing theJohn McCall1-2/+1
2012-08-20Code-complete 'weak' for properties under ARC-with-weak-references (or GC)Jordan Rose1-10/+14
2012-08-17Make the spacing of the code completion result for NSDictionaryDouglas Gregor1-1/+0
2012-08-11Attaching comments to declarations: find comment attached to any redeclarationDmitri Gribenko1-1/+1
2012-08-10Provide isConst/Volatile on CXXMethodDecl.David Blaikie1-3/+3
2012-07-17Remove unnecessary spacing around Objective-C object literal codeDouglas Gregor1-9/+3
2012-07-02Add a new libclang completion API to get brief documentation comment that isDmitri Gribenko1-4/+14
2012-06-30Add support for the C11 _Alignof keyword.Jordan Rose1-0/+13
2012-06-17Documentation cleanup: fix two typos, rief -> brief and Descripts -> DescribesJames Dennett1-2/+2
2012-06-15[completion] Add completions for @"..." and @(...), and tidy up @[] and @{}.Jordan Rose1-2/+20
2012-06-14Still more Doxygen documentation fixes:James Dennett1-3/+0
2012-06-14This makes SemaCodeComplete.cpp more Doxygen-friendly by changing theJames Dennett1-30/+31
2012-06-12When code completion walks the members of a protocol or interface,Douglas Gregor1-13/+45
2012-06-08Convert comments to proper Doxygen comments.Dmitri Gribenko1-3/+3
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie1-12/+12
2012-05-05Make BuiltinType::getName return a StringRef and introduce BuiltinType::getNa...Argyrios Kyrtzidis1-1/+1
2012-04-30clang_getCursorLexicalParent should return a translation unit cursor for decl...Douglas Gregor1-0/+1
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie1-16/+16
2012-04-10Include the Objective-C parameter- and return-passing qualifiers whenDouglas Gregor1-5/+15
2012-04-10Don't include the ':' following code-completion suggestions forDouglas Gregor1-3/+6
2012-04-10[code-complete] Introduce CodeCompletionTUInfo which will be used for cachingArgyrios Kyrtzidis1-37/+114
2012-04-03Remove more redundant lookups. Add a new "all_lookups_iterator" which providesNick Lewycky1-9/+1
2012-03-27Introduce a new libclang API to determine the parent context of a codeDouglas Gregor1-34/+22
2012-03-26Move CodeCompletionBuilder's chunk adding methods out of line.Benjamin Kramer1-38/+31
2012-03-13[Sema] Prefer to use ObjCInterfaceDecl's protocol_begin()/protocol_end() iter...Argyrios Kyrtzidis1-3/+2
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie1-71/+71
2012-03-06Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek1-0/+20
2012-02-25ArrayRef'ize various functions in the AST/Parser/Sema.Ahmed Charles1-19/+17