/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/ |
H A D | DynValueCommonImpl.java | 70 public boolean is_null() { method in class:DynValueCommonImpl
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | handles.hpp | 101 bool is_null() const { return _handle == NULL; } function in class:VALUE_OBJ_CLASS_SPEC 132 assert(SharedSkipVerify || is_null() || obj->is_klass(), "not a klassOop"); 135 assert(SharedSkipVerify || is_null() || obj()->is_klass(), "not a klassOop"); 140 assert(SharedSkipVerify || is_null() || obj->is_klass(), "not a klassOop"); 144 assert(is_null() || obj()->is_klass(), "not a klassOop"); 152 assert(SharedSkipVerify || is_null() || obj() == NULL || obj()->is_klass(), "not a klassOop"); 174 assert(SharedSkipVerify || is_null() || ((oop)obj)->is_a(), \ 178 assert(SharedSkipVerify || is_null() || ((oop)obj)->is_a(), "illegal type"); \ 209 assert(SharedSkipVerify || is_null() || obj->klass_part()->is_a(), \ 213 assert(SharedSkipVerify || is_null() || ob [all...] |
/openjdk7/hotspot/src/share/vm/classfile/ |
H A D | verificationType.hpp | 175 bool is_null() const { return (_u._data == Null); } function in class:VALUE_OBJ_CLASS_SPEC 210 return is_null() || (is_array() && (name()->byte_at(1) == sig)); 225 { return (is_reference() && !is_null() && name()->utf8_length() >= 1 && 228 { return (is_reference() && !is_null() && name()->utf8_length() >= 2 && 246 assert(is_reference() && !is_null(), "Must be a non-null reference"); 252 (is_reference() && t.is_reference() && !is_null() && !t.is_null() &&
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | oop.inline.hpp | 187 inline bool oopDesc::is_null(oop obj) { return obj == NULL; } function in class:oopDesc 188 inline bool oopDesc::is_null(narrowOop obj) { return obj == 0; } function in class:oopDesc 199 assert(!is_null(v), "oop value can never be zero"); 213 return (is_null(v)) ? (narrowOop)0 : encode_heap_oop_not_null(v); 217 assert(!is_null(v), "narrow oop value can never be zero"); 233 return is_null(v) ? (oop)NULL : unsafe_decode_heap_oop_not_null(v); 238 return is_null(v) ? (oop)NULL : decode_heap_oop_not_null(v);
|
/openjdk7/hotspot/src/share/vm/shark/ |
H A D | sharkTopLevelBlock.cpp | 1579 BasicBlock *is_null = function()->CreateBlock("null"); local 1584 is_null, not_null); 1596 builder()->SetInsertPoint(is_null);
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | sharedRuntime_sparc.cpp | 1779 Label is_null, done; local 1787 __ brx(Assembler::equal, false, Assembler::pt, is_null); 1793 __ bind(is_null);
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | sharedRuntime_x86_32.cpp | 1386 Label is_null, done; local 1394 __ jccb(Assembler::equal, is_null); 1402 __ bind(is_null);
|
H A D | sharedRuntime_x86_64.cpp | 1440 Label is_null, done; local 1449 __ jccb(Assembler::equal, is_null); 1457 __ bind(is_null);
|
H A D | templateTable_x86_32.cpp | 966 Label is_null, ok_is_subtype, done; local 977 __ jcc(Assembler::zero, is_null); 1006 __ bind(is_null); 3409 Label done, is_null, ok_is_subtype, quicked, resolved; local 3411 __ jcc(Assembler::zero, is_null); 3449 __ bind(is_null); 3452 __ bind(is_null); // same as 'done' 3460 Label done, is_null, ok_is_subtype, quicked, resolved; local 3462 __ jcc(Assembler::zero, is_null); 3498 __ bind(is_null); [all...] |
H A D | templateTable_x86_64.cpp | 991 Label is_null, ok_is_subtype, done; local 1005 __ jcc(Assembler::zero, is_null); 1034 __ bind(is_null); 3468 Label done, is_null, ok_is_subtype, quicked, resolved; local 3470 __ jcc(Assembler::zero, is_null); 3511 __ bind(is_null); 3514 __ bind(is_null); // same as 'done' 3521 Label done, is_null, ok_is_subtype, quicked, resolved; local 3523 __ jcc(Assembler::zero, is_null); 3564 __ bind(is_null); [all...] |