Searched refs:declaration (Results 1 - 18 of 18) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/
H A DTraceSignatureVisitor.java73 private final StringBuilder declaration; field in class:TraceSignatureVisitor
109 this.declaration = new StringBuilder();
114 this.declaration = buf;
119 declaration.append(seenFormalParameter ? ", " : "<").append(name);
160 declaration.append(", ");
163 declaration.append('(');
175 declaration.append('(');
177 declaration.append(')');
197 declaration.append("void");
200 declaration
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DEntityReferenceEvent.java57 * Return the declaration of this entity.
67 public void setDeclaration(EntityDeclaration declaration) { argument
68 _entityDeclaration = declaration ;
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/generics/factory/
H A DGenericsFactory.java50 * Returns a new type variable declaration. Note that {@code name}
56 * @return a new type variable declaration
65 * generic declaration {@code declaration} with actual type arguments
68 * {@code declaration} is used as the owner of this parameterized
72 * If the type declaration does not represent a generic declaration
79 * @param declaration - the generic type declaration that is to be
83 * of the declaration wit
90 makeParameterizedType(Type declaration, Type[] typeArgs, Type owner) argument
[all...]
H A DCoreReflectionFactory.java73 * {@code CoreReflectionFactory} for the declaration and scope
77 * defining class loader of the declaration {@code d} (if {@code d}
78 * is a type declaration, or by the defining loader of the declaring
82 * @param d - the generic declaration (class, interface, method or
102 public ParameterizedType makeParameterizedType(Type declaration, argument
105 return ParameterizedTypeImpl.make((Class<?>) declaration,
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DXMLEncoder.java210 private final boolean declaration; field in class:XMLEncoder
253 * @param declaration whether the XML declaration should be generated;
276 public XMLEncoder(OutputStream out, String charset, boolean declaration, int indentation) { argument
286 this.declaration = declaration;
469 if (this.declaration) {
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DClassDefinition.java52 protected ClassDeclaration declaration; field in class:ClassDefinition
95 protected ClassDefinition(Object source, long where, ClassDeclaration declaration, argument
99 this.declaration = declaration;
166 * Get the class declaration
169 return declaration;
389 return declaration.getName();
396 return declaration.getType();
758 return (env.opt() && c.equals(declaration)) ||
769 && (f.clazz.getClassDeclaration().equals(declaration))) ||
[all...]
H A DBinaryClass.java53 public BinaryClass(Object source, ClassDeclaration declaration, int modifiers, argument
56 super(source, 0, declaration, modifiers, null, null);
221 * Called when an environment ties a binary definition to a declaration.
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/DefaultFactoryWrapperTest/xmlwrapperprovider/xwp/
H A DXMLEventFactoryWrapper.java162 public EntityReference createEntityReference(String name, EntityDeclaration declaration) { argument
163 return defaultImpl.createEntityReference(name, declaration);
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/xmlprovider2/xp2/
H A DXMLEventFactoryImpl.java161 public EntityReference createEntityReference(String name, EntityDeclaration declaration) { argument
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/
H A DXMLEventFactory.java471 * @param declaration the declaration for the event
475 EntityDeclaration declaration);
494 * This string contains the entire document type declaration that matches
474 createEntityReference(String name, EntityDeclaration declaration) argument
/openjdk10/jdk/make/src/classes/build/tools/generatenimbus/
H A DPainterGenerator.java445 String declaration = m.getDeclaration();
446 String variableName = colors.get(declaration);
449 colors.put(declaration, variableName);
451 variableName, declaration));
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DStyleSheet.java321 * Translates a CSS declaration to an AttributeSet that represents
322 * the CSS declaration. Typically this would be called as a
325 * @param decl a CSS declaration
326 * @return a set of attributes that represents the CSS declaration.
1051 * @param declaration the set of CSS attributes that
1054 void addRule(String[] selector, AttributeSet declaration, argument
1090 rule.addAttributes(declaration);
3229 * Parses the passed in CSS declaration into an AttributeSet.
3239 * Parses the passed in CSS declaration into an AttributeSet.
3243 return declaration
3372 MutableAttributeSet declaration = new SimpleAttributeSet(); field in class:StyleSheet.CssParser
[all...]
/openjdk10/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp301 // output declaration of class State
400 virtual void declaration() {} function in class:OutputMap
H A Doutput_c.cpp1609 syntax_err(node->_linenum, "For expand in %s to work, parameter declaration order in %s must follow matchrule\n",
3073 // The declaration of labelOper is in machine-independent file: machnode
3092 // The declaration of methodOper is in machine-independent file: machnode
3334 void declaration() { fprintf(_hpp, "extern const int reduceOp[];\n"); }
3369 void declaration() { fprintf(_hpp, "extern const int leftOp[];\n"); }
3399 void declaration() { fprintf(_hpp, "extern const int rightOp[];\n"); }
3429 void declaration() { fprintf(_hpp, "extern const char *ruleName[];\n"); }
3447 void declaration() { fprintf(_hpp, "extern const bool swallowed[];\n"); }
3468 void declaration() { fprintf(_hpp, "extern const bool instruction_chain_rule[];\n"); }
3495 map.declaration();
[all...]
H A Doutput_h.cpp1183 // The declaration of labelOper is in machine-independent file: machnode
1185 // The declaration of methodOper is in machine-independent file: machnode
1724 // Output the declaration for number of relocation entries
1875 // See if there is an "ins_pipe" declaration for this instruction
2119 void declaration() { } function in class:OutputMachOperands
2168 void declaration() { } function in class:OutputMachOpcodes
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java909 org.w3c.dom.Attr declaration = getNamespaceAttr(prefix);
910 if (declaration == null) {
914 removeAttributeNode(declaration);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DParser.java1096 throw error(AbstractParser.message("expected.stmt", "function declaration"), token);
1104 throw error(AbstractParser.message("expected.stmt", type.getName() + " declaration"), token);
1110 throw error(AbstractParser.message("expected.stmt", "class declaration"), token);
1531 /** First declaration with an initializer. */
1647 // Only set declaration flag on lexically scoped let/const as it adds runtime overhead.
1786 * Verify destructuring variable declaration binding pattern and extract bound variable declarations.
1940 // Var declaration captured in for outer block.
1948 // LET/CONST declaration captured in container block created above.
1953 // Var declaration captured in for outer block.
3746 * Parse function declaration
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DSourceClass.java101 ClassDeclaration declaration, String documentation,
106 declaration, modifiers, superClass, interfaces);
1111 // that the declaration for such an explicit constructor will have
100 SourceClass(Environment env, long where, ClassDeclaration declaration, String documentation, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], SourceClass outerClass, Identifier localName) argument

Completed in 216 milliseconds