Searched defs:newVal (Results 1 - 6 of 6) sorted by relevance

/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/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp399 void CardTableModRefBS::write_ref_field_work(void* field, oop newVal) { argument
400 inline_write_ref_field(field, newVal);
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
/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/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/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 65 milliseconds