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

1 2 3 4 5 67 8 91011>>

  /prebuilts/sdk/renderscript/include/
rs_atomic.rsh 222 * If the value at addr matches compareValue then newValue is written.
226 * @param newValue The value to write if the test passes.
231 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
236 * If the value at addr matches compareValue then newValue is written.
240 * @param newValue The value to write if the test passes.
245 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
  /external/javassist/src/main/javassist/bytecode/annotation/
BooleanMemberValue.java 78 public void setValue(boolean newValue) {
79 valueIndex = cp.addIntegerInfo(newValue ? 1 : 0);
ByteMemberValue.java 78 public void setValue(byte newValue) {
79 valueIndex = cp.addIntegerInfo(newValue);
CharMemberValue.java 79 public void setValue(char newValue) {
80 valueIndex = cp.addIntegerInfo(newValue);
DoubleMemberValue.java 80 public void setValue(double newValue) {
81 valueIndex = cp.addDoubleInfo(newValue);
FloatMemberValue.java 80 public void setValue(float newValue) {
81 valueIndex = cp.addFloatInfo(newValue);
IntegerMemberValue.java 85 public void setValue(int newValue) {
86 valueIndex = cp.addIntegerInfo(newValue);
LongMemberValue.java 79 public void setValue(long newValue) {
80 valueIndex = cp.addLongInfo(newValue);
ShortMemberValue.java 79 public void setValue(short newValue) {
80 valueIndex = cp.addIntegerInfo(newValue);
StringMemberValue.java 79 public void setValue(String newValue) {
80 valueIndex = cp.addUtf8Info(newValue);
  /external/srec/shared/include/
ESR_SessionTypeListener.h 49 * @param newValue New property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 103 float newValue = value * m_scrollbar->maximum();
104 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
  /external/webkit/Source/WebKit/chromium/src/
WebOptionElement.cpp 44 void WebOptionElement::setValue(const WebString& newValue)
46 return unwrap<HTMLOptionElement>()->setValue(newValue);
WebStorageEventDispatcherImpl.cpp 58 const WebString& newValue, const WebString& origin,
67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
  /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/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,
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 107 public void setThrowsException(boolean newValue) {
108 throwsException = newValue;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
DeviceAdminSample.java 211 public boolean onPreferenceChange(Preference preference, Object newValue) {
213 doResetPassword((String)newValue);
294 public boolean onPreferenceChange(Preference preference, Object newValue) {
295 if (super.onPreferenceChange(preference, newValue)) {
298 boolean value = (Boolean) newValue;
464 public boolean onPreferenceChange(Preference preference, Object newValue) {
465 if (super.onPreferenceChange(preference, newValue)) {
468 String valueString = (String)newValue;
566 public boolean onPreferenceChange(Preference preference, Object newValue) {
567 if (super.onPreferenceChange(preference, newValue)) {
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 380 public boolean onPreferenceChange(Preference preference, Object newValue) {
381 String summary = newValue.toString().trim();
400 public boolean onPreferenceChange(Preference preference, Object newValue) {
401 final String summary = newValue.toString().trim();
416 public boolean onPreferenceChange(Preference preference, Object newValue) {
420 String signature = newValue.toString();
442 public boolean onPreferenceChange(Preference preference, Object newValue) {
443 final String summary = newValue.toString();
447 onPreferenceChanged(PREFERENCE_FREQUENCY, newValue);
477 public boolean onPreferenceChange(Preference preference, Object newValue) {
    [all...]
  /external/webkit/Source/WebCore/html/
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...]
  /libcore/luni/src/main/java/java/net/
URLConnection.java 474 * @param newValue
482 public void addRequestProperty(String field, String newValue) {
801 public void setAllowUserInteraction(boolean newValue) {
803 this.allowUserInteraction = newValue;
842 * @param newValue
846 public void setDefaultUseCaches(boolean newValue) {
847 defaultUseCaches = newValue;
854 * @param newValue
861 public void setDoInput(boolean newValue) {
863 this.doInput = newValue;
    [all...]
  /development/tools/idegen/src/com/android/idegen/
MakeFileParser.java 214 * @param newValue The value to append.
216 private void appendValue(String key, String newValue) {
219 values.put(key, newValue);
221 values.put(key, value + VALUE_DELIMITER + newValue);
  /external/apache-harmony/prefs/src/test/resources/prefs/java/util/prefs/
userprefs-badtype.xml 37 <entry key="prefskey" value="newvalue" />
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
tabs.js 19 * @param {boolean} newValue The new selected value
23 function selectedSetHook(newValue, oldValue) {
25 if (newValue && (tabBox = getTabBox(this)))
87 if (e.newValue && getTabBox(target) == this) {
  /external/chromium/chrome/browser/resources/shared/js/
cr_test.html 75 assertEquals(2, e.newValue);
97 assertEquals(2, e.newValue);
159 assertEquals('b', e.newValue);
201 assertEquals(true, e.newValue);

Completed in 1060 milliseconds

1 2 3 4 5 67 8 91011>>