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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
CaseMapper.java 53 char[] newValue = null;
66 if (newValue == null && ch != newCh) {
67 newValue = new char[count]; // The result can't be longer than the input.
69 System.arraycopy(value, offset, newValue, 0, newCount);
71 if (newValue != null) {
72 newValue[newCount++] = newCh;
75 return newValue != null ? new String(0, newCount, newValue) : s;
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 107 public void setThrowsException(boolean newValue) {
108 throwsException = newValue;
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodevalue01.js 90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue05.js 90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue06.js 89 var newValue;
96 newValue = newNode.nodeValue;
98 assertNull("initiallyNull",newValue);
101 newValue = newNode.nodeValue;
103 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue02.js 90 var newValue;
98 newValue = newNode.nodeValue;
100 assertEquals("initial","This is a new Comment node",newValue);
103 newValue = newNode.nodeValue;
105 assertEquals("afterChange","This should have an effect",newValue);
hc_nodevalue03.js 90 var newValue;
120 newValue = newNode.nodeValue;
122 assertNull("initiallyNull",newValue);
125 newValue = newNode.nodeValue;
127 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue04.js 90 var newValue;
114 newValue = newNode.nodeValue;
116 assertNull("initiallyNull",newValue);
119 newValue = newNode.nodeValue;
121 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue07.js 91 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue08.js 92 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodevalue01.js 90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue05.js 90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue06.js 89 var newValue;
96 newValue = newNode.nodeValue;
98 assertNull("initiallyNull",newValue);
101 newValue = newNode.nodeValue;
103 assertNull("nullAfterAttemptedChange",newValue);
  /external/icu4c/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/icu4c/i18n/unicode/
decimfmt.h     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
MyPreference.java 57 int newValue = mClickCounter + 1;
60 if (!callChangeListener(newValue)) {
66 mClickCounter = newValue;
  /packages/apps/Email/src/com/android/email/activity/setup/
GeneralPreferences.java 70 public boolean onPreferenceChange(Preference preference, Object newValue) {
74 mPreferences.setAutoAdvanceDirection(mAutoAdvance.findIndexOfValue((String) newValue));
77 mPreferences.setTextZoom(mTextZoom.findIndexOfValue((String) newValue));
  /external/webkit/Source/WebCore/html/
NumberInputType.cpp 71 void NumberInputType::setValueAsNumber(double newValue, ExceptionCode& ec) const
73 if (newValue < -numeric_limits<float>::max()) {
77 if (newValue > numeric_limits<float>::max()) {
81 element()->setValue(serialize(newValue));
HTMLInputElement.cpp 342 double newValue = current + step * count;
343 if (isinf(newValue)) {
348 if (newValue - m_inputType->minimum() < -acceptableError) {
352 if (newValue < m_inputType->minimum())
353 newValue = m_inputType->minimum();
357 if (newValue < pow(10.0, 21.0)) {
360 newValue = round(newValue * scale) / scale;
363 newValue = round((base + round((newValue - base) / step) * step) * scale) / scale
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
ColorMac.mm 43 void setUsesTestModeFocusRingColor(bool newValue)
45 useOldAquaFocusRingColor = newValue;
  /external/webkit/Source/WebKit/chromium/src/
StorageAreaProxy.h 55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
TreeViewControls.java 100 int newValue = mZoomSlider.getSelection();
101 if (oldValue != newValue) {
103 TreeViewModel.getModel().setZoom(newValue / 10.0);
105 oldValue = 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());
  /cts/tests/tests/util/src/android/util/cts/
SparseBooleanArrayTest.java 127 boolean newValue = false;
130 sparseBooleanArray.put(existKey, newValue);
131 assertEquals(newValue, sparseBooleanArray.get(existKey));
245 boolean newValue = false;
248 sparseBooleanArray.put(existKey, newValue);
249 assertEquals(newValue, sparseBooleanArray.get(existKey));
  /libcore/luni/src/test/java/tests/java/sql/
UpdateFunctionalityTest.java 107 String newValue = "newValue";
109 + " SET field1='" + newValue + "'";
118 assertEquals("The field field1 was not updated", newValue,
132 String newValue = "newValue";
134 + " SET field1='" + newValue + "' WHERE (id > 2) and (id < 10)";
146 assertEquals("The field field1 was not updated", newValue,

Completed in 379 milliseconds

1 2 3 45 6 7 8 91011>>