Searched refs:kind (Results 101 - 125 of 410) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java83 * @param kind the kind of primitive type to return
86 PrimitiveType getPrimitiveType(PrimitiveType.Kind kind); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParamTagImpl.java77 * Return the kind of this tag.
80 public String kind() { method in class:ParamTagImpl
H A DThrowsTagImpl.java98 * Return the kind of this tag. Always "@throws" for instances
102 public String kind() { method in class:ThrowsTagImpl
H A DJavadocEnter.java89 if (tree.sym.kind == Kinds.TYP || tree.sym.kind == Kinds.ERR) {
H A DJavadocMemberEnter.java67 if (meth == null || meth.kind != Kinds.MTH) return;
81 tree.sym.kind == Kinds.VAR &&
/openjdk7/langtools/src/share/classes/javax/tools/
H A DJavaFileObject.java77 * Any other kind.
82 * this kind of file object. If no convention exists, the
93 * Gets the kind of this file object.
95 * @return the kind
101 * simple name and kind. A simple name is a single identifier
107 * @param kind a kind
111 boolean isNameCompatible(String simpleName, Kind kind); argument
121 * @return the nesting kind, or {@code null} if the nesting kind
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp46 ValueStack::ValueStack(ValueStack* copy_from, Kind kind, int bci) argument
50 , _kind(kind)
55 assert(kind != EmptyExceptionState || !Compilation::current()->env()->jvmti_can_access_local_variables(), "need locals");
56 if (kind != EmptyExceptionState) {
62 if (kind != ExceptionState && kind != EmptyExceptionState) {
63 if (kind == Parsing) {
255 if (kind() == Parsing) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp121 void done_raw(const char * kind);
122 void tail(const char* kind);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp121 static vmIntrinsics::ID method_handle_intrinsic(MethodKind kind) { argument
122 if (kind >= method_handle_invoke_FIRST && kind <= method_handle_invoke_LAST)
123 return (vmIntrinsics::ID)( vmIntrinsics::FIRST_MH_SIG_POLY + (kind - method_handle_invoke_FIRST) );
159 static address entry_for_kind(MethodKind k) { assert(0 <= k && k < number_of_method_entries, "illegal kind"); return _entry_table[k]; }
165 static void print_method_kind(MethodKind kind) PRODUCT_RETURN;
321 address generate_method_entry(AbstractInterpreter::MethodKind kind);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java453 boolean hasRefs; // this kind of attr contains CP refs?
488 ce.kind = EK_CBLE;
566 byte kind; // EK_UINT, etc. field in class:Attribute.Layout.Element
596 switch (kind) {
607 + "<"+ (flags==0?"":""+flags)+kind+len
615 return (elems.length > 0 && elems[0].kind == EK_CBLE);
854 byte kind;
860 kind = EK_INT;
865 kind = EK_INT;
870 kind
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNode.java34 String kind; field in class:Node
46 void set(String kind, List<Node> components, int lineno) { argument
47 this.kind = kind;
196 kind + " - " + errmsg);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DType.java351 public WildcardType(Kind kind, Type boundType) { argument
352 this.kind = kind;
362 switch (kind) {
374 public final Kind kind; field in class:Type.WildcardType
/openjdk7/langtools/test/tools/javac/api/
H A DTestOperators.java27 * @summary Tree API: can't determine kind of operator
311 Tree.Kind kind = info.value();
315 switch (kind) {
328 if (testNode.getKind() != kind) {
329 log.printMessage(ERROR, testNode.getKind() + " != " + kind, e);
332 System.err.format("OK: %32s %s%n", kind, testNode);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImpl.java231 // Note: Indirect types are handled in kind() method
232 while (realType.kind().value() == TCKind._tk_alias) {
256 isInitialized = (tc.kind().value() == TCKind._tk_null);
287 // if (AnyImpl.isStreamed[realType.kind().value()]) {
292 switch (realType.kind().value()) {
374 switch (realType.kind().value()) {
530 if (AnyImpl.isStreamed[realType().kind().value()]) {
563 int kind = realType().kind().value();
564 if (kind >
[all...]
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESBase.java151 void showCipher(Cipher c, String kind) { argument
152 System.out.println(kind + " cipher provider: " + cipher.getProvider());
153 System.out.println(kind + " cipher algorithm: " + cipher.getAlgorithm());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocument.java149 public void perform(Kind kind, QName name) { argument
151 GloballyKnown entity = _document.find(kind, name);
156 || !_validator.isValid(kind, name)) {
H A DMessagePart.java87 public void setBindingExtensibilityElementKind(int kind) { argument
88 _bindingKind = kind;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java101 for (WhereClauseKind kind : WhereClauseKind.values())
102 whereClauses.put(kind, new LinkedHashMap<Type, JCDiagnostic>());
109 for (WhereClauseKind kind : WhereClauseKind.values())
110 whereClauses.get(kind).clear();
195 for (WhereClauseKind kind : WhereClauseKind.values()) {
197 for (Map.Entry<Type, JCDiagnostic> entry : whereClauses.get(kind).entrySet()) {
201 String key = kind.key();
204 JCDiagnostic d = diags.fragment(key, whereClauses.get(kind).keySet());
212 private int indexOf(Type type, WhereClauseKind kind) { argument
214 for (Type t : whereClauses.get(kind)
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java145 public PrimitiveType getPrimitiveType(TypeKind kind) { argument
146 switch (kind) {
156 throw new IllegalArgumentException("Not a primitive type: " + kind);
164 public NoType getNoType(TypeKind kind) { argument
165 switch (kind) {
169 throw new IllegalArgumentException(kind.toString());
286 * Throws an IllegalArgumentException if a type's kind is one of a set.
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp141 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
154 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DParseException.java155 if (tok.kind == 0) {
159 retval += " " + tokenImage[tok.kind];
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest7193977.java155 public Image getIcon(int kind) { argument
156 return this.info.getIcon(kind);
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DFileTreeModifier.java53 event.kind(), event.count(), event.context());
54 if (event.kind() != expectedType)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java152 static RelativeFile forClass(CharSequence className, JavaFileObject.Kind kind) { argument
153 return new RelativeFile(className.toString().replace('.', '/') + kind.extension);

Completed in 2563 milliseconds

1234567891011>>