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

1 2 34 5 6 7 8 91011>>

  /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);
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
event_page.js 241 if (changes[Constants.AccessSurpriseMeEnabledKey].newValue) {
249 var newValue = changes[Constants.AccessSyncWallpaperInfoKey].newValue;
258 localValue.url != newValue.url ||
259 localValue.layout != newValue.layout ||
260 localValue.source != newValue.source) {
261 if (newValue.source == Constants.WallpaperSourceEnum.Online) {
265 WallpaperUtil.setOnlineWallpaper(newValue.url, newValue.layout,
269 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/extensions/renderer/resources/
web_view.js 424 var newValue = this.webviewNode.getAttribute(mutation.attributeName);
425 if (oldValue != newValue) {
429 mutation.attributeName, oldValue, newValue);
444 function(name, oldValue, newValue) {
451 this[name] = newValue;
473 newValue = newValue || '';
475 if (oldValue === newValue) {
478 this.allowtransparency = newValue != '';
490 newValue = newValue || ''
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/
DistilledPagePrefsView.java 225 // newValue = .50, .55, .60, ..., 1.95, 2.00 (supported font scales)
226 float newValue = (progress / 20f + .5f);
227 setFontScaleTextView(newValue);
228 mFontSizePrefs.setFontScaleFactor(newValue);
269 private void setFontScaleProgress(float newValue) {
270 // newValue = .50, .55, .60, ..., 1.95, 2.00 (supported font scales)
272 int progress = (int) ((newValue - .5) * 20);
279 private void setFontScaleTextView(float newValue) {
280 mFontScaleTextView.setText(mPercentageFormatter.format(newValue));
  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_handler.cc 42 scoped_ptr<base::Value> value(data.NewValue());
51 values.Append(itr->NewValue());
62 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 {

Completed in 301 milliseconds

1 2 34 5 6 7 8 91011>>