Home
last modified time | relevance | path

Searched refs:STCtrusted (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dclone.c43 s2 |= STCtrusted; in mergeFuncAttrs()
57 else if (sa & STCtrusted) in mergeFuncAttrs()
58 stc |= STCtrusted; in mergeFuncAttrs()
59 else if ((so & (STCtrusted | STCsafe)) == (STCtrusted | STCsafe)) in mergeFuncAttrs()
60 stc |= STCtrusted; in mergeFuncAttrs()
244 stc = (stc & ~STCsafe) | STCtrusted; in buildOpAssign()
743 … TypeFunction *tf = new TypeFunction(parameters, Type::thash_t, 0, LINKd, STCnothrow | STCtrusted); in buildXtoHash()
835 stc = (stc & ~STCsafe) | STCtrusted; in buildPostBlit()
855 stc = (stc & ~STCsafe) | STCtrusted; in buildPostBlit()
887 stc = (stc & ~STCsafe) | STCtrusted; in buildPostBlit()
[all …]
H A Ddeclaration.h72 …CATTR (STCref | STCnothrow | STCnogc | STCpure | STCproperty | STCsafe | STCtrusted | STCsystem)
76 #define STCtrusted 0x400000000LL macro
99 STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable | STClocal);
H A Darrayop.c65 StorageClass stc = STCtrusted | STCpure | STCnothrow | STCnogc; in buildArrayOp()
H A Dattrib.c425 if (stc & (STCsafe | STCtrusted | STCsystem)) in newScope()
426 scstc &= ~(STCsafe | STCtrusted | STCsystem); in newScope()
H A Ddstruct.c227 sc2->stc &= STCsafe | STCtrusted | STCsystem; in newScope()
H A Dparse.c133 stc == STCsafe || stc == STCtrusted || stc == STCsystem) in parseModule()
1000 if (stc & (STCsafe | STCsystem | STCtrusted)) in appendStorageClass()
1002 StorageClass u = storageClass & (STCsafe | STCsystem | STCtrusted); in appendStorageClass()
1035 stc = STCtrusted; in parseAttribute()
4019 pAttrs->storageClass &= (STCsafe | STCsystem | STCtrusted); in parseDeclarations()
H A Dfunc.c585 sc->stc &= ~(STCsafe | STCsystem | STCtrusted); in semantic()
588 if (tf->trust == TRUSTtrusted) sc->stc |= STCtrusted; in semantic()
1468 STCproperty | STCnothrow | STCpure | STCsafe | STCtrusted | STCsystem); in semantic3()
H A Dhdrgen.c2049 if (d->storage_class & STCtrusted) in visit()
3301 { STCtrusted, TOKat, "@trusted" }, in stcToChars()
H A Dmtype.c5183 if (stc & STCtrusted) in TypeFunction()
5502 if (sc->stc & STCtrusted) in semantic()
H A Dstatementsem.c3733 if (!(cas->stc & (STCtrusted|STCsafe)) && sc->func->setUnsafe()) in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddeclaration.h82 #define STCtrusted 0x4000000000ULL /// `@trusted` macro
105 …CATTR (STCref | STCnothrow | STCnogc | STCpure | STCproperty | STCsafe | STCtrusted | STCsystem)