| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | lexer.h | 32 bool doDocComment; // collect doc comment information variable 39 bool doDocComment, bool commentToken);
|
| H A D | module.h | 116 Module(const char *arg, Identifier *ident, int doDocComment, int doHdrGen); 117 static Module* create(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
|
| H A D | parse.h | 70 Parser(Loc loc, Module *module, const utf8_t *base, size_t length, bool doDocComment); 71 Parser(Module *module, const utf8_t *base, size_t length, bool doDocComment);
|
| H A D | lexer.c | 67 bool doDocComment, bool commentToken) in Lexer() argument 81 this->doDocComment = doDocComment; in Lexer() 512 else if (doDocComment && t->ptr[2] == '*' && p - 4 != t->ptr) in scan() 541 if (doDocComment && t->ptr[2] == '/') in scan() 567 if (doDocComment && t->ptr[2] == '/') in scan() 639 if (doDocComment && t->ptr[2] == '+' && p - 4 != t->ptr) in scan()
|
| H A D | dmodule.c | 45 Module::Module(const char *filename, Identifier *ident, int doDocComment, int doHdrGen) in Module() argument 117 if (doDocComment) in Module() 126 Module *Module::create(const char *filename, Identifier *ident, int doDocComment, int doHdrGen) in create() argument 128 return new Module(filename, ident, doDocComment, doHdrGen); in create()
|
| H A D | parse.c | 49 Parser::Parser(Module *module, const utf8_t *base, size_t length, bool doDocComment) in Parser() argument 50 : Lexer(module ? module->srcfile->toChars() : NULL, base, 0, length, doDocComment, false) in Parser() 67 Parser::Parser(Loc loc, Module *module, const utf8_t *base, size_t length, bool doDocComment) in Parser() argument 68 : Lexer(module ? module->srcfile->toChars() : NULL, base, 0, length, doDocComment, false) in Parser()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | dmodule.d | 442 …extern (D) this(const ref Loc loc, const(char)[] filename, Identifier ident, int doDocComment, int… in this() argument 472 if (doDocComment) in this() 478 extern (D) this(const(char)[] filename, Identifier ident, int doDocComment, int doHdrGen) in this() argument 480 this(Loc.initial, filename, ident, doDocComment, doHdrGen); in this() 483 static Module create(const(char)* filename, Identifier ident, int doDocComment, int doHdrGen) in create() argument 485 return create(filename.toDString, ident, doDocComment, doHdrGen); in create() 488 …extern (D) static Module create(const(char)[] filename, Identifier ident, int doDocComment, int do… in create() argument 490 return new Module(Loc.initial, filename, ident, doDocComment, doHdrGen); in create()
|
| H A D | lexer.d | 77 bool doDocComment; // collect doc comment information variable 108 size_t endoffset, bool doDocComment, bool commentToken) pure in this() argument 118 this.doDocComment = doDocComment; in this() 152 bool doDocComment, bool commentToken, bool whitespaceToken) in version() 154 this(filename, base, begoffset, endoffset, doDocComment, commentToken); in version() 620 else if (doDocComment && t.ptr[2] == '*' && p - 4 != t.ptr) in scan() 649 if (doDocComment && t.ptr[2] == '/') in scan() 681 if (doDocComment && t.ptr[2] == '/') in scan() 752 if (doDocComment && t.ptr[2] == '+' && p - 4 != t.ptr) in scan()
|
| H A D | module.h | 118 static Module* create(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
|
| H A D | cparse.d | 62 extern (D) this(TARGET)(AST.Module _module, const(char)[] input, bool doDocComment, in this() 65 super(_module, input, doDocComment); in this()
|
| H A D | parse.d | 53 extern (D) this(const ref Loc loc, AST.Module _module, const(char)[] input, bool doDocComment) 55 …super(_module ? _module.srcfile.toChars() : null, input.ptr, 0, input.length, doDocComment, false); 75 extern (D) this(AST.Module _module, const(char)[] input, bool doDocComment) 77 …super(_module ? _module.srcfile.toChars() : null, input.ptr, 0, input.length, doDocComment, false);
|