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

1 2 3 4 5 67 8 910

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-006.js 52 var cnNameSetter = function(newValue) {this._name=newValue; this.nameSETS++;};
  /packages/apps/Settings/src/com/android/settings/
VoiceInputOutputSettings.java 213 public boolean onPreferenceChange(Preference preference, Object newValue) {
215 String setting = (String) newValue;
  /system/core/libcutils/
atomic-android-armv6.S 155 * input: r0=oldvalue, r1=newvalue, r2=address
171 * input: r0-r1=oldvalue, r2-r3=newvalue, arg4 (on stack)=address
atomic-android-arm.S 255 * input: r0=oldvalue, r1=newvalue, r2=address
288 * input: r0-r1=oldvalue, r2-r3=newvalue, arg4 (on stack)=address
  /dalvik/vm/
Profile.c 221 int oldValue, newValue;
225 newValue = oldValue + count;
226 if (newValue < 0) {
227 LOGE("Can't have %d active profilers\n", newValue);
230 } while (!ATOMIC_CMP_SWAP(&gDvm.activeProfilers, oldValue, newValue));
232 LOGD("+++ active profiler count now %d\n", newValue);
  /external/icu4c/i18n/unicode/
unum.h 615 * @param newValue The new value of attr.
626 int32_t newValue);
653 * @param newValue The new value of attr.
664 double newValue);
727 * @param newValue The new value of attr.
728 * @param newValueLength The length of newValue, or -1 if null-terminated.
738 const UChar* newValue,
  /external/webkit/WebCore/html/
HTMLInputElement.cpp 656 double newValue = current + step * count;
657 if (isinf(newValue)) {
661 if (newValue < minimum()) {
666 newValue = base + round((newValue - base) / step) * step;
667 if (newValue > maximum()) {
671 setValueAsNumber(newValue, ec);
    [all...]
  /external/icu4c/test/cintltst/
cnumtst.c 117 int32_t newvalue; local
682 newvalue=unum_getAttribute(def, attr);
683 newvalue=2;
684 unum_setAttribute(def, attr, newvalue);
691 newvalue=unum_getAttribute(def, attr);
692 newvalue=8;
693 unum_setAttribute(def, attr, newvalue);
700 newvalue=unum_getAttribute(def, attr);
701 newvalue=2;
702 unum_setAttribute(def, attr, newvalue);
    [all...]
  /external/webkit/JavaScriptCore/wrec/
WRECParser.cpp 426 unsigned newValue = value * 10 + peekDigit();
427 if (newValue > m_numSubpatterns)
429 value = newValue;
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 725 for (unsigned newValue; peekIsDigit() && ((newValue = n * 10 + peekDigit()) >= n); ) {
726 n = newValue;
  /external/webkit/WebCore/platform/graphics/
FontCache.cpp 281 pair<SimpleFontData*, unsigned> newValue(new SimpleFontData(*platformData), 1);
282 gFontDataCache->set(*platformData, newValue);
283 return newValue.first;
  /external/webkit/WebCore/rendering/
RenderSlider.cpp 113 double newValue = clampValue(oldValue);
116 *wasClamped = !parseSuccess || newValue != oldValue;
118 return newValue;
  /external/icu4c/i18n/
decimfmt.cpp     [all...]
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 117 K key, boolean containedKey, V oldValue, V newValue) {
121 inverse.delegate.put(newValue, key);
  /external/quake/quake/src/QW/server/
pr_cmds.c 290 vec3_t newvalue; local
299 newvalue[0] = newvalue[1] = newvalue[2] = 0;
303 newvalue[0] = value1[0] * new;
304 newvalue[1] = value1[1] * new;
305 newvalue[2] = value1[2] * new;
308 VectorCopy (newvalue, G_VECTOR(OFS_RETURN));
  /frameworks/base/core/java/android/view/
WindowOrientationListener.java 232 private float lowpassFilter(float newValue, float oldValue, float alpha) {
233 return alpha * newValue + (1 - alpha) * oldValue;
  /packages/apps/AlarmClock/src/com/android/alarmclock/
SetAlarm.java 75 Object newValue) {
77 p.setSummary((String) newValue);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrsetvaluenomodificationallowederr.java 101 attrNode.setValue("newvalue");
attrsetvaluenomodificationallowederrEE.java 91 ((Attr) /*Node */attrNode).setValue("newvalue");
elementsetattributenomodificationallowederr.java 90 entElement.setAttribute("newAttr", "newValue");
elementsetattributenomodificationallowederrEE.java 85 entElement.setAttribute("newAttr", "newValue");
nodesetnodevaluenomodificationallowederr.java 95 entElementText.setNodeValue("newValue");
nodesetnodevaluenomodificationallowederrEE.java 74 entText.setNodeValue("newValue");
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
setAttributeNS03.java 99 genElement.setAttributeNS(namespaceURI, qualifiedName, "newValue");
  /external/opencore/protocols/rtsp_parcom/src/
rtsp_par_com_message.h 268 const char * newValue

Completed in 2366 milliseconds

1 2 3 4 5 67 8 910