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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
nspace.h 8 * https://github.com/dlang/dmd/blob/master/src/dmd/nspace.h
19 class Nspace : public ScopeDsymbol
23 Nspace *syntaxCopy(Dsymbol *s);
30 Nspace *isNspace() { return this; }
nspace.d 29 * Hence the `Nspace` symbol implements the usual `ScopeDsymbol` semantics.
32 * named scope. Additionally, `Nspace` with the same `Identifier` can be
42 * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/nspace.d, _nspace.d)
44 * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/nspace.d
47 module dmd.nspace;
64 extern (C++) final class Nspace : ScopeDsymbol
74 //printf("Nspace::Nspace(ident = %s)\n", ident.toChars());
79 override Nspace syntaxCopy(Dsymbol s)
81 auto ns = new Nspace(loc, ident, identExp, null)
    [all...]
dsymbol.h 65 class Nspace;
267 virtual Nspace *isNspace() { return NULL; }
cppmangle.d 42 import dmd.nspace;
293 * If called with an object whose dynamic type is `Nspace`,
294 * calls the `find(Nspace)` overload.
602 * Because `Nspace` and `CPPNamespaceAttribute` can be
1109 * Otherwise, they are already present (e.g. `Nspace` was used).
1167 auto nspace = ti.toParent();
1168 if (nspace && nspace.isNspace())
1617 if (sym2 && isStd(sym2)) // Nspace path
2069 override void visit(Nspace t
    [all...]
visitor.h 126 class Nspace;
343 virtual void visit(Nspace *s) { visit((ScopeDsymbol *)s); }
semantic2.d 51 import dmd.nspace;
488 override void visit(Nspace ns)
495 printf("+Nspace::semantic2('%s')\n", ns.toChars());
496 scope(exit) printf("-Nspace::semantic2('%s')\n", ns.toChars());
parsetimevisitor.d 46 void visit(AST.Nspace s) { visit(cast(AST.ScopeDsymbol)s); }
transitivevisitor.d 770 override void visit(AST.Nspace d)
772 //printf("Visiting Nspace\n");
dsymbol.d 46 import dmd.nspace;
1328 inout(Nspace) isNspace() inout { return null; }
dsymbolsem.d 56 import dmd.nspace;
2843 override void visit(Nspace ns)
2849 printf("+Nspace::semantic('%s')\n", ns.toChars());
2889 Nspace parentns = ns;
2911 Nspace childns = new Nspace(ns.loc, Identifier.idPool(ident), null, parentns.members);
2954 printf("-Nspace::semantic('%s')\n", ns.toChars());
semantic3.d 52 import dmd.nspace;
1477 override void visit(Nspace ns)
1484 printf("Nspace::semantic3('%s')\n", ns.toChars());
dtoh.d 1156 override void visit(AST.Nspace ns)
hdrgen.d 43 import dmd.nspace;
1363 override void visit(Nspace d)
parse.d 820 s = new AST.Nspace(linkLoc, id, null, a);
expressionsem.d 60 import dmd.nspace;
958 if (Nspace ns = s.isNspace())
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.h 88 CodeGenSubRegIndex(StringRef N, StringRef Nspace, unsigned Enum);
CodeGenRegisters.cpp 62 CodeGenSubRegIndex::CodeGenSubRegIndex(StringRef N, StringRef Nspace,
64 : TheDef(nullptr), Name(std::string(N)), Namespace(std::string(Nspace)),
  /src/external/gpl3/gcc.old/dist/gcc/d/
decl.cc 36 #include "dmd/nspace.h"
392 void visit (Nspace *d)

Completed in 73 milliseconds