OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FullComment
(Results
1 - 19
of
19
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/Index/
CommentToXML.h
18
class
FullComment
;
28
void convertCommentToHTML(const comments::
FullComment
*FC,
36
void convertCommentToXML(const comments::
FullComment
*FC,
/src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h
119
const comments::
FullComment
*>,
138
const comments::
FullComment
*>;
200
void Visit(const comments::Comment *C, const comments::
FullComment
*FC);
328
const comments::
FullComment
*);
330
const comments::
FullComment
*);
332
const comments::
FullComment
*);
334
const comments::
FullComment
*);
336
const comments::
FullComment
*);
338
const comments::
FullComment
*FC);
340
const comments::
FullComment
*FC)
[
all
...]
TextNodeDumper.h
129
const comments::
FullComment
*>,
168
void Visit(const comments::Comment *C, const comments::
FullComment
*FC);
206
const comments::
FullComment
*);
208
const comments::
FullComment
*);
210
const comments::
FullComment
*);
212
const comments::
FullComment
*);
214
const comments::
FullComment
*);
216
const comments::
FullComment
*FC);
218
const comments::
FullComment
*FC);
220
const comments::
FullComment
*);
[
all
...]
RawCommentList.h
29
class
FullComment
;
143
comments::
FullComment
*parse(const ASTContext &Context,
CommentParser.h
115
FullComment
*parseFullComment();
CommentSema.h
182
FullComment
*actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
202
void resolveParamCommandIndexes(const
FullComment
*FC);
ASTNodeTraverser.h
44
void Visit(const comments::Comment *C, const comments::
FullComment
*FC);
64
const comments::
FullComment
*>,
101
if (const comments::
FullComment
*Comment =
235
void Visit(const comments::Comment *C, const comments::
FullComment
*FC) {
242
const comments::
FullComment
*>::visit(C,
Comment.h
29
class
FullComment
;
762
StringRef getParamName(const
FullComment
*FC) const;
832
StringRef getParamName(const
FullComment
*FC) const;
979
/// Information about the declaration, useful to clients of
FullComment
.
985
/// CurrentDecl is the declaration with which the
FullComment
is associated.
1091
class
FullComment
: public Comment {
1096
FullComment
(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
ASTContext.h
152
class
FullComment
;
769
mutable llvm::DenseMap<const Decl *, comments::
FullComment
*> ParsedComments;
819
comments::
FullComment
*getCommentForDecl(const Decl *D,
825
comments::
FullComment
*getLocalCommentForDeclUncached(const Decl *D) const;
827
comments::
FullComment
*cloneFullComment(comments::
FullComment
*FC,
/src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp
81
/// Separate parts of a
FullComment
.
84
FullCommentParts(const
FullComment
*C,
97
FullCommentParts::FullCommentParts(const
FullComment
*C,
186
"a
FullComment
");
221
CommentASTToHTMLConverter(const
FullComment
*FC,
242
void visitFullComment(const
FullComment
*C);
253
const
FullComment
*FC;
442
void CommentASTToHTMLConverter::visitFullComment(const
FullComment
*C) {
532
CommentASTToXMLConverter(const
FullComment
*FC,
557
void visitFullComment(const
FullComment
*C)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTDumper.cpp
252
const auto *FC = dyn_cast<
FullComment
>(this);
261
const auto *FC = dyn_cast<
FullComment
>(this);
269
const auto *FC = dyn_cast<
FullComment
>(this);
JSONNodeDumper.cpp
131
const comments::
FullComment
*FC) {
1515
const comments::
FullComment
*) {
1520
const comments::InlineCommandComment *C, const comments::
FullComment
*) {
1550
const comments::HTMLStartTagComment *C, const comments::
FullComment
*) {
1565
const comments::HTMLEndTagComment *C, const comments::
FullComment
*) {
1570
const comments::BlockCommandComment *C, const comments::
FullComment
*) {
1582
const comments::ParamCommandComment *C, const comments::
FullComment
*FC) {
1605
const comments::TParamCommandComment *C, const comments::
FullComment
*FC) {
1620
const comments::VerbatimBlockComment *C, const comments::
FullComment
*) {
1627
const comments::
FullComment
*) {
[
all
...]
Comment.cpp
371
StringRef ParamCommandComment::getParamName(const
FullComment
*FC) const {
378
StringRef TParamCommandComment::getParamName(const
FullComment
*FC) const {
CommentSema.cpp
546
FullComment
*Sema::actOnFullComment(
548
FullComment
*FC = new (Allocator)
FullComment
(Blocks, ThisDeclInfo);
732
void Sema::resolveParamCommandIndexes(const
FullComment
*FC) {
RawCommentList.cpp
203
comments::
FullComment
*RawComment::parse(const ASTContext &Context,
ASTContext.cpp
525
comments::
FullComment
*FC = DocComment->parse(*this, PP, D);
531
comments::
FullComment
*ASTContext::cloneFullComment(comments::
FullComment
*FC,
540
comments::
FullComment
*CFC =
541
new (*this) comments::
FullComment
(FC->getBlocks(),
546
comments::
FullComment
*ASTContext::getLocalCommentForDeclUncached(const Decl *D) const {
551
comments::
FullComment
*ASTContext::getCommentForDecl(
559
llvm::DenseMap<const Decl *, comments::
FullComment
*>::iterator Pos =
564
comments::
FullComment
*FC = Pos->second;
565
comments::
FullComment
*CFC = cloneFullComment(FC, D)
[
all
...]
TextNodeDumper.cpp
70
const comments::
FullComment
*FC) {
85
const comments::
FullComment
*>::visit(C, FC);
721
const comments::
FullComment
*) {
726
const comments::InlineCommandComment *C, const comments::
FullComment
*) {
751
const comments::HTMLStartTagComment *C, const comments::
FullComment
*) {
765
const comments::HTMLEndTagComment *C, const comments::
FullComment
*) {
770
const comments::BlockCommandComment *C, const comments::
FullComment
*) {
777
const comments::ParamCommandComment *C, const comments::
FullComment
*FC) {
798
const comments::TParamCommandComment *C, const comments::
FullComment
*FC) {
818
const comments::VerbatimBlockComment *C, const comments::
FullComment
*) {
[
all
...]
CommentParser.cpp
763
FullComment
*Parser::parseFullComment() {
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXComment.cpp
36
const
FullComment
*FC = Context.getCommentForDecl(D, /*PP=*/nullptr);
380
const
FullComment
*FC = getASTNodeAs<
FullComment
>(CXC);
395
const
FullComment
*FC = getASTNodeAs<
FullComment
>(CXC);
Completed in 78 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026