Home
last modified time | relevance | path

Searched refs:PrimTy (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
DMicrosoftDemangle.cpp161 enum class PrimTy : uint8_t { enum
257 PrimTy Prim = PrimTy::Unknown;
585 if (Ty.Prim == PrimTy::Function) { in outputPre()
621 case PrimTy::Void: in outputPre()
624 case PrimTy::Bool: in outputPre()
627 case PrimTy::Char: in outputPre()
630 case PrimTy::Schar: in outputPre()
633 case PrimTy::Uchar: in outputPre()
636 case PrimTy::Char16: in outputPre()
639 case PrimTy::Char32: in outputPre()
[all …]
/external/turbine/javatests/com/google/turbine/model/
DConstTest.java26 import com.google.turbine.type.Type.PrimTy;
81 new TurbineClassValue(PrimTy.create(TurbineConstantTypeKind.INT, ImmutableList.of())), in equalsTest()
82 new TurbineClassValue(PrimTy.create(TurbineConstantTypeKind.INT, ImmutableList.of()))) in equalsTest()
/external/turbine/javatests/com/google/turbine/lower/
DLowerSignatureTest.java30 import com.google.turbine.type.Type.PrimTy;
144 .signature(PrimTy.create(TurbineConstantTypeKind.BOOLEAN, ImmutableList.of())))) in primitive()
162 PrimTy.create( in array()
DLowerTest.java49 import com.google.turbine.type.Type.PrimTy;
114 PrimTy.create(TurbineConstantTypeKind.INT, ImmutableList.of()), in hello()
150 PrimTy.create(TurbineConstantTypeKind.INT, ImmutableList.of()), in hello()
/external/turbine/java/com/google/turbine/binder/
DDisambiguateTypeAnnotations.java43 import com.google.turbine.type.Type.PrimTy;
202 PrimTy primTy = (PrimTy) type; in addAnnotationsToType()
203 return Type.PrimTy.create(primTy.primkind(), appendAnnotations(primTy.annos(), extra)); in addAnnotationsToType()
DTypeBinder.java51 import com.google.turbine.tree.Tree.PrimTy;
329 Type.PrimTy.create(TurbineConstantTypeKind.INT, ImmutableList.of()),
621 return bindPrimTy(scope, (Tree.PrimTy) t); in bindTy()
697 private Type.PrimTy bindPrimTy(CompoundScope scope, PrimTy t) { in bindPrimTy()
698 return Type.PrimTy.create(t.tykind(), bindAnnotations(scope, t.annos())); in bindPrimTy()
DConstEvaluator.java57 import com.google.turbine.tree.Tree.PrimTy;
177 return Type.PrimTy.create(((PrimTy) type).tykind(), ImmutableList.of()); in evalClassLiteralType()
322 return coerce((Const.Value) value, ((Type.PrimTy) ty).primkind()); in cast()
447 return coerce(expr, ((Tree.PrimTy) t.ty()).tykind()); in evalCast()
997 return coerce((Const.Value) value, ((Type.PrimTy) ty).primkind()); in evalAnnotationValue()
/external/turbine/java/com/google/turbine/type/
DType.java195 abstract class PrimTy implements Type { class
197 public static PrimTy create(TurbineConstantTypeKind tykind, ImmutableList<AnnoInfo> annos) { in create()
/external/turbine/java/com/google/turbine/parse/
DParser.java53 import com.google.turbine.tree.Tree.PrimTy;
1177 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.BOOLEAN); in referenceType()
1181 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.BYTE); in referenceType()
1185 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.SHORT); in referenceType()
1189 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.INT); in referenceType()
1193 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.LONG); in referenceType()
1197 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.CHAR); in referenceType()
1201 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.DOUBLE); in referenceType()
1205 ty = new PrimTy(position, typeAnnos, TurbineConstantTypeKind.FLOAT); in referenceType()
DConstExpressionParser.java168 return finishClassLiteral(position, new Tree.PrimTy(position, ImmutableList.of(), type)); in primitiveClassLiteral()
562 return new Tree.TypeCast(position, new Tree.PrimTy(position, ImmutableList.of(), ty), rhs); in castTail()
/external/turbine/java/com/google/turbine/lower/
DLowerSignature.java41 import com.google.turbine.type.Type.PrimTy;
65 return refBaseTy((PrimTy) ty); in signature()
75 private Sig.BaseTySig refBaseTy(PrimTy t) { in refBaseTy()
DLower.java737 lowerTypeAnnotations(((Type.PrimTy) type).annos(), path); in lowerTypeAnnotations()
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java92 return Type.PrimTy.create(((Sig.BaseTySig) sig).type(), ImmutableList.of()); in bindTy()
168 switch (((Type.PrimTy) type).primkind()) { in bindConstValue()
/external/turbine/java/com/google/turbine/tree/
DTree.java210 public static class PrimTy extends Type { class in Tree
213 public PrimTy(int position, ImmutableList<Anno> annos, TurbineConstantTypeKind tykind) { in PrimTy() method in Tree.PrimTy
1239 O visitPrimTy(PrimTy primTy, I input); in visitPrimTy()
DPretty.java116 public Void visitPrimTy(Tree.PrimTy primTy, Void input) { in visitPrimTy()