Home | History | Annotate | Download | only in libclang

Lines Matching refs:ICC

116   const InlineContentComment *ICC = getASTNodeAs<InlineContentComment>(CXC);
117 if (!ICC)
120 return ICC->hasTrailingNewline();
132 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC);
133 if (!ICC)
137 return cxstring::createRef(ICC->getCommandName(Traits));
142 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC);
143 if (!ICC)
146 switch (ICC->getRenderKind()) {
163 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC);
164 if (!ICC)
167 return ICC->getNumArgs();
172 const InlineCommandComment *ICC = getASTNodeAs<InlineCommandComment>(CXC);
173 if (!ICC || ArgIdx >= ICC->getNumArgs())
176 return cxstring::createRef(ICC->getArgText(ArgIdx));