HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 26 - 50 of 236) sorted by null

12 3 4 5 6 7 8 910

  /external/webkit/WebCore/dom/
MutationEvent.idl 32 readonly attribute DOMString newValue;
41 in DOMString newValue,
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodevalue01.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue02.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "This is a new Comment node", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("afterChange", "This should have an effect", newValue);
hc_nodevalue03.java 61 String newValue;
78 newValue = newNode.getNodeValue();
79 assertNull("initiallyNull", newValue);
81 newValue = newNode.getNodeValue();
82 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue04.java 61 String newValue;
70 newValue = newNode.getNodeValue();
71 assertNull("initiallyNull", newValue);
73 newValue = newNode.getNodeValue();
74 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue05.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue06.java 60 String newValue;
62 newValue = newNode.getNodeValue();
63 assertNull("initiallyNull", newValue);
65 newValue = newNode.getNodeValue();
66 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue07.java 64 String newValue;
78 newValue = newNode.getNodeValue();
79 assertNull("initiallyNull", newValue);
81 newValue = newNode.getNodeValue();
82 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue08.java 65 String newValue;
78 newValue = newNode.getNodeValue();
79 assertNull("initiallyNull", newValue);
81 newValue = newNode.getNodeValue();
82 assertNull("nullAfterAttemptedChange", newValue);
nodevalue01.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
nodevalue02.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "This is a new Comment node", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("afterChange", "This should have an effect", newValue);
nodevalue03.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue04.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue05.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
nodevalue06.java 60 String newValue;
62 newValue = newNode.getNodeValue();
63 assertNull("initiallyNull", newValue);
65 newValue = newNode.getNodeValue();
66 assertNull("nullAfterAttemptedChange", newValue);
nodevalue07.java 61 String newValue;
71 newValue = newNode.getNodeValue();
72 assertNull("initiallyNull", newValue);
74 newValue = newNode.getNodeValue();
75 assertNull("nullAfterAttemptedChange", newValue);
nodevalue08.java 62 String newValue;
71 newValue = newNode.getNodeValue();
72 assertNull("initiallyNull", newValue);
74 newValue = newNode.getNodeValue();
75 assertNull("nullAfterAttemptedChange", newValue);
nodevalue09.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "DATA", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("after", "This should have an effect", newValue);
  /packages/apps/Settings/src/com/android/settings/vpn/
VpnProfileEditor.java 63 Preference pref, Object newValue) {
64 setName((String) newValue);
107 Preference pref, Object newValue) {
108 String v = ((String) newValue).trim();
125 Preference pref, Object newValue) {
126 String v = ((String) newValue).trim();
219 Preference pref, Object newValue) {
220 saveSecretToProfile((String) newValue);
221 setSecretSummary((String) newValue);
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
SetAttributeNS.java 105 qualifiedName, "newValue");
133 qualifiedName, "newValue");
172 // "newValue");
199 "newprefix:zone", "newValue");
204 assertEquals("attrValue", "newValue", resultAttr);
233 qualifiedName, "<newValue>");
236 assertEquals("throw_Equals", "<newValue>", resultAttr);
258 qualifiedName, "newValue");
285 qualifiedName, "newValue");
315 qualifiedName, "newValue");
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
ValueFuture.java 45 * @param newValue the value the future should hold.
49 public boolean set(V newValue) {
50 return super.set(newValue);
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
FloatControl.java 89 public void setValue(float newValue) {
90 if (newValue > maximum || newValue < minimum) {
94 this.value = newValue;
  /external/webkit/LayoutTests/storage/domstorage/localstorage/resources/
iframe-events-second.html 8 parent.log("New Value - " + e.newValue);
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/
iframe-events-second.html 8 parent.log("New Value - " + e.newValue);
  /external/webkit/WebKit/chromium/public/
WebStorageArea.h 69 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
72 setItem(key, newValue, url, quotaException, oldValue);
76 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, bool& quotaException, WebString& oldValue)
79 setItem(key, newValue, url, result, oldValue);

Completed in 217 milliseconds

12 3 4 5 6 7 8 910