HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 176 - 200 of 520) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/i18n/
winnmfmt.h 105 * @param newValue the new value to be set.
108 virtual void setMaximumFractionDigits(int32_t newValue);
116 * @param newValue the new value to be set.
119 virtual void setMinimumFractionDigits(int32_t newValue);
  /external/webkit/Source/WebCore/bindings/objc/
DOMHTML.mm 128 WTF::String newValue = inputElement->value();
129 newValue.replace(targetRange.location, targetRange.length, replacementString);
130 inputElement->setValue(newValue);
131 inputElement->setSelectionRange(index, newValue.length());
  /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/compile/libbcc/lib/Renderscript/runtime/
rs_core.c 54 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) {
55 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
58 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) {
59 return __sync_val_compare_and_swap((volatile int32_t *)ptr, (int32_t)expectedValue, (int32_t)newValue);
  /libcore/luni/src/test/resources/prefs/java/util/prefs/
userprefs-badtype.xml 37 <entry key="prefskey" value="newvalue" />
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CSpinner.java 234 public void setSelection(int newValue) {
235 newValue = Math.min(Math.max(m_minimum, newValue), m_maximum);
236 if (newValue != m_value) {
237 m_value = newValue;
267 int newValue;
269 newValue = m_value;
271 newValue += m_increment;
274 newValue -= m_increment;
278 setSelection(newValue);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm 128 Vector<char, 128> newValue;
129 newValue.append(existingValue, strlen(existingValue));
130 newValue.append(separator);
131 newValue.append(value, strlen(value) + 1);
133 set(name, newValue.data());
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 153 public boolean onPreferenceChange(Preference pref, Object newValue) {
156 String delay = (String) newValue;
160 final int idx = listPref.findIndexOfValue((String) newValue);
164 final int idx = listPref.findIndexOfValue((String) newValue);
174 final int idx = listPref.findIndexOfValue((String) newValue);
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 304 public boolean onPreferenceChange(Preference preference, Object newValue) {
308 if ((Boolean)newValue) {
316 mHideDeclined.setChecked((Boolean) newValue);
322 mWeekStart.setValue((String) newValue);
325 mDefaultReminder.setValue((String) newValue);
328 if (newValue instanceof String) {
329 Utils.setRingTonePreference(activity, (String) newValue);
330 String ringtone = getRingtoneTitleFromUri(activity, (String) newValue);
335 mVibrate.setChecked((Boolean) newValue);
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 365 private String mvnoDescription(String newValue) {
366 int mvnoIndex = mMvnoType.findIndexOfValue(newValue);
378 if (newValue != null && newValue.equals(oldValue) == false) {
398 public boolean onPreferenceChange(Preference preference, Object newValue) {
402 int index = Integer.parseInt((String) newValue);
411 String protocol = protocolDescription((String) newValue, mProtocol);
416 mProtocol.setValue((String) newValue);
418 String protocol = protocolDescription((String) newValue, mRoamingProtocol);
423 mRoamingProtocol.setValue((String) newValue);
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
CustomPreference.java 54 protected boolean callChangeListener(Object newValue) {
55 return super.callChangeListener(newValue);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntArrayList.java 50 public int set(int i, int newValue) {
55 elements[i] = newValue;
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPreference.java 103 public boolean callChangeListener(Object newValue) {
104 callChangeListenerValue = newValue;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
elementsetidattributens03.js 105 employeeIdElem.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:newAttr","newValue");
113 elem = doc.getElementById("newValue");
elementsetidattributens04.js 110 strongElem.setAttributeNS("http://www.netzero.com","dmstc:newAttr","newValue");
118 elem = doc.getElementById("newValue");
elementsetidattributens05.js 110 acronymElem.setAttributeNS("*","title","newValue");
118 elem = doc.getElementById("newValue");
elementsetidattributens13.js 106 nameElem.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:newAttr","newValue");
114 elem = doc.getElementById("newValue");
  /external/webkit/Source/WebCore/inspector/front-end/
DOMAgent.js 435 _characterDataModified: function(nodeId, newValue)
438 node._nodeValue = newValue;
494 _childNodeCountUpdated: function(nodeId, newValue)
497 node._childNodeCount = newValue;
562 characterDataModified: function(nodeId, newValue)
564 this._domAgent._characterDataModified(nodeId, newValue);
572 childNodeCountUpdated: function(nodeId, newValue)
574 this._domAgent._childNodeCountUpdated(nodeId, newValue);
  /external/webkit/Source/WebCore/platform/graphics/mac/
ColorMac.mm 43 void setUsesTestModeFocusRingColor(bool newValue)
45 useOldAquaFocusRingColor = 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));
  /external/webrtc/src/system_wrappers/interface/
static_instance.h 119 int newValue = InterlockedDecrement(&instance_count);
120 if (newValue == 0) {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
setAttributeNS04.java 90 ((Element) /*Node */testAddr).setAttributeNS("http://www.nist.gov", "newprefix:zone", "newValue");
93 assertEquals("attrValue", "newValue", resultAttr);
setAttributeNS09.java 85 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
88 assertEquals("attrValue", "newValue", resultAttr);
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 448 * @param newValue *
458 public void setDoInput(boolean newValue) {
462 this.doInput = newValue;
463 this.doOutput = !newValue;
471 * @param newValue
481 public void setDoOutput(boolean newValue) {
485 this.doOutput = newValue;
486 this.doInput = !newValue;

Completed in 903 milliseconds

1 2 3 4 5 6 78 91011>>