Home
last modified time | relevance | path

Searched refs:SourceBoundClass (Results 1 – 4 of 4) sorted by relevance

/external/turbine/java/com/google/turbine/binder/
DCompUnitPreprocessor.java24 import com.google.turbine.binder.bound.SourceBoundClass;
53 private final ImmutableList<SourceBoundClass> types;
60 ImmutableList<SourceBoundClass> types, in PreprocessedCompUnit()
75 public ImmutableList<SourceBoundClass> types() { in types()
114 ImmutableList.Builder<SourceBoundClass> types = ImmutableList.builder(); in preprocess()
121 types.add(new SourceBoundClass(sym, null, children, access, decl)); in preprocess()
129 ImmutableList.Builder<SourceBoundClass> types, in preprocessChildren()
149 types.add(new SourceBoundClass(sym, owner, children, access, decl)); in preprocessChildren()
DBinder.java32 import com.google.turbine.binder.bound.SourceBoundClass;
118 SimpleEnv<ClassSymbol, SourceBoundClass> ienv = bindSourceBoundClasses(preProcessedUnits); in bind()
186 static SimpleEnv<ClassSymbol, SourceBoundClass> bindSourceBoundClasses( in bindSourceBoundClasses()
188 SimpleEnv.Builder<ClassSymbol, SourceBoundClass> envBuilder = SimpleEnv.builder(); in bindSourceBoundClasses()
190 for (SourceBoundClass type : unit.types()) { in bindSourceBoundClasses()
191 SourceBoundClass prev = envBuilder.put(type.sym(), type); in bindSourceBoundClasses()
216 Env<ClassSymbol, SourceBoundClass> ienv, in bindPackages()
254 for (SourceBoundClass type : unit.types()) { in bindPackages()
/external/turbine/java/com/google/turbine/binder/bound/
DSourceBoundClass.java25 public class SourceBoundClass implements BoundClass { class
32 public SourceBoundClass( in SourceBoundClass() method in SourceBoundClass
DPackageSourceBoundClass.java29 private final SourceBoundClass base;
35 SourceBoundClass base, in PackageSourceBoundClass()