reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/c-index-test/c-index-test.c
  462   enum CXCommentKind Kind = clang_Comment_getKind(Comment);
  476                                       clang_TextComment_getText(Comment));
  477     if (clang_Comment_isWhitespace(Comment))
  479     if (clang_InlineContentComment_hasTrailingNewline(Comment))
  486         clang_InlineCommandComment_getCommandName(Comment));
  487     switch (clang_InlineCommandComment_getRenderKind(Comment)) {
  501     for (i = 0, e = clang_InlineCommandComment_getNumArgs(Comment);
  505           clang_InlineCommandComment_getArgText(Comment, i));
  507     if (clang_InlineContentComment_hasTrailingNewline(Comment))
  515         clang_HTMLTagComment_getTagName(Comment));
  516     NumAttrs = clang_HTMLStartTag_getNumAttrs(Comment);
  521         PrintCXStringAndDispose(clang_HTMLStartTag_getAttrName(Comment, i));
  523         PrintCXStringAndDispose(clang_HTMLStartTag_getAttrValue(Comment, i));
  526     if (clang_HTMLStartTagComment_isSelfClosing(Comment))
  528     if (clang_InlineContentComment_hasTrailingNewline(Comment))
  536         clang_HTMLTagComment_getTagName(Comment));
  537     if (clang_InlineContentComment_hasTrailingNewline(Comment))
  542     if (clang_Comment_isWhitespace(Comment))
  549         clang_BlockCommandComment_getCommandName(Comment));
  550     for (i = 0, e = clang_BlockCommandComment_getNumArgs(Comment);
  554           clang_BlockCommandComment_getArgText(Comment, i));
  559     switch (clang_ParamCommandComment_getDirection(Comment)) {
  570     if (clang_ParamCommandComment_isDirectionExplicit(Comment))
  576         clang_ParamCommandComment_getParamName(Comment));
  577     if (clang_ParamCommandComment_isParamIndexValid(Comment))
  578       printf(" ParamIndex=%u", clang_ParamCommandComment_getParamIndex(Comment));
  586         clang_TParamCommandComment_getParamName(Comment));
  587     if (clang_TParamCommandComment_isParamPositionValid(Comment)) {
  589       for (i = 0, e = clang_TParamCommandComment_getDepth(Comment);
  591         printf("%u", clang_TParamCommandComment_getIndex(Comment, i));
  603         clang_BlockCommandComment_getCommandName(Comment));
  609         clang_VerbatimBlockLineComment_getText(Comment));
  615         clang_VerbatimLineComment_getText(Comment));
  622     const unsigned NumChildren = clang_Comment_getNumChildren(Comment);
  626       DumpCXCommentInternal(Ctx, clang_Comment_getChild(Comment, i));