Home
last modified time | relevance | path

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

/external/turbine/java/com/google/turbine/parse/
DParser.java103 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in compilationUnit() local
217 private TyDecl interfaceDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in interfaceDeclaration()
251 private TyDecl annotationDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in annotationDeclaration()
272 private TyDecl enumDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in enumDeclaration()
309 private ModDecl moduleDeclaration(boolean open, ImmutableList<Anno> annos) { in moduleDeclaration()
450 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in enumMembers() local
501 private TyDecl classDeclaration(EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in classDeclaration()
541 ImmutableList.Builder<Anno> annos = ImmutableList.builder(); in classMembers() local
654 EnumSet<TurbineModifier> access, ImmutableList<Anno> annos) { in classMember()
795 ImmutableList<Anno> annos, in memberRest()
[all …]
/external/turbine/java/com/google/turbine/processing/
DTurbineTypeMirror.java71 protected abstract ImmutableList<AnnoInfo> annos(); in annos() method in TurbineTypeMirror
154 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbinePrimitiveType
257 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineDeclaredType
293 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineArrayType
319 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineErrorType
391 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbinePackageType
434 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineNoType
462 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineVoidType
538 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineTypeVariable
589 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineTypeMirror.TurbineWildcardType
[all …]
DTurbineElement.java120 static AnnoInfo getAnnotation(Iterable<AnnoInfo> annos, ClassSymbol sym) { in getAnnotation()
181 protected abstract ImmutableList<AnnoInfo> annos(); in annos() method in TurbineElement
466 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbineTypeElement
637 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbineTypeParameterElement
823 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbineExecutableElement
924 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbineFieldElement
1074 private final Supplier<ImmutableList<AnnoInfo>> annos = field in TurbineElement.TurbinePackageElement
1086 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbinePackageElement
1196 protected ImmutableList<AnnoInfo> annos() { in annos() method in TurbineElement.TurbineParameterElement
/external/turbine/java/com/google/turbine/type/
DType.java172 ClassSymbol sym, ImmutableList<Type> targs, ImmutableList<AnnoInfo> annos) { in create()
183 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.ClassTy.SimpleClassTy
231 public static ArrayTy create(Type elem, ImmutableList<AnnoInfo> annos) { in create()
244 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.ArrayTy
267 public static TyVar create(TyVarSymbol sym, ImmutableList<AnnoInfo> annos) { in create()
291 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.TyVar
302 public static PrimTy create(TurbineConstantTypeKind tykind, ImmutableList<AnnoInfo> annos) { in create()
315 public abstract ImmutableList<AnnoInfo> annos(); in annos() method in Type.PrimTy
/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
669 ImmutableList<Anno> annos, in VarDecl()
697 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.java260 private static void sortTypeAnnotations(List<TypeAnnotationNode> annos) { in sortTypeAnnotations()
271 private static void sortAnnotations(List<AnnotationNode> annos) { in sortAnnotations()
349 private static void addTypesInTypeAnnotations(Set<String> types, List<TypeAnnotationNode> annos) { in addTypesInTypeAnnotations()
356 private static void addTypesInAnnotations(Set<String> types, List<AnnotationNode> annos) { in addTypesInAnnotations()
/external/turbine/java/com/google/turbine/binder/
DConstBinder.java93 ImmutableList<AnnoInfo> annos = in bind() local
163 ImmutableList<AnnoInfo> annos = constEvaluator.evaluateAnnotations(base.annotations()); in bindParameter() local
DModuleBinder.java107 ImmutableList<AnnoInfo> annos = constEvaluator.evaluateAnnotations(annoInfos.build()); in bind() local
DDisambiguateTypeAnnotations.java248 ImmutableList<AnnoInfo> annos, ImmutableList<AnnoInfo> extra) { in appendAnnotations()
DTypeBinder.java664 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/angle/third_party/vulkan-deps/spirv-tools/src/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/javassist/src/test/javassist/
DJvstTest5.java57 Annotation[] annos = t.getAnnotations(); in testTypeAnno() local
/external/turbine/java/com/google/turbine/lower/
DLower.java747 private void lowerTypeAnnotations(ImmutableList<AnnoInfo> annos, TypePath path) { in lowerTypeAnnotations()