Searched refs:linked (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.hpp123 // Has this klass been linked?
125 update_if_shared(instanceKlass::linked);
126 return _init_state >= instanceKlass::linked;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DModelBuilder.java370 private boolean linked; field in class:ModelBuilder
385 assert !linked;
386 linked = true;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java684 * are linked are given the maximum of the preferred size of each of
685 * the linked components. For example, if you link two components with
706 * maximum sizes. Components that are linked are given the maximum
707 * of the preferred size of each of the linked components. For
3516 // LinkInfo contains the set of ComponentInfosthat are linked along a
3520 private final List<ComponentInfo> linked; field in class:GroupLayout.LinkInfo
3524 linked = new ArrayList<ComponentInfo>();
3532 linked.add(child);
3535 linked.addAll(childMaster.linked);
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp146 allocated, // allocated (but not yet linked)
147 loaded, // loaded and inserted in class hierarchy (but not linked yet)
148 linked, // successfully linked/verified (but not initialized yet) enumerator in enum:instanceKlass::ClassState
427 bool is_linked() const { return _init_state >= linked; }
1060 // It is currently a simple linked list defined in methodOop.hpp.
H A DinstanceKlass.cpp263 // classes mapped into the shared regions in new VMs from appearing linked.
266 assert(is_linked(), "must be linked");
334 // in case the class is linked in the process of linking its superclasses
371 // Just in case a side-effect of verify linked this class already
402 this_oop->set_init_state(linked);
439 // Make sure klass is linked (verified) before initialization
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp1250 // buckets first [read-write], then copy the linked lists of entries
1400 if (ik->init_state() < instanceKlass::linked) {
1532 if (ik->init_state() < instanceKlass::linked) {
H A Duniverse.cpp1083 bool linked = instanceKlass::cast(k)->link_class_or_fail(CHECK_false); local
1084 if (!linked) {
1130 // The finalizer klass must be linked before looking up the method, in
1176 // <init> function before java_lang_Class is linked. Print error and exit.
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2344 declare_constant(instanceKlass::linked) \

Completed in 107 milliseconds