HomeSort by relevance Sort by last modified time
    Searched defs:tyKind (Results 1 - 8 of 8) sorted by null

  /external/turbine/java/com/google/turbine/types/
Erasure.java 29 switch (ty.tyKind()) {
40 throw new AssertionError(ty.tyKind());
Canonicalize.java 30 import com.google.turbine.type.Type.TyKind;
67 switch (type.tyKind()) {
82 throw new AssertionError(type.tyKind());
256 switch (type.tyKind()) {
275 throw new AssertionError(type.tyKind());
310 if (type.tyKind() == TyKind.TY_VAR) {
  /external/turbine/java/com/google/turbine/binder/
ConstBinder.java 47 import com.google.turbine.type.Type.TyKind;
208 if (type.tyKind() != TyKind.CLASS_TY) {
244 switch (base.type().tyKind()) {
294 switch (type.tyKind()) {
326 throw new AssertionError(type.tyKind());
DisambiguateTypeAnnotations.java 193 switch (type.tyKind()) {
218 throw new AssertionError(type.tyKind());
ConstEvaluator.java 167 return new Type.PrimTy(((PrimTy) type).tykind(), ImmutableList.of());
291 switch (ty.tyKind()) {
298 throw new AssertionError(ty.tyKind());
421 return coerce(expr, ((Tree.PrimTy) t.ty()).tykind());
952 switch (ty.tyKind()) {
972 throw new AssertionError(ty.tyKind());
  /external/turbine/java/com/google/turbine/lower/
LowerSignature.java 54 switch (ty.tyKind()) {
68 throw new AssertionError(ty.tyKind());
247 switch (ty.tyKind()) {
265 throw new AssertionError(ty.tyKind());
Lower.java 607 switch (type.tyKind()) {
626 throw new AssertionError(type.tyKind());
  /external/turbine/java/com/google/turbine/type/
Type.java 31 enum TyKind {
51 TyKind tyKind();
57 public TyKind tyKind() {
58 return TyKind.VOID_TY;
93 public TyKind tyKind() {
94 return TyKind.CLASS_TY;
173 public TyKind tyKind()
    [all...]

Completed in 493 milliseconds