Searched defs:kind (Results 1 - 25 of 208) sorted by relevance

123456789

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsCollectorPolicy.hpp59 virtual CollectorPolicy::Name kind() { function in class:ASConcurrentMarkSweepPolicy
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DParNewGeneration.java34 public Generation.Name kind() { method in class:ParNewGeneration
H A DTenuredGeneration.java34 public Generation.Name kind() { method in class:TenuredGeneration
H A DSharedHeap.java69 public CollectedHeapName kind() { method in class:SharedHeap
/openjdk7/jdk/make/tools/swing-beans/beaninfo/
H A DSwingBeanInfoBase.java58 * a particular beans icon kind.
60 public Image getIcon(int kind) { argument
/openjdk7/langtools/test/tools/javac/api/
H A DT6437138.java38 public JFO(URI uri, JavaFileObject.Kind kind) { argument
39 super(uri, kind);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.hpp81 virtual Generation::Name kind() { return ASParNew; } function in class:ASParNewGeneration
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dinterpreter_zero.cpp62 AbstractInterpreter::MethodKind kind) {
61 generate_math_entry( AbstractInterpreter::MethodKind kind) argument
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DMessager.java40 * javax.tools.Diagnostic.Kind#ERROR error kind} will {@linkplain
57 * Prints a message of the specified kind.
59 * @param kind the kind of message
62 void printMessage(Diagnostic.Kind kind, CharSequence msg); argument
65 * Prints a message of the specified kind at the location of the
68 * @param kind the kind of message
72 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e); argument
75 * Prints a message of the specified kind a
83 printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a) argument
96 printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a, AnnotationValue v) argument
[all...]
/openjdk7/langtools/src/share/classes/javax/tools/
H A DForwardingJavaFileObject.java36 * @param <F> the kind of file object forwarded to by this object
57 public boolean isNameCompatible(String simpleName, Kind kind) { argument
58 return fileObject.isNameCompatible(simpleName, kind);
/openjdk7/langtools/test/tools/javac/
H A DVersionOpt.java94 void checkEqual(String kind, String found, String expect) { argument
96 System.err.println("error: unexpected value for " + kind);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DInternalBindingKey.java37 * the lengths of the id and kind strings for faster comparison.
47 public String kind; field in class:InternalBindingKey
61 this.kind = n.kind;
64 // Compare the keys by comparing name's id and kind
92 if( this.kind != null && that.kind != null )
94 if (this.kind.length() != that.kind.length() )
98 // If kind i
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DWatchEvent.java32 * <p> An event is classified by its {@link #kind() kind} and has a {@link
50 * An event kind, for the purposes of identification.
57 * Returns the name of the event kind.
84 * Returns the event kind.
86 * @return the event kind
88 Kind<T> kind(); method in interface:WatchEvent
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcStats.hpp44 virtual Name kind() { function in class:GCStats
65 virtual Name kind() { function in class:CMSGCStats
/openjdk7/hotspot/src/share/vm/memory/
H A DtenuredGeneration.hpp65 Generation::Name kind() { return Generation::MarkSweepCompact; } function in class:TenuredGeneration
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterpreter_x86_32.cpp108 address InterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) { argument
156 switch (kind) {
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DReplyNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
37 components.add(0, new NameNode(kind));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DEntityReferenceAction.java31 * An action operating on an entity reference composed of a kind and a QName.
36 public void perform(Kind kind, QName name); argument
H A DEntityReferenceValidator.java37 public boolean isValid(Kind kind, QName name); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DSOAPEntityReferenceValidator.java48 public boolean isValid(Kind kind, QName name) { argument
54 if (kind == SchemaKinds.XSD_TYPE) {
56 } else if (kind == SchemaKinds.XSD_ELEMENT) {
58 } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCValuePropertyInfo.java48 public final PropertyKind kind() { method in class:CValuePropertyInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DAttributePropertyInfoImpl.java99 public final PropertyKind kind() { method in class:AttributePropertyInfoImpl
H A DValuePropertyInfoImpl.java45 public PropertyKind kind() { method in class:ValuePropertyInfoImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPartDescriptorImpl.java41 public WSDLPartDescriptorImpl(XMLStreamReader xsr,QName name, WSDLDescriptorKind kind) { argument
44 this.type = kind;
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DTag.java66 * Return the kind of this tag.
68 * <code>kind()&nbsp;==&nbsp;name()</code>;
70 * than one tag of a given kind:
73 * <tr><th><tt> kind() </th> <th><tt> name() </th></tr>
83 String kind(); method in interface:Tag
105 * {@link SeeTag} of name "@link" and kind "@see".
133 * of kind "Text".
134 * Inline tags are represented as a {@link SeeTag} of kind "@link".

Completed in 825 milliseconds

123456789