HomeSort by relevance Sort by last modified time
    Searched refs:WildTy (Results 1 - 9 of 9) sorted by null

  /external/turbine/java/com/google/turbine/type/
Type.java 243 abstract class WildTy implements Type {
265 class WildUpperBoundedTy extends WildTy {
293 class WildLowerBoundedTy extends WildTy {
321 class WildUnboundedTy extends WildTy {
  /external/turbine/java/com/google/turbine/types/
Canonicalize.java 32 import com.google.turbine.type.Type.WildTy;
73 return canonicalizeWildTy(env, base, (WildTy) type);
258 return instantiateWildTy(mapping, (WildTy) type);
279 private static Type instantiateWildTy(Map<TyVarSymbol, Type> mapping, WildTy type) {
337 Env<ClassSymbol, TypeBoundClass> env, ClassSymbol base, WildTy type) {
  /external/turbine/java/com/google/turbine/binder/
ConstBinder.java 50 import com.google.turbine.type.Type.WildTy;
306 WildTy wildTy = (WildTy) type;
307 switch (wildTy.boundKind()) {
309 return new WildUnboundedTy(constEvaluator.evaluateAnnotations(wildTy.annotations()));
312 bindType(wildTy.bound()),
313 constEvaluator.evaluateAnnotations(wildTy.annotations()));
316 bindType(wildTy.bound()),
317 constEvaluator.evaluateAnnotations(wildTy.annotations()))
    [all...]
TypeBinder.java 588 return bindWildTy(scope, (Tree.WildTy) ty);
679 private Type bindWildTy(CompoundScope scope, Tree.WildTy t) {
  /external/turbine/java/com/google/turbine/lower/
LowerSignature.java 41 import com.google.turbine.type.Type.WildTy;
66 return wildTy((WildTy) ty);
120 private TySig wildTy(WildTy ty) {
Lower.java 65 import com.google.turbine.type.Type.WildTy;
618 lowerWildTyTypeAnnotations((WildTy) type, path);
641 private void lowerWildTyTypeAnnotations(WildTy type, TypePath path) {
  /external/turbine/java/com/google/turbine/parse/
Parser.java 49 import com.google.turbine.tree.Tree.WildTy;
926 new WildTy(position, typeAnnos, Optional.of(upper), Optional.<Type>absent()));
932 new WildTy(position, typeAnnos, Optional.<Type>absent(), Optional.of(lower)));
936 new WildTy(
943 new WildTy(
    [all...]
  /external/turbine/java/com/google/turbine/tree/
Tree.java 99 public static class WildTy extends Type {
103 public WildTy(
941 O visitWildTy(WildTy visitor, I input);
Pretty.java 76 public Void visitWildTy(Tree.WildTy wildTy, Void input) {
77 printAnnos(wildTy.annos());
79 if (wildTy.lower().isPresent()) {
81 wildTy.lower().get().accept(this, null);
83 if (wildTy.upper().isPresent()) {
85 wildTy.upper().get().accept(this, null);

Completed in 82 milliseconds