Home
last modified time | relevance | path

Searched defs:annos (Results 1 – 16 of 16) sorted by relevance

/external/turbine/java/com/google/turbine/type/
DType.java133 ClassSymbol sym, ImmutableList<Type> targs, ImmutableList<AnnoInfo> annos) { in create()
144 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.ClassTy.SimpleClassTy
152 public static ArrayTy create(Type elem, ImmutableList<AnnoInfo> annos) { in create()
165 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.ArrayTy
172 public static TyVar create(TyVarSymbol sym, ImmutableList<AnnoInfo> annos) { in create()
190 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.TyVar
197 public static PrimTy create(TurbineConstantTypeKind tykind, ImmutableList<AnnoInfo> annos) { in create()
210 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.PrimTy
/external/turbine/java/com/google/turbine/parse/
DParser.java102 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in compilationUnit() local
215 private TyDecl interfaceDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in interfaceDeclaration()
247 private TyDecl annotationDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in annotationDeclaration()
266 private TyDecl enumDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in enumDeclaration()
301 private ModDecl moduleDeclaration(boolean open, ImmutableList<Anno> annos) { in moduleDeclaration()
442 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in enumMembers() local
491 private TyDecl classDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in classDeclaration()
529 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in classMembers() local
641 EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in classMember()
781 ImmutableList<Anno> annos, in memberRest()
[all …]
/external/turbine/java/com/google/turbine/tree/
DTree.java120 private final ImmutableList<Anno> annos; field in Tree.Type
122 public Type(int position, ImmutableList<Anno> annos) { in Type()
127 public ImmutableList<Anno> annos() { in annos() method in Tree.Type
145 int position, ImmutableList<Anno> annos, Optional<Type> upper, Optional<Type> lower) { in WildTy()
184 public ArrTy(int position, ImmutableList<Anno> annos, Type elem) { in ArrTy()
213 public PrimTy(int position, ImmutableList<Anno> annos, TurbineConstantTypeKind tykind) { in PrimTy()
263 ImmutableList<Anno> annos) { in ClassTy()
660 private final ImmutableList<Anno> annos; field in Tree.VarDecl
668 ImmutableList<Anno> annos, in VarDecl()
694 public ImmutableList<Anno> annos() { in annos() method in Tree.VarDecl
[all …]
DPretty.java297 private void printAnnos(ImmutableList<Anno> annos) { in printAnnos()
/external/turbine/java/com/google/turbine/binder/bound/
DModuleInfo.java30 private final ImmutableList<AnnoInfo> annos; field in ModuleInfo
41 ImmutableList<AnnoInfo> annos, in ModuleInfo()
71 public ImmutableList<AnnoInfo> annos() { in annos() method in ModuleInfo
DSourceModuleInfo.java38 ImmutableList<AnnoInfo> annos, in SourceModuleInfo()
/external/turbine/javatests/com/google/turbine/lower/
DIntegrationTestSupport.java250 private static void sortTypeAnnotations(List<TypeAnnotationNode> annos) { in sortTypeAnnotations()
261 private static void sortAnnotations(List<AnnotationNode> annos) { in sortAnnotations()
339 private static void addTypesInTypeAnnotations(Set<String> types, List<TypeAnnotationNode> annos) { in addTypesInTypeAnnotations()
346 private static void addTypesInAnnotations(Set<String> types, List<AnnotationNode> annos) { in addTypesInAnnotations()
/external/turbine/java/com/google/turbine/binder/
DConstBinder.java82 ImmutableList<AnnoInfo> annos = in bind() local
151 ImmutableList<AnnoInfo> annos = constEvaluator.evaluateAnnotations(base.annotations()); in bindParameter() local
DModuleBinder.java101 ImmutableList<AnnoInfo> annos = constEvaluator.evaluateAnnotations(annoInfos.build()); in bind() local
DDisambiguateTypeAnnotations.java230 ImmutableList<AnnoInfo> annos, ImmutableList<AnnoInfo> extra) { in appendAnnotations()
DTypeBinder.java655 ImmutableList<AnnoInfo> annos = bindAnnotations(scope, flat.get(annoIdx).annos()); in bindClassTy() local
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DClassGen.java176 final AnnotationEntry[] annos = rva.getAnnotationEntries(); in unpackAnnotations() local
186 final AnnotationEntry[] annos = ria.getAnnotationEntries(); in unpackAnnotations() local
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java287 final AnnotationEntry[] annos= method.getAnnotationEntries(); in assertMethodAnnotations() local
313 final AnnotationEntry[] annos= parameterAnnotation.getAnnotationEntries(); in assertParameterAnnotations() local
/external/deqp-deps/SPIRV-Tools/source/opt/
Ddef_use_manager.cpp211 std::vector<Instruction*> annos; in GetAnnotations() local
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddef_use_manager.cpp211 std::vector<Instruction*> annos; in GetAnnotations() local
/external/turbine/java/com/google/turbine/lower/
DLower.java747 private void lowerTypeAnnotations(ImmutableList<AnnoInfo> annos, TypePath path) { in lowerTypeAnnotations()