HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /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...]
  /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");
  /libcore/luni/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...]
  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 77 * @param newValue
81 Object newValue) {
83 oldValue, newValue);
99 * @param newValue
103 Object oldValue, Object newValue) {
107 propertyName, oldValue, newValue, index));
197 * @param newValue
201 boolean newValue) {
203 oldValue, newValue);
218 * @param newValue
    [all...]
PropertyChangeEvent.java 34 Object newValue;
50 * @param newValue
56 Object oldValue, Object newValue) {
61 this.newValue = newValue;
112 return newValue;
IndexedPropertyChangeEvent.java 43 * @param newValue
51 Object oldValue, Object newValue, int index) {
52 super(source, propertyName, oldValue, newValue);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 96 * @param newValue the new value
98 public final void set(boolean newValue) {
99 value = newValue ? 1 : 0;
105 * @param newValue the new value
108 public final void lazySet(boolean newValue) {
109 int v = newValue ? 1 : 0;
116 * @param newValue the new value
119 public final boolean getAndSet(boolean newValue) {
122 if (compareAndSet(current, newValue))
AtomicReference.java 60 * @param newValue the new value
62 public final void set(V newValue) {
63 value = newValue;
69 * @param newValue the new value
72 public final void lazySet(V newValue) {
73 unsafe.putOrderedObject(this, valueOffset, newValue);
107 * @param newValue the new value
110 public final V getAndSet(V newValue) {
113 if (compareAndSet(x, newValue))
AtomicReferenceFieldUpdater.java 117 * @param newValue the new value
119 public abstract void set(T obj, V newValue);
126 * @param newValue the new value
129 public abstract void lazySet(T obj, V newValue);
145 * @param newValue the new value
148 public V getAndSet(T obj, V newValue) {
151 if (compareAndSet(obj, current, newValue))
254 public void set(T obj, V newValue) {
256 (newValue != null && vclass != null &&
257 vclass != newValue.getClass())
    [all...]
AtomicInteger.java 66 * @param newValue the new value
68 public final void set(int newValue) {
69 value = newValue;
75 * @param newValue the new value
78 public final void lazySet(int newValue) {
79 unsafe.putOrderedInt(this, valueOffset, newValue);
85 * @param newValue the new value
88 public final int getAndSet(int newValue) {
91 if (compareAndSet(current, newValue))
AtomicIntegerArray.java 87 * @param newValue the new value
89 public final void set(int i, int newValue) {
90 unsafe.putIntVolatile(array, checkedByteOffset(i), newValue);
97 * @param newValue the new value
100 public final void lazySet(int i, int newValue) {
101 unsafe.putOrderedInt(array, checkedByteOffset(i), newValue);
109 * @param newValue the new value
112 public final int getAndSet(int i, int newValue) {
116 if (compareAndSetRaw(offset, current, newValue))
  /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);
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 141 * @param newValue new value to store in the field if the contents are
147 int expectedValue, int newValue);
156 * @param newValue new value to store in the field if the contents are
162 long expectedValue, long newValue);
171 * @param newValue new value to store in the field if the contents are
177 Object expectedValue, Object newValue);
195 * @param newValue the value to store
197 public native void putIntVolatile(Object obj, long offset, int newValue);
215 * @param newValue the value to store
217 public native void putLongVolatile(Object obj, long offset, long 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/chromium/third_party/icu/source/i18n/
unum.cpp 478 int32_t newValue)
484 df->setParseIntegerOnly(newValue!=0);
488 df->setGroupingUsed(newValue!=0);
492 df->setDecimalSeparatorAlwaysShown(newValue!=0);
496 df->setMaximumIntegerDigits(newValue);
500 df->setMinimumIntegerDigits(newValue);
504 df->setMinimumIntegerDigits(newValue);
505 df->setMaximumIntegerDigits(newValue);
509 df->setMaximumFractionDigits(newValue);
513 df->setMinimumFractionDigits(newValue);
    [all...]
  /external/icu4c/i18n/
unum.cpp 481 int32_t newValue)
487 df->setParseIntegerOnly(newValue!=0);
491 df->setGroupingUsed(newValue!=0);
495 df->setDecimalSeparatorAlwaysShown(newValue!=0);
499 df->setMaximumIntegerDigits(newValue);
503 df->setMinimumIntegerDigits(newValue);
507 df->setMinimumIntegerDigits(newValue);
508 df->setMaximumIntegerDigits(newValue);
512 df->setMaximumFractionDigits(newValue);
516 df->setMinimumFractionDigits(newValue);
    [all...]
  /dalvik/vm/native/
sun_misc_Unsafe.c 60 * int expectedValue, int newValue);
69 s4 newValue = args[5];
73 int result = android_atomic_release_cas(expectedValue, newValue, address);
80 * long expectedValue, long newValue);
89 s8 newValue = GET_ARG_LONG(args, 6);
94 dvmQuasiAtomicCas64(expectedValue, newValue, address);
101 * Object expectedValue, Object newValue);
110 Object* newValue = (Object*) args[5];
115 (int32_t) newValue, address);
136 * public native void putIntVolatile(Object obj, long offset, int newValue);
    [all...]
  /dalvik/vm/
Atomic.c 43 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
46 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
72 int64_t dvmQuasiAtomicSwap64(int64_t newvalue, volatile int64_t* addr)
81 : "r" (addr), "r" (newvalue)
87 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
100 : "r" (addr), "Ir" (oldvalue), "r" (newvalue)
156 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
165 *addr = newvalue;
220 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
234 *addr = newvalue;
    [all...]
  /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);

Completed in 620 milliseconds

1 2 3 4 5 6 7 8 910