Searched refs:CommandName (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/AST/ |
D | CommentCommandTraits.cpp | 84 CommandInfo *CommandTraits::createCommandInfoWithName(StringRef CommandName) { in createCommandInfoWithName() argument 85 char *Name = Allocator.Allocate<char>(CommandName.size() + 1); in createCommandInfoWithName() 86 memcpy(Name, CommandName.data(), CommandName.size()); in createCommandInfoWithName() 87 Name[CommandName.size()] = '\0'; in createCommandInfoWithName() 104 StringRef CommandName) { in registerUnknownCommand() argument 105 CommandInfo *Info = createCommandInfoWithName(CommandName); in registerUnknownCommand() 110 const CommandInfo *CommandTraits::registerBlockCommand(StringRef CommandName) { in registerBlockCommand() argument 111 CommandInfo *Info = createCommandInfoWithName(CommandName); in registerBlockCommand()
|
D | CommentSema.cpp | 368 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnInlineCommand() local 373 getInlineCommandRenderKind(CommandName), in actOnInlineCommand() 387 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnInlineCommand() local 393 getInlineCommandRenderKind(CommandName), in actOnInlineCommand() 399 StringRef CommandName) { in actOnUnknownCommand() argument 400 unsigned CommandID = Traits.registerUnknownCommand(CommandName)->getID(); in actOnUnknownCommand() 422 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name; in actOnVerbatimBlockStart() local 425 Loc.getLocWithOffset(1 + CommandName.size()), in actOnVerbatimBlockStart() 642 StringRef CommandName = Command->getCommandName(Traits); in checkBlockCommandDuplicate() local 646 << CommandName in checkBlockCommandDuplicate() [all …]
|
D | CommentLexer.cpp | 374 StringRef CommandName(BufferPtr + 1, Length); in lexCommentText() local 376 const CommandInfo *Info = Traits.getCommandInfoOrNULL(CommandName); in lexCommentText() 378 if ((Info = Traits.getTypoCorrectCommandInfo(CommandName))) { in lexCommentText() 384 << CommandName << CorrectedName in lexCommentText() 388 T.setUnknownCommandName(CommandName); in lexCommentText()
|
/external/clang/test/Index/ |
D | comment-misc-tags.m | 25 // CHECK: (CXComment_BlockCommand CommandName=[abstract] 28 // CHECK: (CXComment_BlockCommand CommandName=[discussion] 32 // CHECK: (CXComment_VerbatimBlockCommand CommandName=[textblock] 38 // CHECK: (CXComment_VerbatimBlockCommand CommandName=[link] 42 // CHECK: (CXComment_BlockCommand CommandName=[see] 46 // CHECK: (CXComment_BlockCommand CommandName=[seealso] 62 // CHECK: (CXComment_BlockCommand CommandName=[arg] 65 // CHECK-NEXT: (CXComment_InlineCommand CommandName=[c] RenderMonospaced Arg[0]=AlignLeft) 67 // CHECK: (CXComment_BlockCommand CommandName=[li] 70 // CHECK-NEXT: (CXComment_InlineCommand CommandName=[c] RenderMonospaced Arg[0]=AlignRight) [all …]
|
D | headerfile-comment-to-html.m | 25 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile] 47 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile] 52 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] 70 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] 74 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile] 91 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile] 107 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
|
/external/clang/include/clang/AST/ |
D | CommentCommandTraits.h | 156 const CommandInfo *registerUnknownCommand(StringRef CommandName); 158 const CommandInfo *registerBlockCommand(StringRef CommandName); 175 CommandInfo *createCommandInfoWithName(StringRef CommandName);
|
D | CommentSema.h | 145 StringRef CommandName);
|
/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
D | svga_dump.c | 1487 #define SVGA3D_DUMP_HEADER(CommandName) \ argument 1489 dump_SVGA3dCmdDX##CommandName(const SVGA3dCmdDX##CommandName *cmd) 2050 #define SVGA3D_DUMP_CASE_BASIC(CommandName, CommandCode) \ argument 2054 const SVGA3dCmdDX##CommandName *cmd = (const SVGA3dCmdDX##CommandName *)body; \ 2055 dump_SVGA3dCmdDX##CommandName(cmd); \ 2060 #define SVGA3D_DUMP_CASE_LIST(CommandName, CommandCode, ElementType) \ argument 2064 const SVGA3dCmdDX##CommandName *cmd = (const SVGA3dCmdDX##CommandName *)body; \ 2065 dump_SVGA3dCmdDX##CommandName(cmd); \
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_cmd_vgpu10.c | 81 #define SVGA3D_CREATE_COMMAND(CommandName, CommandCode) \ argument 82 SVGA3dCmdDX##CommandName *cmd; \ 85 sizeof(SVGA3dCmdDX##CommandName), 0); \ 90 #define SVGA3D_CREATE_CMD_COUNT(CommandName, CommandCode, ElementClassName) \ argument 91 SVGA3dCmdDX##CommandName *cmd; \ 95 sizeof(SVGA3dCmdDX##CommandName) + \
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 186 StringRef CommandName, in HasParamCommandAt() argument 196 if (ActualCommandName != CommandName) in HasParamCommandAt() 199 "expected \"" << CommandName.str() << "\""; in HasParamCommandAt() 234 StringRef CommandName, in HasTParamCommandAt() argument 242 if (ActualCommandName != CommandName) in HasTParamCommandAt() 245 "expected \"" << CommandName.str() << "\""; in HasTParamCommandAt()
|