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

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
astcodegen.d 96 alias isType = dmd.dtemplate.isType;
traits.d 490 t = isType(o);
493 t = isType(o);
612 auto t = isType(o);
633 auto t = isType(o);
655 auto t = isType(o);
1022 if (auto t = isType(o))
1289 Type t = isType(o);
1734 auto t = isType(o);
1892 Type t = isType(o);
1913 Type t = isType(o)
    [all...]
templateparamsem.d 156 Type ta = isType(o);
cppmangle.d 450 Type t = isType(o);
561 Type t = isType((*ti.tiargs)[j]);
730 Type t = isType(o);
749 Type t = isType(o);
1602 auto type = isType(this.context.res);
1961 if (auto type = this.context.res.isType())
2099 if (Type ta = isType(o))
2118 Type ta = isType(o);
template.h 36 // kludge for template.isType()
312 Type *isType(RootObject *o);
dtemplate.d 108 extern (C++) inout(Type) isType(inout RootObject o)
144 if (const t = isType(o))
175 inout t = isType(o);
189 //printf("e %p s %p t %p v %p\n", isExpression(oarg), isDsymbol(oarg), isType(oarg), isTuple(oarg));
207 if (auto ta = isType(oarg))
276 if (auto t1 = isType(o1))
278 auto t2 = isType(o2);
394 if (auto t1 = isType(o1))
499 if (Type t = isType(o))
521 // kludge for template.isType()
    [all...]
typesem.d 126 auto tindex = isType(oindex);
171 if (auto t = isType(o))
1857 (*elems)[i] = src.isDotTypeExp().sym.isType();
1873 result = e.isDotTypeExp().sym.isType();
3302 pt = o.isType();
3308 if (auto t = o.isType())
dtoh.d 1731 else if (AST.isType(sym))
2063 if (!AST.isType(o))
2072 if (auto tt = AST.isType(o))
dmangle.d 718 Type ta = isType(o);
transitivevisitor.d 715 if (auto t = AST.isType(oarg))
ctfeexpr.d 1202 Type t1 = isType(e1.isTypeidExp().obj);
1203 Type t2 = isType(e2.isTypeidExp().obj);
dsymbolsem.d 2584 reliesOnTident(isType(tap.specAlias), &tparams))
2717 Type ta = isType(o);
2723 Type tmta = isType(tmo);
6010 Type t = isType((*tempinst.tiargs)[i]);
6389 Type ta = tempinst.tdtypes[0].isType();
hdrgen.d 3441 if (Type t = isType(oarg))
3482 if (auto t = isType(oarg))
dinterpret.d 2388 if (Type t = isType(e.obj))
6231 if (auto t = isType(ex.isTypeidExp().obj))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 373 if (isType(C.getTag()) || (C.getTag() == dwarf::DW_TAG_subprogram && isType(C.getParent()->getTag()))) {
DwarfUnit.cpp 1654 assert(dwarf::isType(ContextDIE->getTag()) &&
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
operations.d 36 T[] arrayOp(T : T[], Args...)(T[] res, Filter!(isType, Args) args) @trusted @nogc pure nothrow
155 enum idx = staticIndexOf!(not!isType, Args);
385 enum isType(T) = true;
386 enum isType(alias a) = false;
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTWriter.h 176 DeclOrType(Decl *D) : Stored(D), IsType(false) {}
177 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {}
179 bool isType() const { return IsType; }
180 bool isDecl() const { return !IsType; }
183 assert(isType() && "Not a type!");
194 bool IsType;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 919 static bool isType(const Metadata *MD) { return !MD || isa<DIType>(MD); }
1033 AssertDI(isType(N.getRawExtraData()), "invalid pointer to member type", &N,
1053 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N,
1095 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N,
1100 AssertDI(isType(N.getRawVTableHolder()), "invalid vtable holder", &N,
1149 AssertDI(isType(Ty), "invalid subroutine type ref", &N, Types, Ty);
1247 AssertDI(isType(N.getRawContainingType()), "invalid containing type", &N,
1362 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType());
1394 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType());
1408 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Dwarf.h 112 inline bool isType(Tag T) {
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
traits.d 85 * $(LREF isType)
8956 * in conjunction with other templates, e.g. `allSatisfy!(isType, X)`.
8961 enum isType(alias X) = is(X);
8972 static assert(isType!int);
8973 static assert(isType!string);
8974 static assert(isType!(int[int]));
8975 static assert(isType!S);
8976 static assert(isType!C);
8977 static assert(isType!I);
8978 static assert(isType!U)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 544 if (TypeDie && !isType(TypeDie.getTag())) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp 619 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
651 if (isType) {
761 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
765 if (isType) {
  /src/external/gpl3/gcc.old/dist/gcc/d/
expr.cc 2032 if (Type *tid = isType (e->obj))
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5237 bool IsType, void *TyOrEx,
6077 SourceLocation LParenLoc, bool isType,
6092 SourceLocation LParenLoc, bool isType,

Completed in 93 milliseconds

1 2