Searched refs:kind (Results 51 - 75 of 410) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterGenerator_x86.hpp38 address generate_math_entry(AbstractInterpreter::MethodKind kind);
H A DcppInterpreterGenerator_x86.hpp34 address generate_math_entry(AbstractInterpreter::MethodKind kind);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dinterpreter_zero.cpp62 AbstractInterpreter::MethodKind kind) {
61 generate_math_entry( AbstractInterpreter::MethodKind kind) argument
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DParse.java133 String kind = izer.sval;
140 Node proto = kindMap.get(kind);
142 error("Invalid kind: " + kind);
147 node.set(kind, list, izer.lineno());
158 error("Expected kind identifier, got " + izer.ttype +
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/xml/internal/ws/api/pipe/
H A DNextAction.java40 int kind; field in class:NextAction
57 this.kind = k;
141 buf.append("kind=").append(getKindString()).append(',');
149 * Returns {@link #kind} in a human readable string, to assist debugging.
152 switch(kind) {
158 default: throw new AssertionError(kind);
/openjdk7/langtools/src/share/classes/javax/tools/
H A DForwardingJavaFileManager.java39 * @param <M> the kind of file manager forwarded to by this object
116 Kind kind)
119 return fileManager.getJavaFileForInput(location, className, kind);
128 Kind kind,
132 return fileManager.getJavaFileForOutput(location, className, kind, sibling);
114 getJavaFileForInput(Location location, String className, Kind kind) argument
126 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DvmPSOperations.cpp47 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap");
69 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "must be a ParallelScavengeHeap");
90 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap,
/openjdk7/hotspot/src/share/vm/memory/
H A DbarrierSet.inline.hpp33 // card-table kind.
36 if (kind() == CardTableModRef) {
44 if (kind() == CardTableModRef) {
80 if (kind() == CardTableModRef) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DResolve.java147 owner.owner.kind == TYP &&
148 (owner.kind == VAR ||
149 owner.kind == MTH && (owner.flags() & BLOCK) != 0) &&
263 env.info.selectSuper && (sym.flags() & STATIC) == 0 && sym.kind != TYP)
280 if (sym.kind != MTH || sym.isConstructor() || sym.isStatic())
304 ((sym.flags() & STATIC) != 0 || sym.kind == TYP || site.tsym.isSubClass(c, types))))
545 if (e.sym.kind == VAR && (e.sym.flags_field & SYNTHETIC) == 0) {
554 if (sym.kind < bestSoFar.kind) bestSoFar = sym;
557 bestSoFar.kind !
1191 findIdent(Env<AttrContext> env, Name name, int kind) argument
1217 findIdentInPackage(Env<AttrContext> env, TypeSymbol pck, Name name, int kind) argument
1244 findIdentInType(Env<AttrContext> env, Type site, Name name, int kind) argument
1394 resolveIdent(DiagnosticPosition pos, Env<AttrContext> env, Name name, int kind) argument
1848 ResolveError(int kind, String debugName) argument
1922 InvalidSymbolError(int kind, Symbol sym, String debugName) argument
1954 SymbolNotFoundError(int kind) argument
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DWatchDir.java124 WatchEvent.Kind kind = event.kind();
127 if (kind == OVERFLOW) {
137 System.out.format("%s: %s\n", event.kind().name(), child);
141 if (recursive && (kind == ENTRY_CREATE)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java109 ElementKind kind = e.getKind();
111 if (kind != STATIC_INIT &&
112 kind != INSTANCE_INIT) {
116 if (kind == CONSTRUCTOR &&
131 switch(kind) {
160 ElementKind kind = e.getKind();
201 switch(kind) {
206 writer.print(kind.toString().toLowerCase());
214 if (kind == CLASS) {
229 if (kind
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_object.c45 * it's kind, and it's serial number. Normally only the serial number
68 * and kind of object, so many jobject's will map to a single ObjectIndex.
87 ObjectKind kind; /* Kind of object, most are OBJECT_NORMAL */ member in struct:ObjectKey
133 " size=%d, kind=%d, refs=0x%x, threadSN=%u\n",
134 i, pkey->site_index, pkey->serial_num, pkey->size, pkey->kind,
171 object_new(SiteIndex site_index, jint size, ObjectKind kind, SerialNumber thread_serial_num) argument
180 key.kind = kind;
238 return pkey->kind;
245 ObjectKind kind; local
[all...]
H A Dhprof_object.h45 ObjectIndex object_new(SiteIndex site_index, jint size, ObjectKind kind,
H A Dhprof_reference.h45 RefIndex reference_obj(RefIndex next, jvmtiHeapReferenceKind kind,
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java109 public void writeLocalVariables(int pc, NoteKind kind) { argument
115 entries.listIterator(kind == NoteKind.END ? entries.size() : 0);
116 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) {
118 kind == NoteKind.END ? iter.previous() : iter.next();
119 if (kind.match(entry, pc)) {
121 print(kind.text);
H A DLocalVariableTypeTableWriter.java110 public void writeLocalVariables(int pc, NoteKind kind) { argument
116 entries.listIterator(kind == NoteKind.END ? entries.size() : 0);
117 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) {
119 kind == NoteKind.END ? iter.previous() : iter.next();
120 if (kind.match(entry, pc)) {
122 print(kind.text);
H A DTryBlockWriter.java100 public void writeTrys(Instruction instr, NoteKind kind) { argument
106 entries.listIterator(kind == NoteKind.END ? entries.size() : 0);
107 kind == NoteKind.END ? iter.hasPrevious() : iter.hasNext() ; ) {
109 kind == NoteKind.END ? iter.previous() : iter.next();
110 if (kind.match(entry, pc)) {
112 print(kind.text);
/openjdk7/hotspot/src/share/vm/code/
H A Djvmticmlr.h37 * arbitrary information. This struct contains a kind field to indicate
38 * the kind of information being passed, and a pointer to the next
39 * record. If the kind field indicates inlining information, then the
75 jvmtiCMLRKind kind; /* id for the kind of info passed in the record */ member in struct:_jvmtiCompiledMethodLoadRecordHeader
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNNameParser.java137 char[] kind = new char[len];
156 kind[kindCount++] = str.charAt(i++);
165 ++i; // skip kind separator
172 kind[kindCount++] = str.charAt(i++);
178 new String(kind, 0, kindCount))));
201 // Find the kind separator
226 // Set kind
228 comp.kind = ""; // no kind separator
230 // unescape kind
[all...]
/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/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTextTag.java71 public String kind() { method in class:TextTag
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DWrappingJavaFileManager.java159 Kind kind)
162 return wrap(super.getJavaFileForInput(location, className, kind));
172 Kind kind,
176 return wrap(super.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
157 getJavaFileForInput(Location location, String className, Kind kind) argument
170 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
/openjdk7/jdk/src/share/javavm/export/
H A Djvmticmlr.h37 * arbitrary information. This struct contains a kind field to indicate
38 * the kind of information being passed, and a pointer to the next
39 * record. If the kind field indicates inlining information, then the
75 jvmtiCMLRKind kind; /* id for the kind of info passed in the record */ member in struct:_jvmtiCompiledMethodLoadRecordHeader
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.cpp190 MethodKind kind = (MethodKind)( method_handle_invoke_FIRST + local
192 assert(kind <= method_handle_invoke_LAST, "parallel enum ranges");
193 return kind;
252 void AbstractInterpreter::set_entry_for_kind(AbstractInterpreter::MethodKind kind, address entry) { argument
253 assert(kind >= method_handle_invoke_FIRST &&
254 kind <= method_handle_invoke_LAST, "late initialization only for MH entry points");
255 assert(_entry_table[kind] == _entry_table[abstract], "previous value must be AME entry");
256 _entry_table[kind] = entry;
282 void AbstractInterpreter::print_method_kind(MethodKind kind) { argument
283 switch (kind) {
471 Interpreter::MethodKind kind = (Interpreter::MethodKind) i; local
[all...]

Completed in 57 milliseconds

1234567891011>>