| /openjdk7/jdk/src/share/classes/java/beans/ |
| H A D | ParameterDescriptor.java | 47 * This must isolate the new object from any changes to the old object. 49 ParameterDescriptor(ParameterDescriptor old) { argument 50 super(old);
|
| H A D | BeanDescriptor.java | 97 * This must isolate the new object from any changes to the old object. 99 BeanDescriptor(BeanDescriptor old) { argument 100 super(old); 101 beanClassRef = old.beanClassRef; 102 customizerClassRef = old.customizerClassRef;
|
| H A D | MethodDescriptor.java | 199 * This must isolate the new object from any changes to the old object. 201 MethodDescriptor(MethodDescriptor old) { argument 202 super(old); 204 methodRef = old.methodRef; 205 params = old.params; 206 paramNames = old.paramNames; 208 if (old.parameterDescriptors != null) { 209 int len = old.parameterDescriptors.length; 212 parameterDescriptors[i] = new ParameterDescriptor(old.parameterDescriptors[i]);
|
| H A D | EventSetDescriptor.java | 500 * This must isolate the new object from any changes to the old object. 502 EventSetDescriptor(EventSetDescriptor old) { argument 503 super(old); 504 if (old.listenerMethodDescriptors != null) { 505 int len = old.listenerMethodDescriptors.length; 509 old.listenerMethodDescriptors[i]); 512 listenerTypeRef = old.listenerTypeRef; 514 addMethodDescriptor = old.addMethodDescriptor; 515 removeMethodDescriptor = old.removeMethodDescriptor; 516 getMethodDescriptor = old [all...] |
| H A D | FeatureDescriptor.java | 254 * This must isolate the new object from any changes to the old object. 256 FeatureDescriptor(FeatureDescriptor old) { argument 257 expert = old.expert; 258 hidden = old.hidden; 259 preferred = old.preferred; 260 name = old.name; 261 shortDescription = old.shortDescription; 262 displayName = old.displayName; 263 classRef = old.classRef; 265 addTable(old [all...] |
| H A D | IndexedPropertyDescriptor.java | 487 * This must isolate the new object from any changes to the old object. 489 IndexedPropertyDescriptor(IndexedPropertyDescriptor old) { argument 490 super(old); 491 indexedReadMethodRef = old.indexedReadMethodRef; 492 indexedWriteMethodRef = old.indexedWriteMethodRef; 493 indexedPropertyTypeRef = old.indexedPropertyTypeRef; 494 indexedWriteMethodName = old.indexedWriteMethodName; 495 indexedReadMethodName = old.indexedReadMethodName;
|
| H A D | PropertyDescriptor.java | 616 * This must isolate the new object from any changes to the old object. 618 PropertyDescriptor(PropertyDescriptor old) { argument 619 super(old); 620 propertyTypeRef = old.propertyTypeRef; 621 readMethodRef = old.readMethodRef; 622 writeMethodRef = old.writeMethodRef; 623 propertyEditorClassRef = old.propertyEditorClassRef; 625 writeMethodName = old.writeMethodName; 626 readMethodName = old.readMethodName; 627 baseName = old [all...] |
| /openjdk7/hotspot/src/share/vm/opto/ |
| H A D | block.cpp | 51 uint old = _size; local 53 _blocks = (Block**)_arena->Arealloc( _blocks, old*sizeof(Block*),_size*sizeof(Block*)); 54 Copy::zero_to_bytes( &_blocks[old], (_size-old)*sizeof(Block*) );
|
| /openjdk7/jdk/src/solaris/native/java/io/ |
| H A D | Console_md.c | 53 jboolean old; local 59 old = (tio.c_lflag & ECHO); 68 return old;
|
| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | resourceArea.cpp | 55 extern char* resource_reallocate_bytes( char *old, size_t old_size, size_t new_size, argument 57 return (char*)Thread::current()->resource_area()->Arealloc(old, old_size, new_size, alloc_failmode); 60 extern void resource_free_bytes( char *old, size_t size ) { argument 61 Thread::current()->resource_area()->Afree(old, size);
|
| H A D | allocation.inline.hpp | 65 inline char* ReallocateHeap(char *old, size_t size, MEMFLAGS flags, argument 67 char* p = (char*) os::realloc(old, size, flags, CURRENT_PC);
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/ |
| H A D | Ring.java | 128 public static void end(Ring old) { argument 131 instances.set(old);
|
| /openjdk7/jdk/src/windows/native/java/io/ |
| H A D | Console_md.c | 71 jboolean old; local 76 old = (fdwMode & ENABLE_ECHO_INPUT) != 0; 85 return old;
|
| /openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/ |
| H A D | HttpCallerInfo.java | 56 public HttpCallerInfo(HttpCallerInfo old, String scheme) { argument 57 this.url = old.url; 58 this.host = old.host; 59 this.protocol = old.protocol; 60 this.prompt = old.prompt; 61 this.port = old.port; 62 this.addr = old.addr; 63 this.authType = old.authType;
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
| H A D | psPromotionManager.inline.hpp | 91 // Try allocating obj in to-space (unless too old) 140 // Try the old lab allocation again. 232 oop const old = unmask_chunked_array_oop(p); local 233 process_array_chunk(old);
|
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | atomic.cpp | 103 jlong old = load(dest); local 104 jlong new_value = old + add_value; 105 while (old != cmpxchg(new_value, dest, old)) { 106 old = load(dest); 107 new_value = old + add_value; 109 return old;
|
| /openjdk7/jdk/test/java/beans/XMLEncoder/ |
| H A D | Test5023557.java | 87 protected Expression instantiate(Object old, Encoder out) { argument 88 B b = (B) old; 94 protected Expression instantiate(Object old, Encoder out) { argument 95 C c = (C) old;
|
| H A D | Test5023550.java | 102 protected Expression instantiate(Object old, Encoder out) { argument 104 A a = (A) old; 105 return new Expression(old, encoder.getOwner(), "newA", new Object[] { a.getC() }); 110 protected Expression instantiate(Object old, Encoder out) { argument 112 return new Expression(old, encoder.getOwner(), "newB", new Object[0]); 117 protected Expression instantiate(Object old, Encoder out) { argument 118 C c = (C) old;
|
| /openjdk7/jdk/src/share/classes/org/ietf/jgss/ |
| H A D | MessageProp.java | 44 * token. The supplementary status values can indicate old tokens, out 145 * is too old to be checked for duplication. 203 * @param old true if the token's validity period has expired, false 214 boolean old, boolean unseq, boolean gap, 217 this.oldToken = old; 213 setSupplementaryStates(boolean duplicate, boolean old, boolean unseq, boolean gap, int minorStatus, String minorString) argument
|
| /openjdk7/jdk/src/share/classes/javax/management/modelmbean/ |
| H A D | ModelMBeanConstructorInfo.java | 99 // Serial version for old serial form 105 // Serializable fields in old serial form 281 * @param old the ModelMBeanConstructorInfo to be duplicated 284 ModelMBeanConstructorInfo(ModelMBeanConstructorInfo old) argument 286 super(old.getName(), old.getDescription(), old.getSignature()); 476 // Serializes this instance in the old serial form
|
| /openjdk7/hotspot/src/share/vm/adlc/ |
| H A D | arena.hpp | 108 Arena(Arena *old); 122 char *old = _hwm; local 124 return old; 134 char *old = _hwm; local 136 return old;
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/ |
| H A D | Coordinator.java | 100 private Object old; field in class:Coordinator 141 old = table[0]; 150 table[0] = old; 151 old = null; // avoid memory leak
|
| /openjdk7/jdk/src/windows/native/sun/windows/ |
| H A D | Hashtable.cpp | 111 for (HashtableEntry* old = oldTable[i] ; old != NULL ; ) { 112 HashtableEntry* e = old; 113 old = old->next; 135 void* old = e->value; local 137 return old;
|
| /openjdk7/jdk/test/java/io/File/ |
| H A D | Cons.java | 37 private static boolean old = false; field in class:Cons 175 if (!old) { 189 if (!old) { 206 if (!old) { 224 if (!old) { 240 if (!old) { 245 if (!old) { 252 if (!old) { 257 if (!old) { 271 if (!old) { [all...] |
| /openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
| H A D | bytes.cpp | 129 // advance the fill pointer, and return the old fill pointer. 141 bytes old = b; local 144 old.writeTo(b.ptr);
|