Home
last modified time | relevance | path

Searched refs:cppmangle (Results 1 – 25 of 27) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dattrib.d85 CPPMANGLE cppmangle, Visibility visibility, int explicitVisibility, in createNewScope() argument
91 cppmangle != sc.cppmangle || in createNewScope()
101 sc2.cppmangle = cppmangle; in createNewScope()
259 return createNewScope(sc, scstc, sc.linkage, sc.cppmangle, in newScope()
417 …return createNewScope(sc, sc.stc, this.linkage, sc.cppmangle, sc.visibility, sc.explicitVisibility, in newScope()
447 CPPMANGLE cppmangle; variable
449 extern (D) this(const ref Loc loc, CPPMANGLE cppmangle, Dsymbols* decl) in this() argument
453 this.cppmangle = cppmangle; in this()
459 return new CPPMangleDeclaration(loc, cppmangle, Dsymbol.arraySyntaxCopy(decl)); in syntaxCopy()
464 return createNewScope(sc, sc.stc, LINK.cpp, cppmangle, sc.visibility, sc.explicitVisibility, in newScope()
[all …]
H A Dscope.h111 CPPMANGLE cppmangle; // C++ mangle type member
H A Daggregate.h82 CPPMANGLE cppmangle; variable
H A Dattrib.h86 CPPMANGLE cppmangle;
H A Ddtoh.d1232 const structAsClass = sd.cppmangle == CPPMANGLE.asClass;
1432 const classAsStruct = cd.cppmangle == CPPMANGLE.asStruct;
2940 if (ad.cppmangle == CPPMANGLE.def)
2942 else if (ad.cppmangle == CPPMANGLE.asStruct)
H A Daggregate.d109 CPPMANGLE cppmangle; variable
H A Ddscope.d122 CPPMANGLE cppmangle = CPPMANGLE.def; member
H A DREADME.md227 | [cppmangle.d](https://github.com/dlang/dmd/blob/master/src/dmd/cppmangle.d) | C++ name mang…
H A Dmtype.h844 CPPMANGLE cppmangle; variable
H A Dparse.d42 CPPMANGLE cppmangle; variable
791 else if (res.idents || res.identExps || res.cppmangle != CPPMANGLE.def)
840 else if (res.cppmangle != CPPMANGLE.def)
843 s = new AST.CPPMangleDeclaration(linkLoc, res.cppmangle, a);
2101 result.cppmangle = token.value == TOK.class_ ? CPPMANGLE.asClass : CPPMANGLE.asStruct;
4271 if (res.cppmangle != CPPMANGLE.def)
9531 CPPMANGLE cppmangle; in ParsedLinkage() local
H A Ddsymbolsem.d4539 sd.cppmangle = sc.cppmangle; in visit()
4762 cldec.cppmangle = sc.cppmangle; in visit()
H A Dcppmangle.d24 module dmd.cppmangle;
H A Dhdrgen.d974 final switch (d.cppmangle) in visit()
H A Dmtype.d6149 CPPMANGLE cppmangle = CPPMANGLE.def; variable
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dattrib.c78 StorageClass stc, LINK linkage, CPPMANGLE cppmangle, Prot protection, in createNewScope() argument
84 cppmangle != sc->cppmangle || in createNewScope()
94 sc2->cppmangle = cppmangle; in createNewScope()
430 return createNewScope(sc, scstc, sc->linkage, sc->cppmangle, in newScope()
535 return createNewScope(sc, sc->stc, this->linkage, sc->cppmangle, in newScope()
551 cppmangle = p; in CPPMangleDeclaration()
557 return new CPPMangleDeclaration(cppmangle, Dsymbol::arraySyntaxCopy(decl)); in syntaxCopy()
562 return createNewScope(sc, sc->stc, LINKcpp, this->cppmangle, in newScope()
617 return createNewScope(sc, sc->stc, sc->linkage, sc->cppmangle, in newScope()
680 return createNewScope(sc, sc->stc, sc->linkage, sc->cppmangle, in newScope()
[all …]
H A Dattrib.h34 StorageClass newstc, LINK linkage, CPPMANGLE cppmangle, Prot protection,
102 CPPMANGLE cppmangle;
H A Dscope.h108 CPPMANGLE cppmangle; // C++ mangle type member
H A Dparse.h65 CPPMANGLE cppmangle; variable
H A Dmtype.c7804 this->cppmangle = CPPMANGLEdefault; in TypeStruct()
7827 if (sc && sc->cppmangle != CPPMANGLEdefault) in semantic()
7829 if (this->cppmangle == CPPMANGLEdefault) in semantic()
7830 this->cppmangle = sc->cppmangle; in semantic()
7832 assert(this->cppmangle == sc->cppmangle); in semantic()
7846 this->cppmangle = sc->cppmangle; in semantic()
8370 this->cppmangle = CPPMANGLEdefault; in TypeClass()
8388 if (sc && sc->cppmangle != CPPMANGLEdefault) in semantic()
8390 if (this->cppmangle == CPPMANGLEdefault) in semantic()
8391 this->cppmangle = sc->cppmangle; in semantic()
[all …]
H A Dparse.c681 CPPMANGLE cppmangle = CPPMANGLEdefault; in parseDeclDefs() local
683 LINK link = parseLinkage(&idents, &cppmangle, &cppMangleOnly); in parseDeclDefs()
726 else if (cppmangle != CPPMANGLEdefault) in parseDeclDefs()
729 s = new CPPMangleDeclaration(cppmangle, a); in parseDeclDefs()
1285 CPPMANGLE cppmangle = CPPMANGLEdefault; in parseLinkage() local
1313 cppmangle = token.value == TOKclass ? CPPMANGLEclass : CPPMANGLEstruct; in parseLinkage()
1412 *pcppmangle = cppmangle; in parseLinkage()
3677 CPPMANGLE cppmangle = CPPMANGLEdefault; in parseStorageClasses() local
3679 link = parseLinkage(&idents, &cppmangle, &cppMangleOnly); in parseStorageClasses()
3685 if (cppmangle != CPPMANGLEdefault) in parseStorageClasses()
H A Dmtype.h779 CPPMANGLE cppmangle; variable
851 CPPMANGLE cppmangle; variable
H A Ddscope.c83 this->cppmangle = CPPMANGLEdefault; in Scope()
H A Dhdrgen.c1290 switch (d->cppmangle) in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A DMake-lang.in70 d/cppmangle.o \
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A DMake-lang.in100 d/cppmangle.o \

12