HomeSort by relevance Sort by last modified time
    Searched refs:AnnotationValue (Results 1 - 25 of 27) sorted by null

1 2

  /external/turbine/java/com/google/turbine/binder/bound/
AnnotationValue.java 25 public class AnnotationValue extends Const {
30 public AnnotationValue(ClassSymbol sym, ImmutableMap<String, Const> values) {
62 if (!(obj instanceof AnnotationValue)) {
65 AnnotationValue that = (AnnotationValue) obj;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeys.java 32 import javax.lang.model.element.AnnotationValue;
86 static Optional<? extends AnnotationValue> unwrapValue(AnnotationMirror mapKey) {
92 : Optional.<AnnotationValue>absent();
157 Optional<? extends AnnotationValue> unwrappedValue = unwrapValue(mapKey);
170 * <p>Note that {@link AnnotationValue#toString()} is the source-code representation of the value
178 extends SimpleAnnotationValueVisitor6<Snippet, AnnotationValue> {
187 public Snippet visitEnumConstant(VariableElement c, AnnotationValue p) {
193 public Snippet visitAnnotation(AnnotationMirror a, AnnotationValue p) {
198 public Snippet visitType(TypeMirror t, AnnotationValue p) {
203 public Snippet visitString(String s, AnnotationValue p)
    [all...]
ConfigurationAnnotations.java 38 import javax.lang.model.element.AnnotationValue;
124 List<? extends AnnotationValue> vals, String elementName) {
127 new Function<AnnotationValue, TypeMirror>() {
129 public TypeMirror apply(AnnotationValue typeValue) {
ContributionBinding.java 40 import javax.lang.model.element.AnnotationValue;
254 * {@link AnnotationValue#getValue()} on a single member or the whole {@link AnnotationMirror}
266 Optional<? extends AnnotationValue> unwrappedValue = unwrapValue(mapKey);
  /external/turbine/javatests/com/google/turbine/model/
ConstTest.java 22 import com.google.turbine.binder.bound.AnnotationValue;
65 new AnnotationValue(
67 new AnnotationValue(
70 new AnnotationValue(
72 new AnnotationValue(
  /external/desugar/java/com/google/devtools/common/options/processor/
ProcessorUtils.java 19 import javax.lang.model.element.AnnotationValue;
76 for (Map.Entry<? extends ExecutableElement, ? extends AnnotationValue> entry :
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
Helpers.java 12 import javax.lang.model.element.AnnotationValue;
61 public static TypeMirror getAnnotationTypeMirrorValue(AnnotationValue av) {
69 public static AnnotationValue getAnnotationTypeMirrorValue(AnnotationMirror annotationMirror,
71 for (Entry<? extends ExecutableElement, ? extends AnnotationValue> entry :
80 public static String getAnnotationStringValue(AnnotationValue av) {
84 public static int getAnnotationIntValue(AnnotationValue av) {
166 AnnotationValue className = Helpers.getAnnotationTypeMirrorValue(am, "className");
190 AnnotationValue av = Helpers.getAnnotationTypeMirrorValue(am, "value");
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
ImplementsValidator.java 17 import javax.lang.model.element.AnnotationValue;
67 private TypeElement getClassNameTypeElement(AnnotationValue cv) {
85 AnnotationValue av = Helpers.getAnnotationTypeMirrorValue(am, "value");
86 AnnotationValue cv = Helpers.getAnnotationTypeMirrorValue(am, "className");
88 AnnotationValue minSdkVal = Helpers.getAnnotationTypeMirrorValue(am, "minSdk");
90 AnnotationValue maxSdkVal = Helpers.getAnnotationTypeMirrorValue(am, "maxSdk");
93 AnnotationValue shadowPickerValue =
154 AnnotationValue looseSignaturesAttr =
167 private void addShadowNotInSdk(TypeElement shadowType, AnnotationValue av, AnnotationValue cv)
    [all...]
Validator.java 6 import javax.lang.model.element.AnnotationValue;
79 protected void message(Kind severity, String msg, AnnotationValue av) {
93 protected void error(String msg, AnnotationValue av) {
  /external/turbine/java/com/google/turbine/binder/bytecode/
BytecodeBinder.java 21 import com.google.turbine.binder.bound.AnnotationValue;
128 return bindAnnotationValue(type, ((ElementValue.AnnotationValue) value).annotation());
133 static AnnotationValue bindAnnotationValue(Type type, AnnotationInfo value) {
139 return new AnnotationValue(sym, values.build());
145 AnnotationValue anno = bindAnnotationValue(Type.VOID, annotation);
  /external/javapoet/src/main/java/com/squareup/javapoet/
AnnotationSpec.java 32 import javax.lang.model.element.AnnotationValue;
148 AnnotationValue value = annotation.getElementValues().get(executableElement);
272 @Override public Builder visitArray(List<? extends AnnotationValue> values, String name) {
273 for (AnnotationValue value : values) {
  /external/turbine/java/com/google/turbine/bytecode/
AnnotationWriter.java 23 import com.google.turbine.bytecode.ClassFile.AnnotationInfo.ElementValue.AnnotationValue;
74 writeAnnotationElementValue((AnnotationValue) value);
139 private void writeAnnotationElementValue(AnnotationValue value) {
ClassFile.java 473 class AnnotationValue implements ElementValue {
477 public AnnotationValue(AnnotationInfo annotation) {
ClassReader.java 24 import com.google.turbine.bytecode.ClassFile.AnnotationInfo.ElementValue.AnnotationValue;
351 return new AnnotationValue(readAnnotation(constantPool));
  /external/doclava/src/com/google/doclava/
Converter.java 23 import com.sun.javadoc.AnnotationValue;
773 private static HashMap<AnnotationValue, AnnotationValueInfo> mAnnotationValues =
774 new HashMap<AnnotationValue, AnnotationValueInfo>();
775 private static HashSet<AnnotationValue> mAnnotationValuesNeedingInit =
776 new HashSet<AnnotationValue>();
778 private static AnnotationValueInfo obtainAnnotationValue(AnnotationValue o, MethodInfo element) {
794 private static void initAnnotationValue(AnnotationValue o, AnnotationValueInfo v) {
806 } else if (orig instanceof AnnotationValue[]) {
807 AnnotationValue[] old = (AnnotationValue[]) orig
    [all...]
  /external/tensorflow/tensorflow/java/src/gen/java/org/tensorflow/processor/
OperatorProcessor.java 45 import javax.lang.model.element.AnnotationValue;
448 for (Map.Entry<? extends ExecutableElement, ? extends AnnotationValue> entry :
  /external/turbine/java/com/google/turbine/binder/
DisambiguateTypeAnnotations.java 26 import com.google.turbine.binder.bound.AnnotationValue;
256 elements.add(new AnnotationValue(element.sym(), element.values()));
ConstEvaluator.java 25 import com.google.turbine.binder.bound.AnnotationValue;
955 private AnnotationValue evalAnno(Tree.Anno t) {
972 return new AnnotationValue(annoInfo.sym(), annoInfo.values());
    [all...]
  /external/mockito/lib/
byte-buddy-1.8.15.jar 
  /external/turbine/java/com/google/turbine/lower/
Lower.java 27 import com.google.turbine.binder.bound.AnnotationValue;
303 ElementValue defaultValue = m.defaultValue() != null ? annotationValue(m.defaultValue()) : null;
536 result.put(entry.getKey(), annotationValue(entry.getValue()));
541 private ElementValue annotationValue(Const value) {
560 values.add(annotationValue(element));
566 AnnotationValue annotationValue = (AnnotationValue) value;
567 Boolean visible = isVisible(annotationValue.sym());
571 return new ElementValue.AnnotationValue(
    [all...]
  /art/runtime/dex/
dex_file_annotations.cc 58 struct DexFile::AnnotationValue {
417 DexFile::AnnotationValue* annotation_value,
615 DexFile::AnnotationValue new_annotation_value;
733 DexFile::AnnotationValue annotation_value;
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 46 import com.sun.javadoc.AnnotationValue;
599 AnnotationValue av = evp.value();
  /art/libdexfile/dex/
dex_file.h 192 struct AnnotationValue;
    [all...]
  /external/error_prone/checkerframework/
javacutil-2.5.3.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 

Completed in 555 milliseconds

1 2