HomeSort by relevance Sort by last modified time
    Searched refs:CXC (Results 1 - 2 of 2) sorted by null

  /external/clang/tools/libclang/
CXComment.h 39 static inline const comments::Comment *getASTNode(CXComment CXC) {
40 return static_cast<const comments::Comment *>(CXC.ASTNode);
44 static inline const T *getASTNodeAs(CXComment CXC) {
45 const comments::Comment *C = getASTNode(CXC);
52 static inline ASTContext &getASTContext(CXComment CXC) {
53 return cxtu::getASTUnit(CXC.TranslationUnit)->getASTContext();
56 static inline comments::CommandTraits &getCommandTraits(CXComment CXC) {
57 return getASTContext(CXC).getCommentCommandTraits();
CXComment.cpp 45 enum CXCommentKind clang_Comment_getKind(CXComment CXC) {
46 const Comment *C = getASTNode(CXC);
93 unsigned clang_Comment_getNumChildren(CXComment CXC) {
94 const Comment *C = getASTNode(CXC);
101 CXComment clang_Comment_getChild(CXComment CXC, unsigned ChildIdx) {
102 const Comment *C = getASTNode(CXC);
106 return createCXComment(*(C->child_begin() + ChildIdx), CXC.TranslationUnit);
109 unsigned clang_Comment_isWhitespace(CXComment CXC) {
110 const Comment *C = getASTNode(CXC);
123 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment CXC) {
    [all...]

Completed in 1153 milliseconds