HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 201 - 225 of 719) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/icu/source/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/chromium_org/ui/webui/resources/js/cr/ui/
tabs.js 30 * @param {boolean} newValue The new selected value
34 function selectedSetHook(newValue, oldValue) {
36 if (newValue && (tabBox = getTabBox(this)))
107 if (e.newValue && isTabElement(target) && getTabBox(target) == this) {
  /external/icu/icu4c/source/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/protobuf/java/src/main/java/com/google/protobuf/nano/
FieldData.java 48 <T> FieldData(Extension<?, T> extension, T newValue) {
50 value = newValue;
75 <T> void setValue(Extension<?, T> extension, T newValue) {
77 value = newValue;
  /frameworks/rs/driver/runtime/
rs_core.c 37 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) {
38 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
41 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) {
42 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
  /libcore/luni/src/test/resources/prefs/java/util/prefs/
userprefs-badtype.xml 37 <entry key="prefskey" value="newvalue" />
  /packages/apps/Settings/src/com/android/settings/users/
UserDetailsSettings.java 119 public boolean onPreferenceChange(Preference preference, Object newValue) {
123 !((Boolean) newValue));
141 !((Boolean) newValue), userHandle);
143 !((Boolean) newValue), userHandle);
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 307 public boolean onPreferenceChange(Preference preference, Object newValue) {
309 + ", newValue - " + newValue + ", newValue type - "
310 + newValue.getClass());
311 if (newValue instanceof String) {
312 setSelectedApnKey((String) newValue);
ApnEditor.java 375 private String mvnoDescription(String newValue) {
376 int mvnoIndex = mMvnoType.findIndexOfValue(newValue);
388 if (newValue != null && newValue.equals(oldValue) == false) {
407 public boolean onPreferenceChange(Preference preference, Object newValue) {
411 int index = Integer.parseInt((String) newValue);
420 String protocol = protocolDescription((String) newValue, mProtocol);
425 mProtocol.setValue((String) newValue);
427 String protocol = protocolDescription((String) newValue, mRoamingProtocol);
432 mRoamingProtocol.setValue((String) newValue);
    [all...]
  /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/chromium-trace/trace-viewer/src/ui/
overlay.js 201 set visible(newValue) {
202 base.setPropertyAndDispatchChange(this, 'visible', newValue);
209 set obeyCloseEvents(newValue) {
210 base.setPropertyAndDispatchChange(this, 'obeyCloseEvents', newValue);
213 overlayRoot.toggleToolbar(newValue);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SimpleVerifier.java 111 public Value newValue(final Type type) {
127 Value v = super.newValue(type);
130 v = newValue(type.getElementType());
155 return newValue(Type.getType(arrayType.getDescriptor()
221 return newValue(t);
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 126 public boolean onPreferenceChange(Preference pref, Object newValue) {
129 String delay = (String) newValue;
133 final int idx = listPref.findIndexOfValue((String) newValue);
137 final int idx = listPref.findIndexOfValue((String) newValue);
147 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);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
DeviceAdminSample.java 238 public boolean onPreferenceChange(Preference preference, Object newValue) {
240 doResetPassword((String)newValue);
355 public boolean onPreferenceChange(Preference preference, Object newValue) {
356 if (super.onPreferenceChange(preference, newValue)) {
360 boolean value = (Boolean) newValue;
378 boolean value = (Boolean) newValue;
593 public boolean onPreferenceChange(Preference preference, Object newValue) {
594 if (super.onPreferenceChange(preference, newValue)) {
597 String valueString = (String)newValue;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMarqueeElement.js 152 HTMLMarqueeElementPrototype.attributeChangedCallback = function(name, oldValue, newValue) {
155 this.style.backgroundColor = newValue;
158 this.style.height = convertHTMLLengthToCSSLength(newValue);
161 var margin = convertHTMLLengthToCSSLength(newValue);
166 var margin = convertHTMLLengthToCSSLength(newValue);
171 this.style.width = convertHTMLLengthToCSSLength(newValue);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtreeA.test 48 proc set_tree_depth {tbl {newvalue ""}} {
51 if {$newvalue == ""} {
56 set blob [binary format Sua* $newvalue [string range $blob 2 end]]
61 proc set_entry_count {tbl nodeno {newvalue ""}} {
64 if {$newvalue == ""} {
70 [string range $blob 0 1] $newvalue [string range $blob 4 end]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test__osx_support.py 81 newvalue = 'clang -pthreads'
82 _osx_support._save_modified_value(config_vars, cv, newvalue)
96 newvalue = 'clang -pthreads'
97 _osx_support._save_modified_value(config_vars, cv, newvalue)
106 newvalue = 'gcc-test -pthreads'
107 _osx_support._save_modified_value(config_vars, cv, newvalue)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__osx_support.py 81 newvalue = 'clang -pthreads'
82 _osx_support._save_modified_value(config_vars, cv, newvalue)
96 newvalue = 'clang -pthreads'
97 _osx_support._save_modified_value(config_vars, cv, newvalue)
106 newvalue = 'gcc-test -pthreads'
107 _osx_support._save_modified_value(config_vars, cv, newvalue)
  /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/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseCheckableInputType.cpp 114 bool BaseCheckableInputType::shouldDispatchFormControlChangeEvent(String& oldValue, String& newValue)
116 return oldValue != newValue;
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMActivityLogger.cpp 55 virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE
57 m_domActivityLogger->logSetter(WebString(apiName), newValue, getURL(), getTitle());
  /external/llvm/test/CodeGen/AArch64/
cmpxchg-idioms.ll 29 define i1 @test_return_bool(i8* %value, i8 %oldValue, i8 %newValue) {
52 %pair = cmpxchg i8* %value, i8 %oldValue, i8 %newValue acq_rel monotonic

Completed in 985 milliseconds

1 2 3 4 5 6 7 891011>>