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 38 inline const comments::Comment *getASTNode(CXComment CXC) {
39 return static_cast<const comments::Comment *>(CXC.ASTNode);
43 inline const T *getASTNodeAs(CXComment CXC) {
44 const comments::Comment *C = getASTNode(CXC);
51 inline ASTContext &getASTContext(CXComment CXC) {
52 return cxtu::getASTUnit(CXC.TranslationUnit)->getASTContext();
55 inline comments::CommandTraits &getCommandTraits(CXComment CXC) {
56 return getASTContext(CXC).getCommentCommandTraits();
CXComment.cpp 37 enum CXCommentKind clang_Comment_getKind(CXComment CXC) {
38 const Comment *C = getASTNode(CXC);
85 unsigned clang_Comment_getNumChildren(CXComment CXC) {
86 const Comment *C = getASTNode(CXC);
93 CXComment clang_Comment_getChild(CXComment CXC, unsigned ChildIdx) {
94 const Comment *C = getASTNode(CXC);
98 return createCXComment(*(C->child_begin() + ChildIdx), CXC.TranslationUnit);
101 unsigned clang_Comment_isWhitespace(CXComment CXC) {
102 const Comment *C = getASTNode(CXC);
115 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment CXC) {
    [all...]

Completed in 57 milliseconds