Lines Matching refs:TPCC
312 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getParamName() local
313 if (!TPCC || !TPCC->hasParamName()) in clang_TParamCommandComment_getParamName()
316 return cxstring::createRef(TPCC->getParamNameAsWritten()); in clang_TParamCommandComment_getParamName()
320 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_isParamPositionValid() local
321 if (!TPCC) in clang_TParamCommandComment_isParamPositionValid()
324 return TPCC->isPositionValid(); in clang_TParamCommandComment_isParamPositionValid()
328 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getDepth() local
329 if (!TPCC || !TPCC->isPositionValid()) in clang_TParamCommandComment_getDepth()
332 return TPCC->getDepth(); in clang_TParamCommandComment_getDepth()
336 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getIndex() local
337 if (!TPCC || !TPCC->isPositionValid() || Depth >= TPCC->getDepth()) in clang_TParamCommandComment_getIndex()
340 return TPCC->getIndex(Depth); in clang_TParamCommandComment_getIndex()