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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
scope.h 93 /* If minst && !tinst, it's in definitely non-speculative scope (eg. module member scope).
94 * If !minst && !tinst, it's in definitely speculative scope (eg. template constraint).
95 * If minst && tinst, it's in instantiated code scope without speculation.
96 * If !minst && tinst, it's in instantiated code scope with speculation.
99 TemplateInstance *tinst; // enclosing template instance member in struct:Scope
semantic2.d 98 sc.tinst = null;
131 if (sc.tinst)
132 sc.tinst.printInstantiationTrace();
157 sc.tinst = tempinst;
184 if (tempinst.tinst)
185 tempinst.tinst.printInstantiationTrace();
212 sc.tinst = tmix;
template.h 269 TemplateInstance *tinst; // enclosing template instance member in class:TemplateInstance
dtemplate.d 833 scx.tinst = null;
1035 paramscope.tinst = ti;
2236 sc2.tinst = ti;
5819 TemplateInstance tinst; // enclosing template instance
6006 for (TemplateInstance cur = this; cur; cur = cur.tinst)
6021 if (cur.tinst && cur.tempdecl && cur.tinst.tempdecl && cur.tempdecl.loc.equals(cur.tinst.tempdecl.loc))
6027 for (TemplateInstance cur = this; cur; cur = cur.tinst)
6035 for (TemplateInstance cur = this; cur; cur = cur.tinst)
    [all...]
dscope.d 102 /* If minst && !tinst, it's in definitely non-speculative scope (eg. module member scope).
103 * If !minst && !tinst, it's in definitely speculative scope (eg. template constraint).
104 * If minst && tinst, it's in instantiated code scope without speculation.
105 * If !minst && tinst, it's in instantiated code scope with speculation.
108 TemplateInstance tinst; /// enclosing template instance
281 sc.tinst = null;
dsymbolsem.d 1269 if (sc.minst && sc.tinst)
1272 if (!sc.tinst.importedModules.contains(imp.mod))
1273 sc.tinst.importedModules.push(imp.mod);
4642 sc.tinst = null;
5758 // Get the enclosing template instance from the scope tinst
5759 tempinst.tinst = sc.tinst;
5766 if (!tempinst.tinst && sc.func && sc.func.inNonRoot())
5902 TemplateInstance ti = tempinst.tinst;
5904 tempinst.tinst = tempinst.inst.tinst
    [all...]
semantic3.d 116 sc.tinst = tempinst;
144 if (tempinst.tinst)
145 tempinst.tinst.printInstantiationTrace();
1548 sc3.tinst = sc.tinst;
clone.d 112 sc.tinst = null;
470 sc.tinst = null;
traits.d 1728 sc2.tinst = null;
expressionsem.d 3894 ScopeDsymbol sds = sc.tinst ? cast(ScopeDsymbol)sc.tinst : sc._module;
5528 sc2.tinst = null;
  /src/external/gpl3/gcc/dist/gcc/cp/
module.cc 18871 instantiation at TINST. If TINST is nullptr, we're not in an
18874 the tinst level itself. */
18877 path_of_instantiation (tinst_level *tinst, bitmap *path_map_p)
18881 if (!tinst)
18888 if (!tinst->path)
18891 bitmap visible = path_of_instantiation (tinst->next, path_map_p);
18900 tree decl = tinst->tldcl;
18926 tinst->path = path_map;
18927 tinst->visible = visible
    [all...]
pt.cc 62 struct tinst_level *tinst; variable in typeref:struct:tinst_level
9825 pt->tinst = NULL;
9826 set_refcount_ptr (pt->tinst, current_tinst_level);
22718 /* If we aren't explaining yet, push tinst context so we can see where
27540 tree decl = pending_templates->tinst->maybe_get_node ();
27560 tree instantiation = reopen_tinst_level ((*t)->tinst);
27608 set_refcount_ptr (drop->tinst);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
module.cc 18221 instantiation at TINST. If TINST is nullptr, we're not in an
18224 the tinst level itself. */
18227 path_of_instantiation (tinst_level *tinst, bitmap *path_map_p)
18231 if (!tinst)
18238 if (!tinst->path)
18241 bitmap visible = path_of_instantiation (tinst->next, path_map_p);
18250 tree decl = tinst->tldcl;
18276 tinst->path = path_map;
18277 tinst->visible = visible
    [all...]
pt.cc 59 struct tinst_level *tinst; variable in typeref:struct:tinst_level
9738 pt->tinst = NULL;
9739 set_refcount_ptr (pt->tinst, current_tinst_level);
22297 /* If we aren't explaining yet, push tinst context so we can see where
26942 tree decl = pending_templates->tinst->maybe_get_node ();
26962 tree instantiation = reopen_tinst_level ((*t)->tinst);
27010 set_refcount_ptr (drop->tinst);

Completed in 115 milliseconds