HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 76 - 100 of 311) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
MediaQueryList.cpp 76 void MediaQueryList::setMatches(bool newValue)
80 if (newValue == m_matches)
83 m_matches = newValue;
  /external/webkit/Source/WebCore/html/
StepRange.cpp 77 double newValue = clampValue(oldValue);
80 *wasClamped = !parseSuccess || newValue != oldValue;
82 return newValue;
RangeInputType.cpp 83 void RangeInputType::setValueAsNumber(double newValue, ExceptionCode&) const
85 element()->setValue(serialize(newValue));
180 double newValue;
182 newValue = current + step;
183 if (newValue > max)
184 newValue = max;
186 newValue = current - step;
187 if (newValue < min)
188 newValue = min;
190 if (newValue != current)
    [all...]
  /external/webrtc/src/system_wrappers/source/
atomic32_linux.h 37 inline bool CompareExchange(WebRtc_Word32 newValue,
107 inline bool Atomic32Impl::CompareExchange(WebRtc_Word32 newValue,
110 return __sync_bool_compare_and_swap(_value,compareValue,newValue);
atomic32_mac.h 36 inline bool CompareExchange(WebRtc_Word32 newValue,
103 inline bool Atomic32Impl::CompareExchange(WebRtc_Word32 newValue,
108 newValue,
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 100 * @param newValue the new value
102 public abstract void set(T obj, long newValue);
109 * @param newValue the new value
112 public abstract void lazySet(T obj, long newValue);
128 * @param newValue the new value
131 public long getAndSet(T obj, long newValue) {
134 if (compareAndSet(obj, current, newValue))
290 public void set(T obj, long newValue) {
292 unsafe.putLongVolatile(obj, offset, newValue);
295 public void lazySet(T obj, long newValue) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/preference/
DisplayOrderPreference.java 76 int newValue = Integer.parseInt(value);
77 if (newValue != mPreferences.getDisplayOrder()) {
78 mPreferences.setDisplayOrder(newValue);
SortOrderPreference.java 76 int newValue = Integer.parseInt(value);
77 if (newValue != mPreferences.getSortOrder()) {
78 mPreferences.setSortOrder(newValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
PropertyCallback.java 28 * particular property to the new valueId or newValue passed from the {@link IMenuCallback}
57 final String valueId, final Boolean newValue) {
71 assert newValue != null;
72 targetNode.setAttribute(mUri, mAttribute, Boolean.toString(newValue));
  /libcore/luni/src/main/java/java/net/
URLConnection.java 482 * @param newValue
490 public void addRequestProperty(String field, String newValue) {
811 * @param newValue
818 public void setAllowUserInteraction(boolean newValue) {
820 this.allowUserInteraction = newValue;
866 * @param newValue
870 public void setDefaultUseCaches(boolean newValue) {
871 defaultUseCaches = newValue;
878 * @param newValue
885 public void setDoInput(boolean newValue) {
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-003.js 47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
111 TestObject.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
getset-004.js 47 obj.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
  /external/webkit/Source/WebCore/platform/gtk/
MainFrameScrollbarGtk.cpp 122 int newValue = static_cast<int>(gtk_adjustment_get_value(that->m_adjustment.get()));
123 if (newValue != that->value())
124 that->scrollableArea()->scrollToOffsetWithoutAnimation(that->orientation(), newValue);
  /external/webkit/Source/WebCore/storage/
StorageEventDispatcher.cpp 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
StorageEvent.idl 33 readonly attribute [ConvertNullStringTo=Null] DOMString newValue;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastSettings.java 86 public boolean onPreferenceChange(Preference pref, Object newValue) {
88 final int idx = listPref.findIndexOfValue((String) newValue);
96 public boolean onPreferenceChange(Preference pref, Object newValue) {
  /external/webkit/Source/WebCore/bindings/v8/
V8Utilities.cpp 82 v8::Local<v8::Value> newValue,
93 if (!newValue->IsNull() && !newValue->IsUndefined())
94 createHiddenDependency(object, newValue, cacheIndex);
  /frameworks/base/core/java/android/server/
BluetoothDeviceProperties.java 52 String newValue = null;
67 newValue = str.toString();
70 newValue = properties[++i];
73 propertyValues.put(name, newValue);
  /libcore/luni/src/main/java/libcore/net/http/
HttpsURLConnectionImpl.java 239 public void addRequestProperty(String field, String newValue) {
240 delegate.addRequestProperty(field, newValue);
304 public void setAllowUserInteraction(boolean newValue) {
305 delegate.setAllowUserInteraction(newValue);
309 public void setDefaultUseCaches(boolean newValue) {
310 delegate.setDefaultUseCaches(newValue);
314 public void setDoInput(boolean newValue) {
315 delegate.setDoInput(newValue);
319 public void setDoOutput(boolean newValue) {
320 delegate.setDoOutput(newValue);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidDocumentChange.java 223 * @param newValue the new value
227 protected TextEdit createTextEdit(Attr attribute, String newValue) {
236 return new ReplaceEdit(offset + 1, region.length() - 2, newValue);
243 * Returns the text change that change the value of attribute from oldValue to newValue
249 * @param newValue the new value
254 String newValue) {
255 return createTextEdit(elementName, attributeName, oldValue, newValue, true);
259 * Returns the text change that change the value of attribute from oldValue to newValue
278 String newValue;
280 newValue = AndroidManifest.extractActivityName(newName, getAppPackage())
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectControls.java 180 int newValue = mOverlaySlider.getSelection();
181 if (oldValue != newValue) {
183 PixelPerfectModel.getModel().setOverlayTransparency(newValue / 100.0);
185 oldValue = newValue;
198 int newValue = mAutoRefreshSlider.getSelection();
199 if (oldValue != newValue) {
200 HierarchyViewerDirector.getDirector().setPixelPerfectAutoRefreshInterval(newValue);
213 int newValue = mZoomSlider.getSelection();
214 if (oldValue != newValue) {
216 PixelPerfectModel.getModel().setZoom(newValue);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 462 String newValue = null;
465 newValue = System.getProperty(newKey);
471 if (newValue == null)
472 newValue = fixupPropertyString(value, false);
474 newValue = fixupPropertyString(newValue, false);
476 if (key != newKey || value != newValue)
479 props.put(newKey, newValue);
  /external/icu4c/i18n/
winnmfmt.h 108 * @param newValue the new value to be set.
112 virtual void setMaximumFractionDigits(int32_t newValue);
120 * @param newValue the new value to be set.
124 virtual void setMinimumFractionDigits(int32_t newValue);
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 70 public void setValue(Annotation newValue) {
71 value = newValue;
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherImpl.cpp 54 const String& newValue, SecurityOrigin* securityOrigin,
78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));

Completed in 478 milliseconds

1 2 34 5 6 7 8 91011>>