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

  /external/turbine/java/com/google/turbine/types/
Erasure.java 28 public static Type erase(Type ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) {
36 return eraseArrayTy((Type.ArrayTy) ty, tenv);
38 return eraseTyVar((TyVar) ty, tenv);
45 TyVar ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) {
46 SourceTypeBoundClass.TyVarInfo info = tenv.apply(ty.sym());
48 return erase(info.superClassBound(), tenv);
51 return erase(info.interfaceBounds().get(0), tenv);
57 Type.ArrayTy ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) {
58 return new Type.ArrayTy(erase(ty.elementType(), tenv), ty.annos());
  /external/turbine/java/com/google/turbine/binder/
Binder.java 93 Env<ClassSymbol, SourceTypeBoundClass> tenv = local
97 tenv =
99 syms, tenv, CompoundEnv.<ClassSymbol, TypeBoundClass>of(classPathEnv).append(tenv));
100 tenv =
102 syms, tenv, CompoundEnv.<ClassSymbol, TypeBoundClass>of(classPathEnv).append(tenv));
103 tenv =
105 syms, tenv, CompoundEnv.<ClassSymbol, TypeBoundClass>of(classPathEnv).append(tenv));
    [all...]
  /external/turbine/java/com/google/turbine/lower/
Lower.java 186 Function<TyVarSymbol, TyVarInfo> tenv = new TyVarEnv(m.tyParams()); local
188 String desc = methodDescriptor(m, tenv);
193 exceptions.add(sig.descriptor(((ClassTy) Erasure.erase(e, tenv)).sym()));
256 private String methodDescriptor(MethodInfo m, Function<TyVarSymbol, TyVarInfo> tenv) {
260 fparams.add(sig.signature(Erasure.erase(t.type(), tenv))); local
262 TySig result = sig.signature(Erasure.erase(m.returnType(), tenv));
269 Function<TyVarSymbol, TyVarInfo> tenv = new TyVarEnv(Collections.emptyMap()); local
270 String desc = SigWriter.type(sig.signature(Erasure.erase(f.type(), tenv)));
  /external/v8/src/wasm/
function-body-decoder.cc 948 SsaEnv* tenv = Split(fenv); local
950 BUILD(BranchNoHint, cond.node, &tenv->control, &fenv->control);
951 ssa_env_ = tenv;
    [all...]
  /external/valgrind/VEX/priv/
ir_opt.c 3883 HashHW* tenv = newHHW(); \/* :: IRTemp -> IRTemp *\/ local
    [all...]

Completed in 185 milliseconds