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

  /external/turbine/java/com/google/turbine/type/
AnnoInfo.java 27 import com.google.turbine.tree.Tree.Anno;
34 private final Tree.Anno tree;
38 SourceFile source, ClassSymbol sym, Anno tree, ImmutableMap<String, Const> values) {
  /external/turbine/java/com/google/turbine/tree/
Tree.java 70 ANNO,
79 private final ImmutableList<Anno> annos;
81 public Type(int position, ImmutableList<Anno> annos) {
86 public ImmutableList<Anno> annos() {
104 int position, ImmutableList<Anno> annos, Optional<Type> upper, Optional<Type> lower) {
143 public ArrTy(int position, ImmutableList<Anno> annos, Type elem) {
172 public PrimTy(int position, ImmutableList<Anno> annos, TurbineConstantTypeKind tykind) {
222 ImmutableList<Anno> annos) {
612 private final ImmutableList<Anno> annos;
620 ImmutableList<Anno> annos
    [all...]
Pretty.java 23 import com.google.turbine.tree.Tree.Anno;
279 private void printAnnos(ImmutableList<Anno> annos) {
280 for (Tree.Anno anno : annos) {
281 anno.accept(this, null);
288 for (Tree.Anno anno : methDecl.annos()) {
289 anno.accept(this, null);
346 public Void visitAnno(Tree.Anno anno, Void input)
    [all...]
  /external/annotation-tools/annotation-file-utilities/tests/
Receivers.java 15 public void m(@Anno() String s) {}
67 @interface Anno {}
  /external/turbine/java/com/google/turbine/parse/
Parser.java 35 import com.google.turbine.tree.Tree.Anno;
91 ImmutableList.Builder<Anno> annos = ImmutableList.builder();
184 private TyDecl interfaceDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) {
215 private TyDecl annotationDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) {
233 private TyDecl enumDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) {
268 ImmutableList.Builder<Anno> annos = ImmutableList.builder();
317 private TyDecl classDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) {
354 ImmutableList.Builder<Anno> annos = ImmutableList.builder();
466 EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) {
476 annos = ImmutableList.<Anno>builder().addAll(annos).addAll(maybeAnnos()).build()
    [all...]
ConstExpressionParser.java 582 return new Tree.AnnoExpr(position, new Tree.Anno(position, name, args.build()));
  /external/turbine/java/com/google/turbine/binder/
TypeBinder.java 555 CompoundScope scope, ImmutableList<Tree.Anno> trees) {
557 for (Tree.Anno tree : trees) {
ConstEvaluator.java 922 private AnnotationValue evalAnno(Tree.Anno t) {

Completed in 181 milliseconds