Home
last modified time | relevance | path

Searched refs:elementValuePairs (Results 1 – 7 of 7) sorted by relevance

/external/turbine/java/com/google/turbine/bytecode/
DClassFile.java345 private final Map<String, ElementValue> elementValuePairs; field in ClassFile.AnnotationInfo
348 String typeName, boolean runtimeVisible, Map<String, ElementValue> elementValuePairs) { in AnnotationInfo() argument
351 this.elementValuePairs = elementValuePairs; in AnnotationInfo()
365 public Map<String, ElementValue> elementValuePairs() { in elementValuePairs() method in ClassFile.AnnotationInfo
366 return elementValuePairs; in elementValuePairs()
DAnnotationWriter.java52 output.writeShort(annotation.elementValuePairs().size()); in writeAnnotation()
53 for (Entry<String, ElementValue> entry : annotation.elementValuePairs().entrySet()) { in writeAnnotation()
/external/turbine/javatests/com/google/turbine/bytecode/
DClassReaderTest.java136 assertThat(annotation.elementValuePairs()).hasSize(1); in annotationDeclaration()
137 assertThat(annotation.elementValuePairs()).containsKey("value"); in annotationDeclaration()
138 ElementValue value = annotation.elementValuePairs().get("value"); in annotationDeclaration()
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBoundClass.java491 ElementValue val = annotation.elementValuePairs().get("value"); in bindRetention()
504 ElementValue val = annotation.elementValuePairs().get("value"); in bindTarget()
530 ElementValue val = annotation.elementValuePairs().get("value"); in bindRepeatable()
DBytecodeBinder.java136 for (Map.Entry<String, ElementValue> e : value.elementValuePairs().entrySet()) { in bindAnnotationValue()
/external/doclava/src/com/google/doclava/parser/
DJava.g174 * elementValuePair and elementValuePairs rules, then used them in the
722 ( elementValuePairs
729 elementValuePairs
DJavaParser.java6077 elementValuePairs(); in annotation()
6138 public final void elementValuePairs() throws RecognitionException { in elementValuePairs() method in JavaParser