index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
tools
/
libclang
/
CXCursor.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Replace TypeLoc llvm::cast support to be well-defined.
David Blaikie
2013-02-18
1
-1
/
+1
*
libclang: remove reinterpret_casts by using SourceLocation::getPtrEncoding
Dmitri Gribenko
2013-02-16
1
-14
/
+14
*
libclang: remove reinterpret_casts by using SourceLocation::getFromPtrEncoding
Dmitri Gribenko
2013-02-14
1
-24
/
+12
*
Allow the computation of the base priority for a declaration code completion ...
Douglas Gregor
2013-01-31
1
-1
/
+1
*
libclang: factor out the frequent pattern static_cast<ASTUnit *>(TU->TUData)
Dmitri Gribenko
2013-01-26
1
-1
/
+1
*
libclang: make getCursorParentDecl() return 'const Decl *'
Dmitri Gribenko
2013-01-26
1
-2
/
+2
*
libclang: change getCursorAttr() to return 'const Attr *'
Dmitri Gribenko
2013-01-26
1
-2
/
+2
*
libclang: make getCursorStmt() and getCursorExpr() return const pointers
Dmitri Gribenko
2013-01-26
1
-6
/
+7
*
libclang: change return type of getCursorDecl() to 'const Decl *'
Dmitri Gribenko
2013-01-23
1
-10
/
+10
*
Explicitly cast away the const-ness instead of doing it implicitly.
Bill Wendling
2013-01-23
1
-4
/
+4
*
libclang: remove a few const_casts
Dmitri Gribenko
2013-01-14
1
-3
/
+3
*
Constify argument of Preprocessor::getMacroInfoHistory and propagate to
Dmitri Gribenko
2013-01-14
1
-1
/
+1
*
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2013-01-12
1
-1
/
+1
*
libclang: remove unneeded casts
Dmitri Gribenko
2013-01-11
1
-9
/
+9
*
libclang: change CXCursor to store 'const void *' pointers for
Dmitri Gribenko
2013-01-11
1
-33
/
+36
*
libclang: use getCursorTU and getCursorASTUnit instead of explicit casts
Dmitri Gribenko
2013-01-11
1
-1
/
+1
*
[libclang] When getting the cursor for an identifier inside a macro definitio...
Argyrios Kyrtzidis
2013-01-07
1
-3
/
+22
*
Sort #include lines for tools/...
Chandler Carruth
2012-12-04
1
-3
/
+3
*
[libclang] Introduce clang_Cursor_getReceiverType which returns the CXType for
Argyrios Kyrtzidis
2012-11-01
1
-0
/
+13
*
Move the logic that searches for overridden methods from libclang to
Argyrios Kyrtzidis
2012-10-09
1
-180
/
+6
*
PR13811: Add a FunctionParmPackExpr node to handle references to function
Richard Smith
2012-09-12
1
-0
/
+1
*
Revert r163099 per chandlerc's request.
Joao Matos
2012-09-04
1
-4
/
+0
*
Added a new cursor for SEHLeaveStmt to libclang.
Joao Matos
2012-09-03
1
-0
/
+4
*
[ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt.
Chad Rosier
2012-08-25
1
-2
/
+2
*
[libclang] Introduce clang_Cursor_isDynamicCall which,
Argyrios Kyrtzidis
2012-07-02
1
-1
/
+26
*
Add a new libclang completion API to get brief documentation comment that is
Dmitri Gribenko
2012-07-02
1
-2
/
+4
*
Etch out the code path for MS-style inline assembly.
Chad Rosier
2012-06-11
1
-0
/
+4
*
[AST/libclang] Speed up clang_getOverriddenCursors() considerably by reservin...
Argyrios Kyrtzidis
2012-05-09
1
-21
/
+81
*
Fix C versus C++ linkage issue.
Ted Kremenek
2012-04-30
1
-1
/
+3
*
Reduce malloc() traffic of clang_getOverridenCursors() by using a pool of Sma...
Ted Kremenek
2012-04-30
1
-2
/
+101
*
Implements boxed expressions for Objective-C. <rdar://problem/10194391>
Patrick Beard
2012-04-19
1
-1
/
+1
*
Add an AttributedStmt type to represent a statement with C++11 attributes
Richard Smith
2012-04-14
1
-5
/
+9
*
[libclang] Introduce a couple of functions to make it convenient
Argyrios Kyrtzidis
2012-04-11
1
-0
/
+29
*
[libclang] For clang_getOverriddenCursors make sure to report overridden objc...
Argyrios Kyrtzidis
2012-04-10
1
-16
/
+36
*
[code-complete] Introduce CodeCompletionTUInfo which will be used for caching
Argyrios Kyrtzidis
2012-04-10
1
-6
/
+4
*
Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to
John McCall
2012-03-10
1
-1
/
+0
*
[libclang] Enhance clang_getOverriddenCursors.
Argyrios Kyrtzidis
2012-03-08
1
-19
/
+44
*
AST representation for user-defined literals, plus just enough of semantic
Richard Smith
2012-03-07
1
-0
/
+1
*
And libclang cursor/indexing support for new Objective-C NSArray/NSDictionary...
Ted Kremenek
2012-03-06
1
-1
/
+9
*
Implement a new type trait __is_trivially_constructible(T, Args...)
Douglas Gregor
2012-02-24
1
-0
/
+1
*
Implement indexing support for lambdas in libclang (both kinds), as
Douglas Gregor
2012-02-15
1
-1
/
+21
*
Introduce basic ASTs for lambda expressions. This covers:
Douglas Gregor
2012-02-07
1
-0
/
+1
*
[libclang] Make clang_getCursorCompletionString not depend on the ASTUnit having
Argyrios Kyrtzidis
2012-01-17
1
-18
/
+16
*
[libclang] Add defensive checks to make sure we don't try to dereference
Argyrios Kyrtzidis
2011-12-10
1
-2
/
+1
*
[libclang] Make sure we don't try to handle a CXCursor_NoDeclFound
Argyrios Kyrtzidis
2011-12-09
1
-2
/
+4
*
[libclang] API enhancements by Joe Groff!
Argyrios Kyrtzidis
2011-12-06
1
-0
/
+1
*
[libclang] Indexing API: Support C++ symbols.
Argyrios Kyrtzidis
2011-11-22
1
-2
/
+2
*
[libclang] Indexing API:
Argyrios Kyrtzidis
2011-11-18
1
-6
/
+7
*
Change the AST representation of operations on Objective-C
John McCall
2011-11-06
1
-1
/
+10
*
Implement support for dependent Microsoft __if_exists/__if_not_exists
Douglas Gregor
2011-10-25
1
-1
/
+6
[next]