Home
last modified time | relevance | path

Searched refs:bindAnnotations (Results 1 – 3 of 3) sorted by relevance

/external/turbine/java/com/google/turbine/binder/
DTypeBinder.java171 ImmutableList<AnnoInfo> annotations = bindAnnotations(enclosingScope, base.decl().annos()); in bind()
402 ImmutableList<AnnoInfo> annotations = bindAnnotations(scope, tree.annos()); in bindTyParams()
466 bindAnnotations(scope, p.annos()), /*synthetic*/ in bindMethod()
511 ImmutableList<AnnoInfo> annotations = bindAnnotations(scope, t.annos()); in bindMethod()
550 ImmutableList<AnnoInfo> annotations = bindAnnotations(scope, decl.annos()); in bindField()
566 private ImmutableList<AnnoInfo> bindAnnotations( in bindAnnotations() method in TypeBinder
664 ImmutableList<AnnoInfo> annos = bindAnnotations(scope, flat.get(annoIdx).annos()); in bindClassTy()
699 annotations = bindAnnotations(scope, curr.annos()); in bindClassTyRest()
707 return Type.PrimTy.create(t.tykind(), bindAnnotations(scope, t.annos())); in bindPrimTy()
711 return Type.ArrayTy.create(bindTy(scope, t.elem()), bindAnnotations(scope, t.annos())); in bindArrTy()
[all …]
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBoundClass.java363 BytecodeBinder.bindAnnotations(cfi.annotations());
436 ? BytecodeBinder.bindAnnotations(m.parameterAnnotations().get(idx)) in bindMethod()
461 ImmutableList<AnnoInfo> annotations = BytecodeBinder.bindAnnotations(m.annotations()); in bindMethod()
572 return BytecodeBinder.bindAnnotations(classFile.get().annotations());
DBytecodeBinder.java140 static ImmutableList<AnnoInfo> bindAnnotations(List<AnnotationInfo> input) { in bindAnnotations() method