Home
last modified time | relevance | path

Searched refs:sthis (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddmangle.c323 void mangleDecl(Declaration *sthis) in mangleDecl() argument
325 mangleParent(sthis); in mangleDecl()
327 assert(sthis->ident); in mangleDecl()
328 const char *id = sthis->ident->toChars(); in mangleDecl()
329 toBuffer(id, sthis); in mangleDecl()
331 if (FuncDeclaration *fd = sthis->isFuncDeclaration()) in mangleDecl()
335 else if (sthis->type->deco) in mangleDecl()
337 buf->writestring(sthis->type->deco); in mangleDecl()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddmangle.d454 void mangleDecl(Declaration sthis) in mangleDecl() argument
456 mangleParent(sthis); in mangleDecl()
457 assert(sthis.ident); in mangleDecl()
458 mangleIdentifier(sthis.ident, sthis); in mangleDecl()
459 if (FuncDeclaration fd = sthis.isFuncDeclaration()) in mangleDecl()
463 else if (sthis.type) in mangleDecl()
465 visitWithMask(sthis.type, 0); in mangleDecl()
/netbsd-src/crypto/external/bsd/netpgp/dist/bindings/python/
H A Dnetpgppython_wrap.c2173 PySwigObject *sthis = SWIG_Python_GetSwigThis(obj[0]); in SWIG_Python_InitShadowInstance() local
2174 if (sthis) { in SWIG_Python_InitShadowInstance()
2175 PySwigObject_append((PyObject*) sthis, obj[1]); in SWIG_Python_InitShadowInstance()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A DChangeLog-201585 * d-irstate.h (IRState): Move func, mod, sthis, deferred,
H A DChangeLog-2013728 (IRState::sthis): New member which holds the chain of function.