HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 76 - 100 of 699) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
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);
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
event_page.js 240 if (changes[Constants.AccessSurpriseMeEnabledKey].newValue) {
248 var newValue = changes[Constants.AccessSyncWallpaperInfoKey].newValue;
257 localValue.url != newValue.url ||
258 localValue.layout != newValue.layout ||
259 localValue.source != newValue.source) {
260 if (newValue.source == Constants.WallpaperSourceEnum.Online) {
264 WallpaperUtil.setOnlineWallpaper(newValue.url, newValue.layout,
268 newValue, false)
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 93 * @param newValue the new value
95 public final void set(double newValue) {
96 long next = doubleToRawLongBits(newValue);
103 * @param newValue the new value
105 public final void lazySet(double newValue) {
106 set(newValue);
108 // long next = doubleToRawLongBits(newValue);
115 * @param newValue the new value
118 public final double getAndSet(double newValue) {
119 long next = doubleToRawLongBits(newValue);
    [all...]
AtomicDoubleArray.java 100 * @param newValue the new value
102 public final void set(int i, double newValue) {
103 long next = doubleToRawLongBits(newValue);
111 * @param newValue the new value
113 public final void lazySet(int i, double newValue) {
114 set(i, newValue);
116 // long next = doubleToRawLongBits(newValue);
125 * @param newValue the new value
128 public final double getAndSet(int i, double newValue) {
129 long next = doubleToRawLongBits(newValue);
    [all...]
AtomicLongMap.java 112 long newValue = oldValue + delta;
113 if (atomic.compareAndSet(oldValue, newValue)) {
114 return newValue;
161 long newValue = oldValue + delta;
162 if (atomic.compareAndSet(oldValue, newValue)) {
171 * Associates {@code newValue} with {@code key} in this map, and returns the value previously
174 public long put(K key, long newValue) {
178 atomic = map.putIfAbsent(key, new AtomicLong(newValue));
189 if (map.replace(key, atomic, new AtomicLong(newValue))) {
196 if (atomic.compareAndSet(oldValue, newValue)) {
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
unum.cpp 565 int32_t newValue)
572 df->setParseIntegerOnly(newValue!=0);
576 df->setGroupingUsed(newValue!=0);
580 df->setDecimalSeparatorAlwaysShown(newValue!=0);
584 df->setMaximumIntegerDigits(newValue);
588 df->setMinimumIntegerDigits(newValue);
592 df->setMinimumIntegerDigits(newValue);
593 df->setMaximumIntegerDigits(newValue);
597 df->setMaximumFractionDigits(newValue);
601 df->setMinimumFractionDigits(newValue);
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view.js 413 var newValue = self.webviewNode.getAttribute(mutation.attributeName);
414 if (oldValue != newValue) {
418 mutation.attributeName, oldValue, newValue);
433 function(name, oldValue, newValue) {
443 newValue = newValue || '';
445 if (oldValue === newValue) {
448 this.name = newValue;
452 WebView.setName(this.instanceId, newValue);
458 newValue = newValue || ''
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_handler.cc 43 scoped_ptr<base::Value> value(data.NewValue());
52 values.Append(itr->NewValue());
63 origins_value.Append(itr->NewValue());
quota_internals_types.cc 40 base::Value* GlobalStorageInfo::NewValue() const {
61 base::Value* PerHostStorageInfo::NewValue() const {
84 base::Value* PerOriginStorageInfo::NewValue() const {
quota_internals_types.h 41 base::Value* NewValue() const;
66 base::Value* NewValue() const;
99 base::Value* NewValue() const;

Completed in 1101 milliseconds

1 2 34 5 6 7 8 91011>>