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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astenums.d 49 final_ = 8, /// `final`
124 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ | STC.abstract_ | STC.synchronized_ |
133 STC.TYPECTOR | STC.final_ | STC.tls | STC.gshared | STC.ref_ | STC.return_ | STC.property |
157 (STC.auto_ | STC.scope_ | STC.static_ | STC.extern_ | STC.const_ | STC.final_ |
tokens.h 185 final_, member in class:TOK
tokens.d 176 final_,
520 TOK.final_,
726 TOK.final_: "final",
dtoh.d 778 (tdparent && adparent.isClassDeclaration() && !(this.storageClass & AST.STC.final_ || fd.isFinal))))
1436 if (cd.storage_class & AST.STC.final_ || (tdparent && this.storageClass & AST.STC.final_))
parse.d 629 case TOK.final_:
630 stc = STC.final_;
2829 case TOK.final_:
2830 stc = STC.final_;
4182 case TOK.final_:
4183 stc = STC.final_;
5731 case TOK.final_:
7486 case TOK.final_:
7718 case TOK.final_:
func.d 1856 printf("%p %d %d %d\n", isMember(), isStatic(), Declaration.isFinal(), ((cd = toParent().isClassDeclaration()) !is null && cd.storage_class & STC.final_));
1857 printf("result is %d\n", isMember() && (Declaration.isFinal() || (cd !is null && cd.storage_class & STC.final_)));
1866 return (cd !is null) && (cd.storage_class & STC.final_);
declaration.d 451 return (storage_class & STC.final_) != 0;
dsymbolsem.d 389 dsym.storage_class |= (sc.stc & ~(STC.synchronized_ | STC.override_ | STC.abstract_ | STC.final_));
692 if (StorageClass stc = dsym.storage_class & (STC.synchronized_ | STC.override_ | STC.abstract_ | STC.final_))
694 if (stc == STC.final_)
5014 if (cldec.baseClass.storage_class & STC.final_)
semantic3.d 486 stc |= fparam.storageClass & (STC.IOR | STC.return_ | STC.scope_ | STC.lazy_ | STC.final_ | STC.TYPECTOR | STC.nodtor | STC.returnScope);
traits.d 591 ((cast(TypeClass)t.toBasetype()).sym.storage_class & STC.final_) != 0);
hdrgen.d 2908 SCstring(STC.final_, Token.toString(TOK.final_)),
dtemplate.d 855 fparam.storageClass &= (STC.IOR | STC.lazy_ | STC.final_ | STC.TYPECTOR | STC.nodtor);
expressionsem.d 4752 else if ((cd.storage_class & STC.final_) != 0) // https://issues.dlang.org/show_bug.cgi?id=14211

Completed in 43 milliseconds