Home
last modified time | relevance | path

Searched refs:tyKind (Results 1 – 13 of 13) sorted by relevance

/external/turbine/java/com/google/turbine/type/
DType.java56 TyKind tyKind(); in tyKind() method
62 public TyKind tyKind() {
98 public TyKind tyKind() { in tyKind() method in Type.ClassTy
160 public TyKind tyKind() { in tyKind() method in Type.ArrayTy
180 public TyKind tyKind() { in tyKind() method in Type.TyVar
205 public TyKind tyKind() { in tyKind() method in Type.PrimTy
230 public TyKind tyKind() { in tyKind() method in Type.WildTy
301 public TyKind tyKind() { in tyKind() method in Type.IntersectionTy
314 public TyKind tyKind() { in tyKind() method in Type.ErrorTy
/external/turbine/java/com/google/turbine/lower/
DLowerSignature.java57 switch (ty.tyKind()) { in signature()
71 throw new AssertionError(ty.tyKind()); in signature()
250 switch (ty.tyKind()) { in needsSig()
268 throw new AssertionError(ty.tyKind()); in needsSig()
309 return type.tyKind() == TyKind.CLASS_TY in isInterface()
DLower.java694 return type.tyKind() == TyKind.CLASS_TY in isInterface()
723 switch (type.tyKind()) { in lowerTypeAnnotations()
742 throw new AssertionError(type.tyKind()); in lowerTypeAnnotations()
/external/turbine/java/com/google/turbine/types/
DCanonicalize.java99 switch (type.tyKind()) { in canonicalize()
116 throw new AssertionError(type.tyKind()); in canonicalize()
284 switch (type.tyKind()) { in instantiate()
303 throw new AssertionError(type.tyKind()); in instantiate()
340 if (type.tyKind() == TyKind.TY_VAR) { in tyVarSym()
DErasure.java34 switch (ty.tyKind()) { in erase()
47 throw new AssertionError(ty.tyKind()); in erase()
/external/turbine/java/com/google/turbine/binder/
DConstBinder.java219 if (type.tyKind() != TyKind.CLASS_TY) { in bindRepeatable()
255 switch (base.type().tyKind()) { in fieldValue()
296 switch (type.tyKind()) { in bindType()
331 throw new AssertionError(type.tyKind()); in bindType()
DCanonicalTypeBinder.java46 if (base.superClassType() != null && base.superClassType().tyKind() == TyKind.CLASS_TY) { in bind()
57 if (i.tyKind() == TyKind.CLASS_TY) { in bind()
DDisambiguateTypeAnnotations.java200 switch (type.tyKind()) { in addAnnotationsToType()
225 throw new AssertionError(type.tyKind()); in addAnnotationsToType()
DConstEvaluator.java317 switch (ty.tyKind()) { in cast()
324 throw new AssertionError(ty.tyKind()); in cast()
995 switch (ty.tyKind()) { in evalAnnotationValue()
1015 throw new AssertionError(ty.tyKind()); in evalAnnotationValue()
DBinder.java361 switch (field.type().tyKind()) { in isConst()
/external/turbine/java/com/google/turbine/binder/bound/
DSourceTypeBoundClass.java99 if (superClassType.tyKind() != TyKind.CLASS_TY) { in superclass()
109 if (type.tyKind() == TyKind.CLASS_TY) { in interfaces()
/external/turbine/javatests/com/google/turbine/binder/bytecode/
DBytecodeBoundClassTest.java113 assertThat(((TurbineClassValue) c.methods().get(0).defaultValue()).type().tyKind()) in voidAnno()
115 assertThat(((TurbineClassValue) c.methods().get(1).defaultValue()).type().tyKind()) in voidAnno()
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java164 if (type.tyKind() != Type.TyKind.PRIM_TY) { in bindConstValue()