OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:paramcommandcomment
(Results
1 - 11
of
11
) sorted by null
/external/clang/include/clang/Basic/
CommentNodes.td
19
def
ParamCommandComment
: DComment<BlockCommandComment>;
/external/clang/lib/AST/
CommentSema.cpp
76
ParamCommandComment
*Sema::actOnParamCommandStart(
81
ParamCommandComment
*Command =
82
new (Allocator)
ParamCommandComment
(LocBegin, LocEnd, CommandID,
203
void Sema::actOnParamCommandDirectionArg(
ParamCommandComment
*Command,
207
ParamCommandComment
::PassDirection Direction;
212
Direction =
ParamCommandComment
::In;
214
Direction =
ParamCommandComment
::Out;
216
Direction =
ParamCommandComment
::InOut;
231
Direction =
ParamCommandComment
::In;
234
Direction =
ParamCommandComment
::Out
[
all
...]
Comment.cpp
116
const char *
ParamCommandComment
::getDirectionAsString(PassDirection D) {
118
case
ParamCommandComment
::In:
120
case
ParamCommandComment
::Out:
122
case
ParamCommandComment
::InOut:
294
StringRef
ParamCommandComment
::getParamName(const FullComment *FC) const {
CommentParser.cpp
256
void Parser::parseParamCommandArgs(
ParamCommandComment
*PC,
305
ParamCommandComment
*PC;
ASTDumper.cpp
302
void visitParamCommandComment(const
ParamCommandComment
*C);
[
all
...]
/external/clang/tools/libclang/
CXComment.cpp
254
const
ParamCommandComment
*PCC = getASTNodeAs<
ParamCommandComment
>(CXC);
262
const
ParamCommandComment
*PCC = getASTNodeAs<
ParamCommandComment
>(CXC);
270
const
ParamCommandComment
*PCC = getASTNodeAs<
ParamCommandComment
>(CXC);
272
return
ParamCommandComment
::InvalidParamIndex;
278
const
ParamCommandComment
*PCC = getASTNodeAs<
ParamCommandComment
>(CXC);
287
const
ParamCommandComment
*PCC = getASTNodeAs<ParamCommandComment>(CXC)
[
all
...]
/external/clang/test/Misc/
ast-dump-comment.cpp
31
// CHECK:
ParamCommandComment
{{.*}} [in] implicitly Param="Aaa" ParamIndex=0
34
// CHECK:
ParamCommandComment
{{.*}} [in,out] explicitly Param="Bbb" ParamIndex=1
/external/clang/unittests/AST/
CommentParser.cpp
185
ParamCommandComment
*&PCC,
187
ParamCommandComment
::PassDirection Direction,
198
<< "
ParamCommandComment
has name \"" << ActualCommandName.str() << "\", "
203
<< "
ParamCommandComment
has direction " << PCC->getDirection() << ", "
208
<< "
ParamCommandComment
has "
215
<< "
ParamCommandComment
has no parameter name";
220
<< "
ParamCommandComment
has parameter name \"" << ActualParamName.str()
734
ParamCommandComment
*PCC;
737
ParamCommandComment
::In,
753
ParamCommandComment
*PCC
[
all
...]
/external/clang/include/clang/AST/
CommentSema.h
108
ParamCommandComment
*actOnParamCommandStart(SourceLocation LocBegin,
113
void actOnParamCommandDirectionArg(
ParamCommandComment
*Command,
118
void actOnParamCommandParamNameArg(
ParamCommandComment
*Command,
123
void actOnParamCommandFinish(
ParamCommandComment
*Command,
CommentParser.h
100
void parseParamCommandArgs(
ParamCommandComment
*PC,
Comment.h
141
friend class
ParamCommandComment
;
145
/// Parameter passing direction, see
ParamCommandComment
::PassDirection.
696
class
ParamCommandComment
: public BlockCommandComment {
704
ParamCommandComment
(SourceLocation LocBegin,
Completed in 2151 milliseconds