Searched refs:Attribute (Results 201 - 225 of 654) sorted by relevance

1234567891011>>

/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeArrayBuffer.java32 import jdk.nashorn.internal.objects.annotations.Attribute;
142 @Getter(attributes = Attribute.NOT_ENUMERABLE | Attribute.NOT_WRITABLE | Attribute.NOT_CONFIGURABLE)
155 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
167 @Function(attributes = Attribute.NOT_ENUMERABLE)
H A DNativeNumber.java39 import jdk.nashorn.internal.objects.annotations.Attribute;
67 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
71 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
75 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
79 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
83 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
159 @Function(attributes = Attribute.NOT_ENUMERABLE)
198 @Function(attributes = Attribute.NOT_ENUMERABLE)
226 @Function(attributes = Attribute.NOT_ENUMERABLE)
274 @Function(attributes = Attribute
[all...]
H A DNativeWeakSet.java30 import jdk.nashorn.internal.objects.annotations.Attribute;
84 @Function(attributes = Attribute.NOT_ENUMERABLE)
98 @Function(attributes = Attribute.NOT_ENUMERABLE)
111 @Function(attributes = Attribute.NOT_ENUMERABLE)
/openjdk10/langtools/test/tools/javap/typeAnnotations/
H A DJSR175Annotations.java59 test(cf, m, Attribute.RuntimeVisibleTypeAnnotations, true);
60 test(cf, m, Attribute.RuntimeInvisibleTypeAnnotations, false);
64 test(cf, m, Attribute.RuntimeVisibleTypeAnnotations, true);
65 test(cf, m, Attribute.RuntimeInvisibleTypeAnnotations, false);
73 Attribute attr = m.attributes.get(index);
89 Attribute attr = m.attributes.get(index);
H A DNewArray.java57 test(cf, m, Attribute.RuntimeVisibleTypeAnnotations, true);
58 test(cf, m, Attribute.RuntimeInvisibleTypeAnnotations, false);
64 Attribute attr = null;
68 int index = m.attributes.getIndex(cf.constant_pool, Attribute.Code);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/
H A DPMGClass.java31 * This class is derived from <em>Attribute</em> and represents a reference
35 * @see Attribute
37 public final class PMGClass extends Attribute {
174 public Attribute copy( final ConstantPool _constant_pool ) {
175 return (Attribute) clone();
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/standard/
H A DJobStateReason.java28 import javax.print.attribute.Attribute;
59 public class JobStateReason extends EnumSyntax implements Attribute {
457 public final Class<? extends Attribute> getCategory() {
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DFormat.java313 String string, AttributedCharacterIterator.Attribute key,
333 AttributedCharacterIterator.Attribute key, Object value) {
349 public static class Field extends AttributedCharacterIterator.Attribute {
/openjdk10/langtools/test/tools/javac/T6695379/
H A DAnnotationsAreNotCopiedToBridgeMethodsTest.java44 import com.sun.tools.classfile.Attribute;
71 Attribute.RuntimeVisibleAnnotations,
72 Attribute.RuntimeVisibleParameterAnnotations);
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DAnnotatedTypeImpl.java29 import com.sun.tools.javac.code.Attribute;
30 import com.sun.tools.javac.code.Attribute.TypeCompound;
61 for (Attribute.Compound a : tas) {
/openjdk10/langtools/test/tools/javac/multicatch/7005371/
H A DT7005371.java33 import com.sun.tools.classfile.Attribute;
74 Code_attribute code = (Code_attribute)testMethod.attributes.get(Attribute.Code);
79 (LocalVariableTypeTable_attribute)code.attributes.get(Attribute.LocalVariableTypeTable);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesIteratorImpl.java43 * Attribute object of type javax.xml.stream.Attribute internally. It would avoid the need of creating
44 * new javax.xml.stream.Attribute object at the later stage.
55 protected XMLAttributesImpl.Attribute fLastReturnedItem ;
67 // should this be of type javax.xml.stream.Attribute ?
92 /** xxx: should we be doing this way ? Attribute event defines so many functions which doesn't make any sense
93 *for Attribute.
97 class AttributeImpl extends com.sun.org.apache.xerces.internal.util.XMLAttributesImpl.Attribute implements javax.xml.stream.events.Attribute{
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/
H A DStartTag.java54 private Attribute firstAtt;
55 private Attribute lastAtt;
98 Attribute a;
107 a = new Attribute(nsUri,localName);
/openjdk10/jdk/test/javax/swing/text/html/CSS/ColorValue/
H A DRGBColorValueTest.java36 import static javax.swing.text.html.CSS.Attribute.*;
/openjdk10/jdk/test/tools/jlink/plugins/SystemModuleDescriptors/src/m1/p1/
H A DMain.java40 import jdk.internal.org.objectweb.asm.Attribute;
50 public void visitAttribute(Attribute attr) {
58 Attribute[] attrs = new Attribute[] {
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DRuntimeVisibleTypeAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeVisibleTypeAnnotations), annotations);
H A DRuntimeInvisibleParameterAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeInvisibleParameterAnnotations), parameter_annotations);
H A DRuntimeVisibleParameterAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeVisibleParameterAnnotations), parameter_annotations);
H A DRuntimeInvisibleTypeAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeInvisibleTypeAnnotations), annotations);
H A DRuntimeInvisibleAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeInvisibleAnnotations), annotations);
H A DRuntimeVisibleAnnotations_attribute.java46 this(cp.getUTF8Index(Attribute.RuntimeVisibleAnnotations), annotations);
H A DRuntimeTypeAnnotations_attribute.java38 public abstract class RuntimeTypeAnnotations_attribute extends Attribute {
H A DRuntimeAnnotations_attribute.java38 public abstract class RuntimeAnnotations_attribute extends Attribute {
/openjdk10/langtools/test/tools/javac/linenumbers/
H A DNullCheckLineNumberTest.java11 import com.sun.tools.classfile.Attribute;
70 Code_attribute code_attribute = (Code_attribute)m.attributes.get(Attribute.Code);
71 for (Attribute at : code_attribute.attributes) {
72 if (Attribute.LineNumberTable.equals(at.getName(self.constant_pool))) {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/annotations/
H A DFunction.java28 import static jdk.nashorn.internal.objects.annotations.Attribute.DEFAULT_ATTRIBUTES;

Completed in 142 milliseconds

1234567891011>>