- f610267 Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 14 years ago
- e6e48b1 Move the data that corresponds to the definition of a protocol into a by Douglas Gregor · 14 years ago
- deafd0b Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 14 years ago
- dc9166c Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 14 years ago
- c0ac7d6 Move the definition-specific data of ObjCInterfaceDecl into a by Douglas Gregor · 14 years ago
- 407d1f9 Introduce proper spacing after the Objective-C parameter qualifiers by Douglas Gregor · 14 years ago
- 03ba188 Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather than a class by Douglas Gregor · 14 years ago
- 2e10cf9 Add a printing policy flag to suppress printing "<anonymous>::" prior by Douglas Gregor · 14 years ago
- e5c79d5 Provide result types for code completions that describe built-in by Douglas Gregor · 14 years ago
- 4205fef Add code completions for C++0x expressions by Douglas Gregor · 14 years ago
- d793e7c Don't format the code completion for parameters of block literal by Douglas Gregor · 14 years ago
- 98ea7f6 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 14 years ago
- 2e657ff Added CXAvailability_NotAccessible to indicate that a declaration is available, but not accessible from the current code completion context. by Erik Verbruggen · 14 years ago
- 12afd70 [libclang] Introduce CXCursor_CXXAccessSpecifier for C++'s public:/private:/protected: specifiers. by Argyrios Kyrtzidis · 14 years ago
- 75acd92 Only print _Bool as 'bool' when 'bool' is defined as an object-like by Douglas Gregor · 14 years ago
- c0b0728 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 14 years ago
- aa347f9 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 14 years ago
- 83d382b Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
- 2bd0401 Change all references of type ExprTy to Expr and get rid of the typedefs. by Richard Trieu · 14 years ago
- 97d744b objective-c: this patch (re)introduces objective-c's default property by Fariborz Jahanian · 14 years ago
- 3a039e3 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 14 years ago
- 8d382dc Restore patch I reversed in r138040. Known buildbot failures are resolved. by Fariborz Jahanian · 14 years ago
- 9a3b269 Revers r138040. Need to look at a few buildbot failures. by Fariborz Jahanian · 14 years ago
- d6d866d objective-c: Bring objective-c handling of decl context by Fariborz Jahanian · 14 years ago
- 75f6cd2 [libclang] Support code-completion inside macro arguments. by Argyrios Kyrtzidis · 14 years ago
- 5939b16 Do l-value conversion, etc., on a switch condition expression in by John McCall · 14 years ago
- 4ecb720 Add code completion to produce "else" blocks after an "if" by Douglas Gregor · 14 years ago
- 0c50531 When producing code completion results for variadic macros, fold the by Douglas Gregor · 14 years ago
- 8f08d74 Add the various parameter-passing keywords for Distributed Objects by Douglas Gregor · 14 years ago
- 2c595ad When performing code completion after at @interface, allow both by Douglas Gregor · 14 years ago
- 632500c Eliminate a bunch of temporary strings. by Benjamin Kramer · 14 years ago
- ea77740 Add new libclang API, clang_codeCompleteGetObjCSelector(), which by Douglas Gregor · 14 years ago
- c1679ec Added clang_getCursorReferenceNameRange to libclang to to retrieve parts of by Douglas Gregor · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- 63745d5 New libclang API to expose container type for code completion, from by Douglas Gregor · 14 years ago
- 2132584 Introduce a new libclang aPI function, by Douglas Gregor · 14 years ago
- 31168b0 Automatic Reference Counting. by John McCall · 14 years ago
- 1c2d29e Add code completetion code for the new 'atomic' attribute by Fariborz Jahanian · 14 years ago
- 4cd6596 Expose @synthesize and @dynamic via their own cursor kinds in by Douglas Gregor · 14 years ago
- 857bcda Tweak code completions for Objective-C Key-Value Observing. The by Douglas Gregor · 14 years ago
- 9514714 When providing code completions for an Objective-C property access, by Douglas Gregor · 14 years ago
- d4a8ced When adding KVC code completions, keep track of all of the selectors by Douglas Gregor · 14 years ago
- 6c7a9ee When providing code completions of ivar names for a property by Douglas Gregor · 15 years ago
- 331faa0 When producing code completion results for the Objective-C property by Douglas Gregor · 15 years ago
- dda56e4 Support for C++11 (non-template) alias declarations. by Richard Smith · 15 years ago
- af670a8 When determining the "usage" type of a declaration for the purposes of code by Douglas Gregor · 15 years ago
- c05f657 Don't suggest dynamic_cast or typeid as code completion results when by Douglas Gregor · 15 years ago
- 0129629 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 15 years ago
- 8aef596 Make helpers static. by Benjamin Kramer · 15 years ago
- 30482bc Implement the C++0x deduced 'auto' feature. by Richard Smith · 15 years ago
- 3a69eaf When code-completing a case statement for a switch on a value of by Douglas Gregor · 15 years ago
- af2a6ae Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 15 years ago
- 0e5d72f I will not hold on to temporary StringRefs. by Douglas Gregor · 15 years ago
- 669a25a Implement code completion results for the Objective-C Key-Value Coding by Douglas Gregor · 15 years ago
- b5f1e46 When trying to provide a code completion item for a call to "super" in by Douglas Gregor · 15 years ago
- 24bbc46 Teach code completion to cope with block types written without a by Douglas Gregor · 15 years ago
- f34a6f0 Implement a special code-completion pattern for "IBAction". Fixes by Douglas Gregor · 15 years ago
- 8003924 When code-completing within a list of declaration specifiers, by Douglas Gregor · 15 years ago
- bcbf46c Create a special allocator class for code completion, so that all of by Douglas Gregor · 15 years ago
- 304f9b0 Provide constant strings for certain common code completion strings, by Douglas Gregor · 15 years ago
- b278aaf Allocate CodeCompletionString and all of its components in a by Douglas Gregor · 15 years ago
- 1d79265 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Alexis Hunt · 15 years ago
- 87e9275 Fix a major inconsistency in the representation of Objective-C by Douglas Gregor · 15 years ago
- 6d81063 Added missing IgnoreParens(). by Abramo Bagnara · 15 years ago
- 924a8f3 Added ParenType type node. by Abramo Bagnara · 15 years ago
- b888acf Eliminate duplicate code completions for properties. by Douglas Gregor · 15 years ago
- a3b23b0 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 15 years ago
- d583da0 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 15 years ago
- b4a7c03 Do not produce "purely informative" code completion results for by Douglas Gregor · 15 years ago
- 928479e Revert the fix for PR8013. by Douglas Gregor · 15 years ago
- 8f225bb Handle overload resolution when calling an overloaded function set by Douglas Gregor · 15 years ago
- 2927c0c Teach code completion not to include out-of-line declarations and by Douglas Gregor · 15 years ago
- dc520b0 If an instance method messages is sending to an expression of type Class, by Douglas Gregor · 15 years ago
- 05fcf84 Teach code completion to provide property results when the property by Douglas Gregor · 15 years ago
- c769d6e Fix the translation of the PCC_ForInit code-completion context for by Douglas Gregor · 15 years ago
- 8e3e874 Introduce code completion results for Objective-C methods, both when by Douglas Gregor · 15 years ago
- 1b035bb When providing code completions of Objective-C method declarations by Douglas Gregor · 15 years ago
- 392a84b Eliminate the use of ObjCSuperExpr in code completion. by Douglas Gregor · 15 years ago
- 36e3b5c Switch c-index-test from clang_codeComplete() over to by Douglas Gregor · 15 years ago
- 8ed5b77 Fix the mapping of vertical-space cursor kinds to produce a newline, by Douglas Gregor · 15 years ago
- af25cfa When providing a block literal as a code completion for a by Douglas Gregor · 15 years ago
- 0ac4138 Synchronize globally-cached code completion results with the results by Douglas Gregor · 15 years ago
- 0212fd7 Add code completion for C++ constructors wherever we see the class (or by Douglas Gregor · 15 years ago
- 7466127 When providing code completions for an argument in an Objective-C by Douglas Gregor · 15 years ago
- f86e4da Refactor code completion for expressions that occur as arguments in by Douglas Gregor · 15 years ago
- 5fb901d Code completion has no reason to prefer values over types, especially by Douglas Gregor · 15 years ago
- 50832e0 Slight refactoring in code-completion results generation, placing the by Douglas Gregor · 15 years ago
- db5c09a Get rid of the lame attempt to prioritize "void" functions at by Douglas Gregor · 15 years ago
- 9dcf58a Tweak priorities for some types and macros: by Douglas Gregor · 15 years ago
- eda7e54 Continue parsing more postfix expressions, even after semantic by Douglas Gregor · 15 years ago
- 1154e27 Don't add two code-completion results for the same selector; it by Douglas Gregor · 15 years ago
- f37c949 When collecting Objective-C methods for message send completions, be by Douglas Gregor · 15 years ago
- bfcea8b Implement code completion for Objective-C class message sends that are by Douglas Gregor · 15 years ago
- ed0b69d Improve code completion for Objective-C message sends when the opening by Douglas Gregor · 15 years ago
- 5e35d59 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 15 years ago
- f3af311 Teach libclang to walk the base and member initializers of a by Douglas Gregor · 15 years ago
- 67da50e When providing a completion for a function/method parameter of block by Douglas Gregor · 15 years ago
- 9795b39 zap dead code. by Chris Lattner · 15 years ago
- 09c0eb1 Synchronize code-completion cursor kinds with indexing cursor by Douglas Gregor · 15 years ago
- 0ef508d Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 15 years ago