/external/webkit/LayoutTests/storage/domstorage/events/ |
basic-body-attribute-expected.txt | 17 PASS storageEventList[0].newValue is "BAR" 25 PASS storageEventList[1].newValue is "BAR" 28 PASS storageEventList[2].newValue is "1" 31 PASS storageEventList[3].newValue is "2" 34 PASS storageEventList[4].newValue is "3" 39 PASS storageEventList[5].newValue is null 44 PASS storageEventList[6].newValue is null 49 PASS storageEventList[7].newValue is null 63 PASS storageEventList[0].newValue is "BAR" 71 PASS storageEventList[1].newValue is "BAR [all...] |
basic-expected.txt | 15 PASS storageEventList[0].newValue is "BAR" 23 PASS storageEventList[1].newValue is "BAR" 26 PASS storageEventList[2].newValue is "1" 29 PASS storageEventList[3].newValue is "2" 32 PASS storageEventList[4].newValue is "3" 37 PASS storageEventList[5].newValue is null 42 PASS storageEventList[6].newValue is null 47 PASS storageEventList[7].newValue is null 59 PASS storageEventList[0].newValue is "BAR" 67 PASS storageEventList[1].newValue is "BAR [all...] |
basic-setattribute-expected.txt | 17 PASS storageEventList[0].newValue is "BAR" 25 PASS storageEventList[1].newValue is "BAR" 28 PASS storageEventList[2].newValue is "1" 31 PASS storageEventList[3].newValue is "2" 34 PASS storageEventList[4].newValue is "3" 39 PASS storageEventList[5].newValue is null 44 PASS storageEventList[6].newValue is null 49 PASS storageEventList[7].newValue is null 63 PASS storageEventList[0].newValue is "BAR" 71 PASS storageEventList[1].newValue is "BAR [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/ |
ProcessorOutputElem.java | 50 * @param newValue non-null reference to processed attribute value. 52 public void setCdataSectionElements(java.util.Vector newValue) 54 m_outputProperties.setQNameProperties(OutputKeys.CDATA_SECTION_ELEMENTS, newValue); 60 * @param newValue non-null reference to processed attribute value. 62 public void setDoctypePublic(String newValue) 64 m_outputProperties.setProperty(OutputKeys.DOCTYPE_PUBLIC, newValue); 70 * @param newValue non-null reference to processed attribute value. 72 public void setDoctypeSystem(String newValue) 74 m_outputProperties.setProperty(OutputKeys.DOCTYPE_SYSTEM, newValue); 80 * @param newValue non-null reference to processed attribute value [all...] |
/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
basic-body-attribute.js | 35 shouldBeEqualToString("storageEventList[0].newValue", "BAR"); 49 shouldBeEqualToString("storageEventList[1].newValue", "BAR"); 52 shouldBeEqualToString("storageEventList[2].newValue", "1"); 55 shouldBeEqualToString("storageEventList[3].newValue", "2"); 58 shouldBeEqualToString("storageEventList[4].newValue", "3"); 69 shouldBeNull("storageEventList[5].newValue"); 80 shouldBeNull("storageEventList[6].newValue"); 91 shouldBeNull("storageEventList[7].newValue");
|
basic-setattribute.js | 35 shouldBeEqualToString("storageEventList[0].newValue", "BAR"); 49 shouldBeEqualToString("storageEventList[1].newValue", "BAR"); 52 shouldBeEqualToString("storageEventList[2].newValue", "1"); 55 shouldBeEqualToString("storageEventList[3].newValue", "2"); 58 shouldBeEqualToString("storageEventList[4].newValue", "3"); 69 shouldBeNull("storageEventList[5].newValue"); 80 shouldBeNull("storageEventList[6].newValue"); 91 shouldBeNull("storageEventList[7].newValue");
|
basic.js | 34 shouldBeEqualToString("storageEventList[0].newValue", "BAR"); 48 shouldBeEqualToString("storageEventList[1].newValue", "BAR"); 51 shouldBeEqualToString("storageEventList[2].newValue", "1"); 54 shouldBeEqualToString("storageEventList[3].newValue", "2"); 57 shouldBeEqualToString("storageEventList[4].newValue", "3"); 68 shouldBeNull("storageEventList[5].newValue"); 79 shouldBeNull("storageEventList[6].newValue"); 90 shouldBeNull("storageEventList[7].newValue");
|
/frameworks/base/awt/java/beans/ |
PropertyEditorSupport.java | 36 Object newValue = null; 53 if (newValue instanceof String) { 69 return newValue == null ? "null" : newValue.toString(); //$NON-NLS-1$ 73 this.oldValue = this.newValue; 74 this.newValue = value; 79 return newValue; 120 oldValue, newValue);
|
/dalvik/libcore/awt-kernel/src/main/java/java/beans/ |
PropertyChangeSupport.java | 78 * @param newValue 82 Object newValue) { 84 oldValue, newValue); 100 * @param newValue 104 Object oldValue, Object newValue) { 108 propertyName, oldValue, newValue, index)); 198 * @param newValue 202 boolean newValue) { 204 oldValue, newValue); 219 * @param newValue [all...] |
PropertyChangeEvent.java | 36 Object newValue; 52 * @param newValue 58 Object oldValue, Object newValue) { 63 this.newValue = newValue; 114 return newValue;
|
IndexedPropertyChangeEvent.java | 45 * @param newValue 53 Object oldValue, Object newValue, int index) { 54 super(source, propertyName, oldValue, newValue);
|
/dalvik/libcore/luni/src/main/native/ |
java_io_ObjectInputStream.c | 25 jboolean newValue) { 40 (*env)->SetBooleanField(env, targetObject, fid, newValue); 48 jchar newValue) { 63 (*env)->SetCharField(env, targetObject, fid, newValue); 71 jint newValue) { 86 (*env)->SetIntField(env, targetObject, fid, newValue); 94 jfloat newValue) { 109 (*env)->SetFloatField(env, targetObject, fid, newValue); 117 jdouble newValue) { 132 (*env)->SetDoubleField(env, targetObject, fid, newValue); [all...] |
/external/webkit/WebCore/storage/ |
StorageEvent.cpp | 44 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) 46 return adoptRef(new StorageEvent(type, key, oldValue, newValue, uri, storageArea)); 49 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) 53 , m_newValue(newValue) 59 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) 68 m_newValue = newValue;
|
StorageEvent.h | 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea); 45 const String& newValue() const { return m_newValue; } 49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea); 58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/ |
HttpsURLConnectionImpl.java | 222 public void addRequestProperty(String field, String newValue) { 223 httpsEngine.addRequestProperty(field, newValue); 287 public void setAllowUserInteraction(boolean newValue) { 288 httpsEngine.setAllowUserInteraction(newValue); 292 public void setDefaultUseCaches(boolean newValue) { 293 httpsEngine.setDefaultUseCaches(newValue); 297 public void setDoInput(boolean newValue) { 298 httpsEngine.setDoInput(newValue); 302 public void setDoOutput(boolean newValue) { 303 httpsEngine.setDoOutput(newValue); [all...] |
/external/webkit/WebCore/dom/ |
MutationEvent.cpp | 34 const String& prevValue, const String& newValue, 39 , m_newValue(newValue) 46 const String& prevValue, const String& newValue, 56 m_newValue = newValue;
|
MutationEvent.h | 46 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0) 48 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange)); 52 const String& prevValue, const String& newValue, 57 String newValue() const { return m_newValue; } 66 const String& prevValue, const String& newValue,
|
/external/icu4c/i18n/ |
unum.cpp | 484 int32_t newValue) 490 df->setParseIntegerOnly(newValue!=0); 494 df->setGroupingUsed(newValue!=0); 498 df->setDecimalSeparatorAlwaysShown(newValue!=0); 502 df->setMaximumIntegerDigits(newValue); 506 df->setMinimumIntegerDigits(newValue); 510 df->setMinimumIntegerDigits(newValue); 511 df->setMaximumIntegerDigits(newValue); 515 df->setMaximumFractionDigits(newValue); 519 df->setMinimumFractionDigits(newValue); [all...] |
/dalvik/vm/native/ |
sun_misc_Unsafe.c | 75 * int expectedValue, int newValue); 84 s4 newValue = args[5]; 88 int result = android_atomic_cmpxchg(expectedValue, newValue, address); 95 * long expectedValue, long newValue); 104 s8 newValue = GET_ARG_LONG(args, 6); 109 android_quasiatomic_cmpxchg_64(expectedValue, newValue, address); 116 * Object expectedValue, Object newValue); 125 Object* newValue = (Object*) args[5]; 130 (int32_t) newValue, address); 150 * public native void putIntVolatile(Object obj, long offset, int newValue); [all...] |
/dalvik/libcore/suncompat/src/main/java/sun/misc/ |
Unsafe.java | 145 * @param newValue new value to store in the field if the contents are 151 int expectedValue, int newValue); 160 * @param newValue new value to store in the field if the contents are 166 long expectedValue, long newValue); 175 * @param newValue new value to store in the field if the contents are 181 Object expectedValue, Object newValue); 199 * @param newValue the value to store 201 public native void putIntVolatile(Object obj, long offset, int newValue); 219 * @param newValue the value to store 221 public native void putLongVolatile(Object obj, long offset, long newValue); [all...] |
/system/core/libcutils/ |
atomic.c | 72 int android_atomic_cmpxchg(int32_t oldvalue, int32_t newvalue, volatile int32_t* addr) { 73 return OSAtomicCompareAndSwap32Barrier(oldvalue, newvalue, (int32_t*)addr) == 0; 86 int android_quasiatomic_cmpxchg_64(int64_t oldvalue, int64_t newvalue, 88 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue, 165 int android_atomic_cmpxchg(int32_t oldvalue, int32_t newvalue, volatile int32_t* addr) { 173 : "a" (oldvalue), "c" (newvalue), "d" (addr) 221 int android_quasiatomic_cmpxchg_64(int64_t oldvalue, int64_t newvalue, 229 *addr = newvalue; 280 int android_quasiatomic_cmpxchg_64(int64_t oldvalue, int64_t newvalue, 293 *addr = newvalue; [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicBoolean.java | 99 * @param newValue the new value 101 public final void set(boolean newValue) { 102 value = newValue ? 1 : 0; 108 * @param newValue the new value 111 public final boolean getAndSet(boolean newValue) { 114 if (compareAndSet(current, newValue))
|
AtomicReference.java | 62 * @param newValue the new value 64 public final void set(V newValue) { 65 value = newValue; 99 * @param newValue the new value 102 public final V getAndSet(V newValue) { 105 if (compareAndSet(x, newValue))
|
/packages/apps/Settings/src/com/android/settings/vpn/ |
L2tpIpsecEditor.java | 76 Preference pref, Object newValue) { 77 mProfile.setUserCertificate((String) newValue); 79 (String) newValue); 95 Preference pref, Object newValue) { 96 mProfile.setCaCertificate((String) newValue); 98 (String) newValue);
|
/dalvik/libcore/luni/src/main/java/java/lang/ |
CaseMapper.java | 51 char[] newValue = null; 61 continue; // (We've already converted the preceding I, so we don't need to create newValue.) 67 if (newValue == null && ch != newCh) { 68 newValue = new char[count]; // The result can't be longer than the input. 70 System.arraycopy(value, offset, newValue, 0, newCount); 72 if (newValue != null) { 73 newValue[newCount++] = newCh; 76 return newValue != null ? new String(0, newCount, newValue) : s;
|