Lines Matching refs:TPCC
313 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getParamName() local
314 if (!TPCC || !TPCC->hasParamName()) in clang_TParamCommandComment_getParamName()
317 return cxstring::createRef(TPCC->getParamNameAsWritten()); in clang_TParamCommandComment_getParamName()
321 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_isParamPositionValid() local
322 if (!TPCC) in clang_TParamCommandComment_isParamPositionValid()
325 return TPCC->isPositionValid(); in clang_TParamCommandComment_isParamPositionValid()
329 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getDepth() local
330 if (!TPCC || !TPCC->isPositionValid()) in clang_TParamCommandComment_getDepth()
333 return TPCC->getDepth(); in clang_TParamCommandComment_getDepth()
337 const TParamCommandComment *TPCC = getASTNodeAs<TParamCommandComment>(CXC); in clang_TParamCommandComment_getIndex() local
338 if (!TPCC || !TPCC->isPositionValid() || Depth >= TPCC->getDepth()) in clang_TParamCommandComment_getIndex()
341 return TPCC->getIndex(Depth); in clang_TParamCommandComment_getIndex()