Home
last modified time | relevance | path

Searched refs:debugids (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddversion.c83 if (!m->debugids) in addMember()
84 m->debugids = new Strings(); in addMember()
85 m->debugids->push(ident->toChars()); in addMember()
H A Dcond.c456 if (!global.params.debugids) in addGlobalIdent()
457 global.params.debugids = new Strings(); in addGlobalIdent()
458 global.params.debugids->push(ident); in addGlobalIdent()
497 if (findCondition(mod->debugids, ident)) in include()
502 else if (findCondition(global.params.debugids, ident)) in include()
H A Dmodule.h103 Strings *debugids; // debug identifiers variable
H A Dglobals.h166 Array<const char *> *debugids; // debug identifiers member
H A Ddmodule.c79 debugids = NULL; in Module()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddversion.d89 if (!m.debugids) in addMember()
90 m.debugids = new Identifiers(); in addMember()
91 m.debugids.push(ident); in addMember()
H A Dcond.d543 if (!global.debugids) in addGlobalIdent()
544 global.debugids = new Identifiers(); in addGlobalIdent()
545 global.debugids.push(Identifier.idPool(ident)); in addGlobalIdent()
574 if (findCondition(mod.debugids, ident)) in include()
579 else if (findCondition(global.debugids, ident)) in include()
H A Dglobals.h211 Array<const char *> *debugids; // debug identifiers member
292 Array<class Identifier*>* debugids; // command line debug versions and predefined versions member
H A Dglobals.d233 Array!(const(char)*)* debugids; // debug identifiers
328 Array!Identifier* debugids; /// command line debug versions and predefined versions
H A Dmodule.h105 Identifiers *debugids; // debug identifiers variable
H A Ddmodule.d429 Identifiers* debugids; // debug identifiers variable
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dd-lang.cc471 if (!global.params.debugids) in d_handle_option()
472 global.params.debugids = d_gc_malloc<Strings> (); in d_handle_option()
473 global.params.debugids->push (arg); in d_handle_option()
983 if (global.params.debugids) in d_post_options()
985 for (size_t i = 0; i < global.params.debugids->length; i++) in d_post_options()
987 const char *s = (*global.params.debugids)[i]; in d_post_options()