Searched refs:newVal (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleObjectCache.java61 V newVal = createObject(key);
62 if (key == null || newVal == null) {
67 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue);
71 value = newVal;
76 value = newVal;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.hpp56 template <class T> static void write_ref_field_pre_static(T* field, oop newVal) { argument
65 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) { argument
66 write_ref_field_pre_static(field, newVal);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOM.java430 StringBuffer newVal = new StringBuffer(length);
431 newVal.append(original.substring(0, from));
435 newVal.append("&quot;");
438 newVal.append("&lt;");
441 newVal.append("&amp;");
447 newVal.append("&#x9;");
450 newVal.append("&#xA;");
453 newVal.append("&#xD;");
456 newVal.append(currChar);
459 return newVal
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.hpp299 void write_ref_field_work(oop obj, size_t offset, oop newVal);
300 virtual void write_ref_field_work(void* field, oop newVal);
330 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) {} argument
332 template <class T> inline void inline_write_ref_field(T* field, oop newVal) { argument
H A DcardTableModRefBS.cpp399 void CardTableModRefBS::write_ref_field_work(void* field, oop newVal) { argument
400 inline_write_ref_field(field, newVal);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractTraverser.java822 StringBuffer newVal = new StringBuffer(length);
823 newVal.append(original.substring(0, from));
827 newVal.append("&quot;");
830 newVal.append("&lt;");
833 newVal.append("&amp;");
839 newVal.append("&#x9;");
842 newVal.append("&#xA;");
845 newVal.append("&#xD;");
848 newVal.append(currChar);
851 return newVal
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DRBTree.java608 Integer newVal = new Integer(rand.nextInt(maxVal) + 1);
610 System.err.println("(Inserting value " + newVal + ")");
612 tree.insertNode(new RBNode(newVal));
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp1175 LONG newVal; local
1178 newVal = InterlockedIncrement((long*)&item->refCount);
1180 return(newVal);
1184 LONG newVal; local
1187 newVal = InterlockedDecrement((long*)&item->refCount);
1189 return(newVal);
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java847 * More formally, replaces with <tt>newVal</tt> each element <tt>e</tt>
854 * @param newVal the new value with which <tt>oldVal</tt> is to be
863 public static <T> boolean replaceAll(List<T> list, T oldVal, T newVal) { argument
870 list.set(i, newVal);
877 list.set(i, newVal);
887 itr.set(newVal);
894 itr.set(newVal);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java3545 boolean newVal = ((Boolean)e.getNewValue()).booleanValue();
3546 tabScroller.tabPanel.setOpaque(newVal);
3547 tabScroller.viewport.setOpaque(newVal);
3549 Color newVal = (Color)e.getNewValue();
3550 tabScroller.tabPanel.setBackground(newVal);
3551 tabScroller.viewport.setBackground(newVal);
3552 Color newColor = selectedColor == null ? newVal : selectedColor;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java3315 final boolean newVal = ((Boolean)e.getNewValue()).booleanValue();
3316 tabScroller.tabPanel.setOpaque(newVal);
3317 tabScroller.viewport.setOpaque(newVal);
3319 final Color newVal = (Color)e.getNewValue();
3320 tabScroller.tabPanel.setBackground(newVal);
3321 tabScroller.viewport.setBackground(newVal);
3322 final Color newColor = selectedColor == null ? newVal : selectedColor;
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java2805 Object newVal = inNewVal.getValue();
2808 if (newVal != null)
2809 className = newVal.getClass().getName();
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h643 JVM_CX8Field(JNIEnv *env, jobject obj, jfieldID fldID, jlong oldVal, jlong newVal);
H A Djvm.cpp4197 JVM_ENTRY(jboolean, JVM_CX8Field(JNIEnv *env, jobject obj, jfieldID fid, jlong oldVal, jlong newVal))
4205 res = Atomic::cmpxchg(newVal, addr, oldVal);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java3480 public void append(ValueStoreBase newVal) { argument
3481 for (int i = 0; i < newVal.fValues.size(); i++) {
3482 fValues.addElement(newVal.fValues.elementAt(i));

Completed in 2001 milliseconds