Lines Matching refs:BCC
220 const BlockCommandComment *BCC = getASTNodeAs<BlockCommandComment>(CXC); in clang_BlockCommandComment_getCommandName() local
221 if (!BCC) in clang_BlockCommandComment_getCommandName()
225 return cxstring::createRef(BCC->getCommandName(Traits)); in clang_BlockCommandComment_getCommandName()
229 const BlockCommandComment *BCC = getASTNodeAs<BlockCommandComment>(CXC); in clang_BlockCommandComment_getNumArgs() local
230 if (!BCC) in clang_BlockCommandComment_getNumArgs()
233 return BCC->getNumArgs(); in clang_BlockCommandComment_getNumArgs()
238 const BlockCommandComment *BCC = getASTNodeAs<BlockCommandComment>(CXC); in clang_BlockCommandComment_getArgText() local
239 if (!BCC || ArgIdx >= BCC->getNumArgs()) in clang_BlockCommandComment_getArgText()
242 return cxstring::createRef(BCC->getArgText(ArgIdx)); in clang_BlockCommandComment_getArgText()
246 const BlockCommandComment *BCC = getASTNodeAs<BlockCommandComment>(CXC); in clang_BlockCommandComment_getParagraph() local
247 if (!BCC) in clang_BlockCommandComment_getParagraph()
250 return createCXComment(BCC->getParagraph(), CXC.TranslationUnit); in clang_BlockCommandComment_getParagraph()
445 const BlockCommandComment *BCC = cast<BlockCommandComment>(Child); in FullCommentParts() local
446 const CommandInfo *Info = Traits.getCommandInfo(BCC->getCommandID()); in FullCommentParts()
448 Brief = BCC; in FullCommentParts()
452 Headerfile = BCC; in FullCommentParts()
456 Returns = BCC; in FullCommentParts()
459 MiscBlocks.push_back(BCC); in FullCommentParts()