/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/ |
D | MicrosoftDemangle.cpp | 161 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/ |
D | ConstTest.java | 26 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/ |
D | LowerSignatureTest.java | 30 import com.google.turbine.type.Type.PrimTy; 144 .signature(PrimTy.create(TurbineConstantTypeKind.BOOLEAN, ImmutableList.of())))) in primitive() 162 PrimTy.create( in array()
|
D | LowerTest.java | 49 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/ |
D | DisambiguateTypeAnnotations.java | 43 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()
|
D | TypeBinder.java | 51 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()
|
D | ConstEvaluator.java | 57 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/ |
D | Type.java | 195 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/ |
D | Parser.java | 53 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()
|
D | ConstExpressionParser.java | 168 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/ |
D | LowerSignature.java | 41 import com.google.turbine.type.Type.PrimTy; 65 return refBaseTy((PrimTy) ty); in signature() 75 private Sig.BaseTySig refBaseTy(PrimTy t) { in refBaseTy()
|
D | Lower.java | 737 lowerTypeAnnotations(((Type.PrimTy) type).annos(), path); in lowerTypeAnnotations()
|
/external/turbine/java/com/google/turbine/binder/bytecode/ |
D | BytecodeBinder.java | 92 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/ |
D | Tree.java | 210 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()
|
D | Pretty.java | 116 public Void visitPrimTy(Tree.PrimTy primTy, Void input) { in visitPrimTy()
|