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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
object.h 19 enum DYNCAST
54 virtual DYNCAST dyncast() const;
rootobject.d 21 enum DYNCAST : int
63 DYNCAST dyncast() const nothrow pure @nogc @safe
65 return DYNCAST.object;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
identifier.h 30 DYNCAST dyncast() const;
identifier.d 139 override DYNCAST dyncast() const
141 return DYNCAST.identifier;
nogc.d 233 import dmd.root.rootobject : RootObject, DYNCAST;
241 assert(hook.dyncast() == DYNCAST.dsymbol, "Expected _d_HookTraceImpl's second template parameter to be an alias to the hook!");
init.d 47 override DYNCAST dyncast() const nothrow pure
49 return DYNCAST.initializer;
dsymbol.d 311 if (o.dyncast() != DYNCAST.dsymbol)
684 override final DYNCAST dyncast() const
686 return DYNCAST.dsymbol;
940 switch (id.dyncast())
942 case DYNCAST.identifier:
945 case DYNCAST.dsymbol:
967 case DYNCAST.type:
968 case DYNCAST.expression
    [all...]
template.h 37 DYNCAST dyncast() const { return DYNCAST_TUPLE; } function in class:Tuple
typesem.d 242 if (id.dyncast() == DYNCAST.expression ||
243 id.dyncast() == DYNCAST.type)
345 if (sm && id.dyncast() == DYNCAST.identifier)
356 if (id.dyncast() == DYNCAST.dsymbol)
363 assert(id.dyncast() == DYNCAST.identifier)
    [all...]
transitivevisitor.d 426 if (id.dyncast() == DYNCAST.dsymbol)
428 else if (id.dyncast() == DYNCAST.expression)
430 else if (id.dyncast() == DYNCAST.type)
cond.d 59 override final DYNCAST dyncast() const
61 return DYNCAST.condition;
dsymbol.h 214 DYNCAST dyncast() const { return DYNCAST_DSYMBOL; } function in class:Dsymbol
mtype.h 227 DYNCAST dyncast() const { return DYNCAST_TYPE; } function in class:Type
573 DYNCAST dyncast() const { return DYNCAST_PARAMETER; } function in class:TRUST::Parameter
dtemplate.d 95 if (!o || o.dyncast() != DYNCAST.expression)
103 if (!o || o.dyncast() != DYNCAST.dsymbol)
111 if (!o || o.dyncast() != DYNCAST.type)
119 if (!o || o.dyncast() != DYNCAST.tuple)
127 if (!o || o.dyncast() != DYNCAST.parameter
    [all...]
cppmangle.d 301 //printf("find %p %d %s\n", p, p.dyncast(), p ? p.toChars() : null);
318 //printf("append %p %d %s\n", p, p.dyncast(), p ? p.toChars() : "null");
440 if (this.context.res.dyncast() == DYNCAST.dsymbol)
2163 switch (base.dyncast())
2165 case DYNCAST.dsymbol:
2174 case DYNCAST.type:
statement.d 81 override final DYNCAST dyncast() const
83 return DYNCAST.statement;
expression.h 93 DYNCAST dyncast() const { return DYNCAST_EXPRESSION; } function in class:Expression
mtype.d 502 override final DYNCAST dyncast() const
504 return DYNCAST.type;
5363 with (DYNCAST) final switch (id.dyncast())
6837 override DYNCAST dyncast() const
6839 return DYNCAST.parameter;
hdrgen.d 3838 if (id.dyncast() == DYNCAST.dsymbol)
3844 else if (id.dyncast() == DYNCAST.expression)
3850 else if (id.dyncast() == DYNCAST.type)
declaration.d 600 if (o.dyncast() != DYNCAST.type)
602 //printf("\tnot[%d], %p, %d\n", i, o, o.dyncast());
dtoh.d 1811 if (arg.dyncast != DYNCAST.identifier)
1813 printf("arg.dyncast() = %d\n", arg.dyncast());
dsymbolsem.d 2174 assert(e.dyncast() == DYNCAST.expression);
2293 assert(e.dyncast() == DYNCAST.expression);
expression.d 752 override final DYNCAST dyncast() const
754 return DYNCAST.expression;
expressionsem.d 6547 if (o.dyncast() == DYNCAST.expression)
6558 else if (o.dyncast() == DYNCAST.dsymbol)
6569 else if (o.dyncast() == DYNCAST.type)
dinterpret.d 7469 assert(hook.dyncast() == DYNCAST.dsymbol, "Expected _d_HookTraceImpl's second template parameter to be an alias to the hook!");

Completed in 67 milliseconds