Searched refs:kind (Results 276 - 300 of 410) sorted by relevance

<<11121314151617

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParser.java3697 final private Token jj_consume_token(int kind) throws ParseException { argument
3705 if (token.kind == kind) {
3722 jj_kind = kind;
3726 final private boolean jj_scan_token(int kind) { argument
3746 jj_add_error_token(kind, i);
3749 return (jj_scanpos.kind != kind);
3777 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
3779 return (jj_ntk = jj_nt.kind);
3789 jj_add_error_token(int kind, int pos) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp1760 static jvmtiHeapRootKind toJvmtiHeapRootKind(jvmtiHeapReferenceKind kind) { argument
1761 switch (kind) {
1940 static inline bool report_simple_root(jvmtiHeapReferenceKind kind, oop o);
2289 inline bool CallbackInvoker::report_simple_root(jvmtiHeapReferenceKind kind, oop obj) { argument
2290 assert(kind != JVMTI_HEAP_REFERENCE_STACK_LOCAL &&
2291 kind != JVMTI_HEAP_REFERENCE_JNI_LOCAL, "not a simple root");
2295 // map to old style root kind
2296 jvmtiHeapRootKind root_kind = toJvmtiHeapRootKind(kind);
2300 return invoke_advanced_heap_root_callback(kind, obj);
2584 void set_kind(jvmtiHeapReferenceKind kind) { argument
2605 jvmtiHeapReferenceKind kind = root_kind(); local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java281 if ((sym.owner.flags() & INTERFACE) != 0 && sym.kind == VAR)
617 if (e.sym.kind == MTH && (e.sym.flags() & STATIC) == 0)
1586 if (tree.sym.kind == VAR) complexity+=1; }
1588 if (tree.sym.kind == VAR) {
1591 tree.sym.owner.kind == TYP)
2000 if (op.operator.kind == MTH &&
2100 if (sym.kind == MTH) {
2106 } else if (sym.kind == VAR && sym.owner.kind == MTH) {
2133 ssym != null && (ssym.kind
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java755 (rest.kind == leaf.kind ||
756 (rest.kind != null && rest.kind.equals(leaf.kind)));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.java401 TypeBoundKind kind = M.at(t.kind.pos).TypeBoundKind(t.kind.kind);
403 return M.at(t.pos).Wildcard(kind, inner);
H A DTreeTranslator.java35 * for every possible kind of tree node. To obtain a specific
378 tree.kind = translate(tree.kind);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp78 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
406 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
418 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
H A DasPSYoungGen.cpp351 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
516 assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
H A DpsAdaptiveSizePolicy.hpp202 virtual GCPolicyKind kind() const { return _gc_ps_adaptive_size_policy; } function in class:PSAdaptiveSizePolicy
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.cpp154 assert((kind() == Generation::DefNew) ||
155 (kind() == Generation::ParNew) ||
156 (kind() == Generation::ASParNew),
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.java355 private void testOneAccess(LookupCase sourceCase, Method method, String kind) { argument
363 switch (kind) {
374 throw new AssertionError(kind);
H A DPrivateInvokeTest.java364 void testInvokeVia(String kind, int refKind, MethodHandle invoker, MethodHandle mh, Object res1, Object... args) { argument
371 System.out.println(kind+" invoker="+invoker+" mh="+debugString(mh)+" args="+Arrays.asList(args1));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java287 while (e.scope == this && e.sym.kind != sym.kind) e = e.next();
539 if (e.sym.kind == Kinds.TYP && !includes(e.sym))
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedServerTester.java585 private void checkFocusGained(int kind) { argument
589 if (focusedKind != kind) {
590 throw new RuntimeException("Kinds don't match, required: " + kind + ", current: " + focusedKind);
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp1003 breakpoint_Relocation::breakpoint_Relocation(int kind, address target, bool internal) { argument
1005 bool enabled = (kind == initialization);
1006 bool removable = (kind != safepoint);
1009 int bits = kind;
1018 assert(this->kind() == kind, "kind encoded");
H A DrelocInfo.hpp1263 kind_mask = 0x000F, // mask for extracting kind
1275 static RelocationHolder spec(int kind, address target = NULL, bool internal_target = false) { argument
1277 new(rh) breakpoint_Relocation(kind, target, internal_target);
1286 short _bits; // bit-encoded kind, attrs, & state
1289 breakpoint_Relocation(int kind, address target, bool internal_target);
1308 int kind() const { return bits() & kind_mask; } function in class:breakpoint_Relocation
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java1864 if (field.type.kind().value() == kRemoteTypeCode.kind().value()) {
2045 switch (fields[i].type.kind().value()) {
2104 throw new StreamCorruptedException("Unknown kind: "
2105 + fields[i].type.kind().value());
2283 switch (fields[i].type.kind().value()) {
2373 throw new StreamCorruptedException("Unknown kind: "
2374 + fields[i].type.kind().value());
2426 switch (fields[i].type.kind().value()) {
2537 throw new StreamCorruptedException("Unknown kind
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp219 inline void set_return_kind(Bytecodes::Code kind) { _result._return_kind = kind; } argument
H A Drewriter.cpp388 int kind = Interpreter::method_kind(original_method); local
389 original_method->set_interpreter_kind(kind);
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DBasic.java70 event.kind(), event.count(), event.context());
71 if (event.kind() != expectedKind)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java357 (sym.owner.kind == MTH ||
422 if (sym.kind == VAR) {
431 if ((sym.adr >= firstadr || sym.owner.kind != TYP) &&
787 if (track && tree.sym.owner.kind == MTH) newVar(tree.sym);
1044 if (closeMethod.kind == MTH) {
1264 sym.kind == VAR &&
1399 if (tree.sym.kind == VAR) {
1427 sym.kind == MTH &&
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt65 one, in particular for any kind of dialogs. When a modal dialog
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java241 if (e.sym.kind == TYP && !toScope.includes(e.sym))
281 assert (sym.owner.kind == PCK);
/openjdk7/hotspot/test/runtime/6925573/
H A DSortMethodsTest.java186 Kind kind, FileObject outputFile) throws IOException {
185 getJavaFileForOutput(Location location, String qualifiedName, Kind kind, FileObject outputFile) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapGXLWriter.java64 * Exact Java primitive type code is written in 'kind' attribute of
362 private void writeField(Field field, String type, String kind, argument
365 // 'kind' is Java type code ("B", "C", "Z", "S", "I", "J", "F", "D")
372 out.print("' kind='");
373 out.print(kind);

Completed in 586 milliseconds

<<11121314151617