Searched refs:codedoc (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | declaration.h | 848 char *codedoc; /** For documented unittest. */ 853 UnitTestDeclaration(Loc loc, Loc endloc, StorageClass stc, char *codedoc);
|
H A D | doc.c | 1501 if (utd->codedoc) in writeSections() 1503 size_t n = getCodeIndent(utd->codedoc); in writeSections() 1506 buf->writestring(utd->codedoc); in writeSections()
|
H A D | func.c | 5433 UnitTestDeclaration::UnitTestDeclaration(Loc loc, Loc endloc, StorageClass stc, char *codedoc) in UnitTestDeclaration() argument 5436 this->codedoc = codedoc; in UnitTestDeclaration() 5442 UnitTestDeclaration *utd = new UnitTestDeclaration(loc, endloc, storage_class, codedoc); in syntaxCopy()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | func.d | 4204 char* codedoc; // for documented unittest variable 4209 extern (D) this(const ref Loc loc, const ref Loc endloc, StorageClass stc, char* codedoc) in this() argument 4212 this.codedoc = codedoc; in this() 4218 auto utd = new UnitTestDeclaration(loc, endloc, storage_class, codedoc); in syntaxCopy()
|
H A D | doc.d | 1917 if (utd.codedoc) in writeSections() 1919 auto codedoc = utd.codedoc.stripLeadingNewlines; in writeSections() local 1920 size_t n = getCodeIndent(codedoc); in writeSections() 1924 buf.writestring(codedoc); in writeSections()
|
H A D | declaration.h | 841 char *codedoc; /** For documented unittest. */
|