Searched defs:object (Results 251 - 275 of 276) sorted by relevance

<<1112

/openjdk7/jdk/test/java/util/Arrays/
H A DSorting.java1111 private static void checkSorted(Object object) { argument
1112 if (object instanceof int[]) {
1113 checkSorted((int[]) object);
1114 } else if (object instanceof long[]) {
1115 checkSorted((long[]) object);
1116 } else if (object instanceof short[]) {
1117 checkSorted((short[]) object);
1118 } else if (object instanceof byte[]) {
1119 checkSorted((byte[]) object);
1120 } else if (object instanceo
1207 checkSumXor(Object object) argument
1303 checkSumPlus(Object object) argument
1399 sortByInsertionSort(Object object) argument
1502 sort(Object object) argument
1525 sortSubArray(Object object, int fromIndex, int toIndex) argument
1548 checkSubArray(Object object, int fromIndex, int toIndex, int m) argument
1747 checkRange(Object object, int m) argument
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java472 public ObjectInstance registerMBean(Object object, ObjectName name) argument
483 if (object instanceof DynamicMBean)
484 mbean = (DynamicMBean) object;
486 mbean = standardToDynamic(object);
487 MBeanRegistration reg = mbeanRegistration(object);
500 if (object instanceof ClassLoader)
501 clr.addLoader((ClassLoader) object);
1391 private static MBeanRegistration mbeanRegistration(Object object) { argument
1392 if (object instanceof MBeanRegistration)
1393 return (MBeanRegistration) object;
[all...]
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jar ... Object object public static void assertNull (java.lang.Object) Object object public static void assertNull (java.lang. ...
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStream_1_0.java647 // Now write out the object...
663 public void write_value(Serializable object, Class clz) { argument
665 write_value(object);
675 // Add indirection for object to indirection table
707 // Add indirection for object to indirection table
731 private void writeValueBase(org.omg.CORBA.portable.ValueBase object, argument
740 String repId = ((ValueBase)object)._truncatable_ids()[0];
745 // Add indirection for object to indirection table
746 updateIndirectionTable(indirection, object, object);
759 writeRMIIIOPValueType(Serializable object, Class clazz) argument
818 write_value(Serializable object, String repository_id) argument
868 write_value(Serializable object) argument
873 write_value(Serializable object, org.omg.CORBA.portable.BoxedValueHelper factory) argument
1293 updateIndirectionTable(int indirection, java.lang.Object object, java.lang.Object key) argument
1379 writeIDLValue(Serializable object, String repID) argument
1520 shouldWriteAsIDLEntity(Serializable object) argument
1527 writeIDLEntity(IDLEntity object) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp353 LIR_OpTypeCheck::LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass, argument
359 , _object(object)
384 LIR_OpTypeCheck::LIR_OpTypeCheck(LIR_Code code, LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception) argument
386 , _object(object)
401 _stub = new ArrayStoreExceptionStub(object, info_for_exception);
698 if (op2->_opr2->is_valid()) do_input(op2->_opr2); // exception object is input parameter
1428 void LIR_List::checkcast (LIR_Opr result, LIR_Opr object, ciKlass* klass, argument
1432 LIR_OpTypeCheck* c = new LIR_OpTypeCheck(lir_checkcast, result, object, klass,
1442 void LIR_List::instanceof(LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_patch, ciMethod* profiled_method, int profiled_bci) { argument
1443 LIR_OpTypeCheck* c = new LIR_OpTypeCheck(lir_instanceof, result, object, klas
1453 store_check(LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception, ciMethod* profiled_method, int profiled_bci) argument
[all...]
H A Dc1_GraphBuilder.cpp514 // that the field F of object O has value V. This is flattened so
518 // along with a parallel array for each object which represents the
522 // another object or they are passed out of the current compile they
540 Value object = st->obj(); local
545 int index = _newobjects.find(object);
547 // newly allocated object with no other stores performed on this field
552 tty->print_cr("Eliminated store for object %d:", index);
561 _objects.at_put_grow(offset, object, NULL);
604 Value object = load->obj(); local
608 int index = _newobjects.find(object);
629 new_instance(NewInstance* object) argument
[all...]
H A Dc1_LIRGenerator.cpp638 void LIRGenerator::monitor_enter(LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no, CodeEmitInfo* info_for_exception, CodeEmitInfo* info) { argument
641 CodeStub* slow_path = new MonitorEnterStub(object, lock, info);
644 __ lock_object(hdr, object, lock, scratch, slow_path, info_for_exception);
648 void LIRGenerator::monitor_exit(LIR_Opr object, LIR_Opr lock, LIR_Opr new_hdr, LIR_Opr scratch, int monitor_no) { argument
655 __ unlock_object(hdr, object, lock, scratch, slow_path);
1246 // Example: clazz.isInstance(object)
1258 LIRItem object(x->argument_at(1), this);
1260 object.load_item();
1269 LIR_Opr call_result = call_runtime(clazz.value(), object.value(),
1276 // Example: object
[all...]
H A Dc1_LIR.hpp1529 LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass,
1532 LIR_OpTypeCheck(LIR_Code code, LIR_Opr object, LIR_Opr array,
1535 LIR_Opr object() const { return _object; } function in class:LIR_OpTypeCheck
2147 void instanceof(LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_patch, ciMethod* profiled_method, int profiled_bci);
2148 void store_check(LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception, ciMethod* profiled_method, int profiled_bci);
2150 void checkcast (LIR_Opr result, LIR_Opr object, ciKlass* klass,
/openjdk7/jdk/src/share/back/
H A DthreadControl.c175 /* The jthread object must be valid, so this must be a fatal error */
194 /* The jthread object must be valid, so this must be a fatal error */
593 jobject object; local
597 (gdata->jvmti, resumingThread, fnum, 0, &object);
599 resumee = object;
H A Dutil.c44 /* Save an object reference for use later (create a NewGlobalRef) */
69 /* Toss a previously saved object reference */
306 specificTypeKey(JNIEnv *env, jobject object) argument
308 if (object == NULL) {
310 } else if (JNI_FUNC_PTR(env,IsInstanceOf)(env, object, gdata->stringClass)) {
312 } else if (JNI_FUNC_PTR(env,IsInstanceOf)(env, object, gdata->threadClass)) {
314 } else if (JNI_FUNC_PTR(env,IsInstanceOf)(env, object, gdata->threadGroupClass)) {
316 } else if (JNI_FUNC_PTR(env,IsInstanceOf)(env, object, gdata->classLoaderClass)) {
318 } else if (JNI_FUNC_PTR(env,IsInstanceOf)(env, object, gdata->classClass)) {
325 clazz = JNI_FUNC_PTR(env,GetObjectClass)(env, object);
334 writeFieldValue(JNIEnv *env, PacketOutputStream *out, jobject object, jfieldID field) argument
491 jobject object; local
1370 objectHashCode(jobject object) argument
1582 isClass(jobject object) argument
1589 isThread(jobject object) argument
1596 isThreadGroup(jobject object) argument
1603 isString(jobject object) argument
1610 isClassLoader(jobject object) argument
1617 isArray(jobject object) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp120 // This object might not be a JvmtiEnvBase so we can't assume
604 // Non-static field. The fieldID is really the offset of the field within the object.
617 // parameter is object that owns the monitor so this routine will
618 // count the number of times the same object was locked by frames
640 // see if owner of the monitor is our object
667 obj = (oop)mon->object();
674 obj = (oop)mon->object();
675 assert(obj != NULL, "Object.wait() should have an object");
741 // save object of current wait() call (if any) for later comparison
744 wait_obj = (oop)mon->object();
938 get_object_monitor_usage(JavaThread* calling_thread, jobject object, jvmtiMonitorUsage* info_ptr) argument
[all...]
H A DjvmtiExport.cpp674 // if the object is a java.lang.Class then return the java mirror
729 JvmtiMonitorEventMark(JavaThread *thread, oop object) argument
731 _jobj = to_jobject(object);
1457 // non-static field accessors have an object, but we need a handle
1458 assert(obj != NULL, "non-static needs an object");
1468 address location, KlassHandle field_klass, Handle object, jfieldID field) {
1491 jobject field_jobject = jem.to_jobject(object());
1554 // non-static field accessors have an object, but we need a handle
1555 assert(obj != NULL, "non-static needs an object");
1566 address location, KlassHandle field_klass, Handle object, jfieldI
1467 post_field_access(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field) argument
1565 post_raw_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) argument
1623 post_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value_ptr) argument
1964 oop object = (oop)obj_mntr->object(); local
1999 oop object = (oop)obj_mntr->object(); local
2033 post_monitor_wait(JavaThread *thread, oop object, jlong timeout) argument
2066 oop object = (oop)obj_mntr->object(); local
2102 post_vm_object_alloc(JavaThread *thread, oop object) argument
[all...]
H A DjvmtiEnv.cpp315 JvmtiEnv::GetObjectSize(jobject object, jlong* size_ptr) { argument
316 oop mirror = JNIHandles::resolve_external_guard(object);
1679 JvmtiEnv::GetTag(jobject object, jlong* tag_ptr) { argument
1680 oop o = JNIHandles::resolve_external_guard(object);
1682 *tag_ptr = JvmtiTagMap::tag_map_for(this)->get_tag(object);
1688 JvmtiEnv::SetTag(jobject object, jlong tag) { argument
1689 oop o = JNIHandles::resolve_external_guard(object);
1691 JvmtiTagMap::tag_map_for(this)->set_tag(object, tag);
1722 JvmtiEnv::IterateOverObjectsReachableFromObject(jobject object, jvmtiObjectReferenceCallback object_reference_callback, const void* user_data) { argument
1723 oop o = JNIHandles::resolve_external_guard(object);
2560 GetObjectHashCode(jobject object, jint* hash_code_ptr) argument
2575 GetObjectMonitorUsage(jobject object, jvmtiMonitorUsage* info_ptr) argument
[all...]
H A DjvmtiTagMap.cpp54 // Each entry encapsulates a reference to the tagged object
62 oop _object; // tagged object
66 inline void init(oop object, jlong tag) { argument
67 _object = object;
73 JvmtiTagHashmapEntry(oop object, jlong tag) { init(object, tag); } argument
78 inline oop object() const { return _object; } function in class:JvmtiTagHashmapEntry
97 // the object, or oop. The "value" is the tag value.
155 vm_exit_out_of_memory(s, "unable to allocate initial hashtable for jvmti object tags");
193 warning("unable to allocate larger hashtable for jvmti object tag
729 set_tag(jobject object, jlong tag) argument
764 get_tag(jobject object) argument
3295 iterate_over_objects_reachable_from_object(jobject object, jvmtiObjectReferenceCallback object_ref_callback, const void* user_data) argument
3308 follow_references(jint heap_filter, KlassHandle klass, jobject object, const jvmtiHeapCallbacks* callbacks, const void* user_data) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp275 assert((thread_status & JMM_THREAD_STATE_FLAG_MASK) == 0, "Flags already set in thread_status in Thread object");
302 // Helper function to construct a ThreadInfo object
310 // First allocate a ThreadObj object and
340 // First allocate a ThreadObj object and
392 "the object is not an instance of java.lang.management.GarbageCollectorMXBean class",
471 // Returns a java.lang.String object containing the input arguments to the VM.
526 // Returns an array of java.lang.String object containing the input arguments to the VM.
555 // Returns an array of java/lang/management/MemoryPoolMXBean object
574 // Allocate the resulting MemoryPoolMXBean[] object
600 // Returns an array of java/lang/management/MemoryManagerMXBean object
1366 oop object = jni_locked_monitors->at(j); variable
[all...]
H A DthreadService.hpp271 bool is_owned_monitor_on_stack(oop object);
272 void add_jni_locked_monitor(oop object) { _jni_locked_monitors->append(object); } argument
282 GrowableArray<oop>* _locked_monitors; // list of object monitors locked by this frame
442 // Change status to waiting on an object (timed or indefinite)
523 if (is_alive(java_thread) && ServiceUtil::visible_oop((oop)obj_m->object())) {
544 if (is_alive() && ServiceUtil::visible_oop((oop)obj_m->object()) && obj_m->contentions() > 0) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp854 // object. Shark doesn't presently support this, so a generic
1387 // Get the class of the object we're checking
1416 // Keep a copy of the object we're checking
1419 // Get the class of the object we're checking
1432 // Create the casted object
1437 // original object and one with all instances of the
1438 // original object replaced with the new, casted object.
1482 // Pop the object off the stack
1483 Value *object local
1628 Value *object = NULL; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontconfig.h202 const char *object; member in struct:_FcObjectType
208 const char *object; member in struct:_FcConstant
592 FcObjectSetAdd (FcObjectSet *os, const char *object);
706 FcNameGetObjectType (const char *object);
758 FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
761 FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
764 FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
767 FcPatternDel (FcPattern *p, const char *object);
770 FcPatternRemove (FcPattern *p, const char *object, int id);
773 FcPatternAddInteger (FcPattern *p, const char *object, in
[all...]
H A Dgtk2_interface.h41 #define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject))
422 GtkObject object; member in struct:_GtkWidget
640 * Converts java.lang.String object to UTF-8 character string.
742 void (*fp_g_object_unref)(gpointer object);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4880633.java42 ValueObject object = new ValueObject();
43 object.setA("Value a" + i);
44 object.setAa("Value aa" + i);
45 object.setAaa("Value aaa" + i);
46 object.setAaaa("Value aaaa" + i);
47 object.setAaaaa("Value aaaaa" + i);
48 object.setAaaaaa("Value aaaaaa" + i);
49 object.setAaaaaaa("Value aaaaaaa" + i);
50 object.setAaaaaaaa("Value aaaaaaaa" + i);
51 object
124 private final Object object; field in class:Test4880633
126 Test4880633(Object object) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.c359 newGlobalReference(JNIEnv *env, jobject object) argument
364 HPROF_ASSERT(object!=NULL);
365 gref = JNI_FUNC_PTR(env,NewGlobalRef)(env, object);
371 newWeakGlobalReference(JNIEnv *env, jobject object) argument
376 HPROF_ASSERT(object!=NULL);
377 gref = JNI_FUNC_PTR(env,NewWeakGlobalRef)(env, object);
383 deleteGlobalReference(JNIEnv *env, jobject object) argument
386 HPROF_ASSERT(object!=NULL);
387 JNI_FUNC_PTR(env,DeleteGlobalRef)(env, object);
391 newLocalReference(JNIEnv *env, jobject object) argument
403 deleteLocalReference(JNIEnv *env, jobject object) argument
411 deleteWeakGlobalReference(JNIEnv *env, jobject object) argument
419 getObjectClass(JNIEnv *env, jobject object) argument
537 callLongMethod(JNIEnv *env, jobject object, jmethodID method) argument
551 callVoidMethod(JNIEnv *env, jobject object, jmethodID method, jboolean arg) argument
695 getObjectSize(jobject object) argument
765 getTag(jobject object) argument
781 setTag(jobject object, jlong tag) argument
794 getObjectMonitorUsage(jobject object, jvmtiMonitorUsage *uinfo) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.cpp319 // already know that the object is safe to eliminate.
471 // Search the last value stored into the object's field.
730 // Scan object's fields adding an input to the safepoint for each field.
789 // to SafePointScalarObjectNode with the allocated object.
838 // to the allocated object with "sobj"
873 "MemBarVolatile should be eliminated for non-escaping object");
1061 // 6) If !ZeroTLAB then Bulk-clear the object/array. Fill in klass & mark
1304 // MemBarStoreStore was already added. If the object does not
1306 // MemBarStoreStore so that stores that initialize this object
1308 // object accessibl
1547 initialize_object(AllocateNode* alloc, Node* control, Node* rawmem, Node* object, Node* klass_node, Node* length, Node* size_in_bytes) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp712 AwtObject* object = (AwtObject *)JNI_GET_PDATA(peerObject); local
713 DASSERT( !IsBadReadPtr(object, sizeof(AwtObject)));
717 if (object != NULL)
719 result = object->WinThreadExecProc(args);
1584 UINT AwtToolkit::CreateCmdID(AwtObject* object) argument
1586 return m_cmdIDs->Add(object);
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java728 * PolicyEntry object.
749 * Create a PolicyEntry object from the information read in
1700 * and construct a PolicyEntry object with it.
1740 // construct a new PolicyEntry object
2067 * construct a Principal object from the Principal Info Dialog Box
2125 * construct a Permission object from the Permission Info Dialog Box
2837 // get a PolicyEntry object from the dialog policy info
3662 public void addTaggedItem(String string, Object object) { argument
3664 data.add(object);
3670 public void replaceTaggedItem(String string, Object object, in argument
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java824 static String getConstantName(final Object object) { argument
825 final Class<? extends Object> clazz = object.getClass();
828 if (field.get(null) == object) {

Completed in 205 milliseconds

<<1112