Searched defs:old (Results 1 - 25 of 85) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/beans/
H A DParameterDescriptor.java47 * This must isolate the new object from any changes to the old object.
49 ParameterDescriptor(ParameterDescriptor old) { argument
50 super(old);
H A DBeanDescriptor.java97 * 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 DMethodDescriptor.java199 * 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 DEventSetDescriptor.java500 * 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 DFeatureDescriptor.java254 * 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 DIndexedPropertyDescriptor.java487 * 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 DPropertyDescriptor.java616 * 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 Dblock.cpp51 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 DConsole_md.c53 jboolean old; local
59 old = (tio.c_lflag & ECHO);
68 return old;
/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.cpp55 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 Dallocation.inline.hpp65 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 DRing.java128 public static void end(Ring old) { argument
131 instances.set(old);
/openjdk7/jdk/src/windows/native/java/io/
H A DConsole_md.c71 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 DHttpCallerInfo.java56 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 DpsPromotionManager.inline.hpp91 // 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 Datomic.cpp103 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 DTest5023557.java87 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 DTest5023550.java102 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 DMessageProp.java44 * 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 DModelMBeanConstructorInfo.java99 // 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 Darena.hpp108 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 DCoordinator.java100 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 DHashtable.cpp111 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 DCons.java37 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 Dbytes.cpp129 // advance the fill pointer, and return the old fill pointer.
141 bytes old = b; local
144 old.writeTo(b.ptr);

Completed in 43 milliseconds

1234