Home
last modified time | relevance | path

Searched refs:doDocComment (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dlexer.h32 bool doDocComment; // collect doc comment information variable
39 bool doDocComment, bool commentToken);
H A Dmodule.h116 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 Dparse.h70 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 Dlexer.c67 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 Ddmodule.c45 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 Dparse.c49 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 Ddmodule.d442 …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 Dlexer.d77 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 Dmodule.h118 static Module* create(const char *arg, Identifier *ident, int doDocComment, int doHdrGen);
H A Dcparse.d62 extern (D) this(TARGET)(AST.Module _module, const(char)[] input, bool doDocComment, in this()
65 super(_module, input, doDocComment); in this()
H A Dparse.d53 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);