HomeSort by: relevance | last modified time | path
    Searched refs:module_ (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
tokens.h 61 module_, member in class:TOK
tokens.d 52 module_,
459 TOK.module_,
665 TOK.module_: "module",
astenums.d 284 module_, /// already determined that's an actual package.d
dmodule.d 158 Module mod; // !=null if isPkgMod == PKG.module_
288 if (isPkgMod == PKG.module_)
1052 * Then change Package::isPkgMod to PKG.module_ and set Package::mod.
1068 p.isPkgMod = PKG.module_;
parse.d 115 if (token.value == TOK.module_)
205 if (!(skipAttributes(&token, &tk) && tk.value == TOK.module_))
209 while (token.value != TOK.module_)
8234 || token.value == TOK.interface_ || token.value == TOK.package_ || token.value == TOK.module_
expressionsem.d 5507 if (e.tok2 == TOK.package_ || e.tok2 == TOK.module_) // These is() expressions are special because they can work on modules, not just types.
5520 else if(e.tok2 == TOK.module_ && !(p.isModule() || p.isPackageMod()))
13196 * module_ = what module the hook is located in
13200 bool verifyHookExist(const ref Loc loc, ref Scope sc, Identifier id, string description, Identifier module_ = Id.object)
13203 if (auto moduleSymbol = rootSymbol.search(loc, module_))
13206 error(loc, "`%s.%s` not found. The current runtime does not support %.*s, or the runtime is corrupt.", module_.toChars(), id.toChars(), cast(int)description.length, description.ptr);

Completed in 102 milliseconds