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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
lambdacomp.d 438 && (cast(TypeIdentifier)p.type).ident.toString().length > 3
439 && strncmp((cast(TypeIdentifier)p.type).ident.toChars(), "__T", 3) == 0)
mtype.h 337 TypeIdentifier *isTypeIdentifier();
712 class TypeIdentifier : public TypeQualified
718 static TypeIdentifier *create(const Loc &loc, Identifier *ident);
720 TypeIdentifier *syntaxCopy();
725 /* Similar to TypeIdentifier, but with a TemplateInstance as the root
dtemplate.d 20 * - A `TypeInstance` or `TypeIdentifier` is encountered.
21 * `TypeInstance` have a bang (e.g. `Foo!(arg)`) while `TypeIdentifier` don't.
1500 TypeIdentifier tid = cast(TypeIdentifier)fparam.type;
1527 Type t = new TypeIdentifier(Loc.initial, ttp.ident);
1593 TypeIdentifier tid = cast(TypeIdentifier)prmtype;
1854 if (argtype.ty == Tarray && (prmtype.ty == Tsarray || prmtype.ty == Taarray && (taai = (cast(TypeAArray)prmtype).index).ty == Tident && (cast(TypeIdentifier)taai).idents.dim == 0))
1876 else if ((fparam.storageClass & STC.out_) == 0 && (argtype.ty == Tarray || argtype.ty == Tpointer) && templateParameterLookup(prmtype, parameters) != IDX_NOTFOUND && (cast(TypeIdentifier)prmtype).idents.dim == 0)
3173 TypeIdentifier tident = cast(TypeIdentifier)tparam
    [all...]
dimport.d 298 auto tname = new TypeIdentifier(loc, name);
cppmangle.d 1943 * - semantic passes are destructive, so the `TypeIdentifier` gets lost
1947 * looking up any `TypeIdentifier` at the template scope when found.
1951 override void visit(TypeIdentifier t)
2153 private TypeIdentifier tident;
2181 this.tident = cast(TypeIdentifier)t;
2268 public override void visit(TypeIdentifier o)
statement.d 51 * `TypeIdentifier` corresponding to `object.Throwable`
53 TypeIdentifier getThrowable()
55 auto tid = new TypeIdentifier(Loc.initial, Id.empty);
63 * TypeIdentifier corresponding to `object.Exception`
65 TypeIdentifier getException()
67 auto tid = new TypeIdentifier(Loc.initial, Id.empty);
visitor.h 74 class TypeIdentifier;
463 virtual void visit(TypeIdentifier *t) { visit((TypeQualified *)t); }
hdrgen.d 3212 (cast(TypeIdentifier)p.type).ident.toString().length > 3 &&
3213 strncmp((cast(TypeIdentifier)p.type).ident.toChars(), "__T", 3) == 0)
3443 if (t.equals(Type.tstring) || t.equals(Type.twstring) || t.equals(Type.tdstring) || t.mod == 0 && (t.isTypeBasic() || t.ty == Tident && (cast(TypeIdentifier)t).idents.dim == 0))
3864 void visitIdentifier(TypeIdentifier t)
3981 case Tident: return visitIdentifier(cast(TypeIdentifier)t);
mtype.d 439 sizeTy[Tident] = __traits(classInstanceSize, TypeIdentifier);
2710 inout(TypeIdentifier) isTypeIdentifier() { return ty == Tident ? cast(typeof(return))this : null; }
5423 extern (C++) final class TypeIdentifier : TypeQualified
5436 static TypeIdentifier create(const ref Loc loc, Identifier ident)
5438 return new TypeIdentifier(loc, ident);
5446 override TypeIdentifier syntaxCopy()
5448 auto t = new TypeIdentifier(loc, ident);
5460 //printf("TypeIdentifier::toDsymbol('%s')\n", toChars());
5483 * Similar to TypeIdentifier, but with a TemplateInstance as the root
parse.d 1692 tqual = new AST.TypeIdentifier(loc, id);
1821 ta = new AST.TypeIdentifier(token.loc, token.ident);
2899 at = new AST.TypeIdentifier(loc, id);
3640 t = parseBasicTypeStartingAt(new AST.TypeIdentifier(loc, id), dontLookDotIdents);
3656 t = parseBasicTypeStartingAt(new AST.TypeIdentifier(token.loc, Id.empty), dontLookDotIdents);
4462 bool isThis = (t.ty == Tident && (cast(AST.TypeIdentifier)t).ident == Id.This && token.value == TOK.assign);
5014 AST.Type t = new AST.TypeIdentifier(loc, id);
dmangle.d 404 override void visit(TypeIdentifier t)
parsetimevisitor.d 170 void visit(AST.TypeIdentifier t) { visit(cast(AST.TypeQualified)t); }
transitivevisitor.d 435 override void visit(AST.TypeIdentifier t)
437 //printf("Visiting TypeIdentifier\n");
typesem.d 392 * // TypeIdentifier 'a', 'e', and 'v' should be EXP.variable,
574 static Expression visitIdentifier(TypeIdentifier t)
1681 Type visitIdentifier(TypeIdentifier mtype)
1686 //printf("TypeIdentifier::semantic(%s)\n", mtype.toChars());
2996 void visitIdentifier(TypeIdentifier mt)
2998 //printf("TypeIdentifier::resolve(sc = %p, idents = '%s')\n", sc, mt.toChars());
3068 // Note close similarity to TypeIdentifier::resolve()
traits.d 301 override void visit(TypeIdentifier t)
dtoh.d 1792 override void visit(AST.TypeIdentifier t)
cparse.d 2316 // 1st identifier, save it for TypeIdentifier
2440 t = new AST.TypeIdentifier(loc, previd);
4795 // Try to resolve the TypeIdentifier to its type
statementsem.d 3962 auto tname = new TypeIdentifier(s.loc, name);
dsymbolsem.d 3950 auto tqual = new TypeIdentifier(funcdecl.loc, Id.CMain);
expressionsem.d 4176 if (p.type.ty == Tident && (cast(TypeIdentifier)p.type).ident == tp.ident)
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 3616 StringRef TypeIdentifier, StringRef ArgType,
3620 void emitImmPredicateFns(raw_ostream &OS, StringRef TypeIdentifier,
5411 raw_ostream &OS, StringRef CodeFieldName, StringRef TypeIdentifier,
5427 (" = GIPFP_" + TypeIdentifier + "_Invalid + 1,\n").str();
5429 OS << " GIPFP_" << TypeIdentifier << "_Predicate_" << Record->getName()
5437 << "Predicate_" << TypeIdentifier << "(unsigned PredicateID, " << ArgType << " "
5445 OS << " case GIPFP_" << TypeIdentifier << "_Predicate_"
5461 raw_ostream &OS, StringRef TypeIdentifier, StringRef ArgType,
5463 return emitCxxPredicateFns(OS, "ImmediateCode", TypeIdentifier, ArgType,

Completed in 96 milliseconds