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

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/wifi/
AdvancedWifiSettings.java 259 public boolean onPreferenceChange(Preference preference, Object newValue) {
265 int value = Integer.parseInt((String) newValue);
275 NetworkScorerAppManager.getScorer(context, (String) newValue);
303 String stringValue = (String) newValue;
  /external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp     [all...]
  /external/chromium-trace/trace-viewer/src/ui/
quad_stack.js 67 set layers(newValue) {
68 base.setPropertyAndDispatchChange(this, 'layers', newValue);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateOptions.java 177 private boolean toggleState(int element, boolean newValue) {
181 mOptions[element] = newValue;
  /external/chromium_org/chrome/browser/resources/print_preview/settings/
copies_settings.js 168 var newValue =
170 this.copiesTicketItem_.updateValue(newValue + '');
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElement.cpp 112 void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
115 CustomElementScheduler::scheduleAttributeChangedCallback(element->customElementDefinition()->callbacks(), element, name, oldValue, newValue);
CustomElementScheduler.cpp 104 void CustomElementScheduler::scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtrWillBeRawPtr<Element> element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
110 queue.append(CustomElementCallbackInvocation::createAttributeChangedInvocation(callbacks, name, oldValue, newValue));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseDateAndTimeInputType.cpp 66 void BaseDateAndTimeInputType::setValueAsDouble(double newValue, TextFieldEventBehavior eventBehavior, ExceptionState& exceptionState) const
68 setValueAsDecimal(Decimal::fromDouble(newValue), eventBehavior, exceptionState);
BaseMultipleFieldsDateAndTimeInputType.cpp 186 String newValue = sanitizeValue(dateTimeEditElement()->value());
187 // Even if oldValue is null and newValue is "", we should assume they are same.
188 if ((oldValue.isEmpty() && newValue.isEmpty()) || oldValue == newValue) {
191 input->setValueInternal(newValue, DispatchNoEvent);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_ioctl.h 92 #define R200_SET_STATE( rmesa, ATOM, index, newvalue ) \
95 uint32_t __dword = (newvalue); \
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
MapMaker.java 91 public boolean replace(K key, V oldValue, V newValue) {
93 put(key, newValue);
  /external/guava/guava-tests/test/com/google/common/collect/
MutableClassToInstanceMapTest.java 113 Integer newValue = map.getInstance(Integer.class);
114 assertEquals(7, (int) newValue);
  /external/llvm/include/llvm/Support/
Endian.h 91 void operator=(value_type newValue) {
93 (void*)Value.buffer, newValue);
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_ioctl.h 92 #define R200_SET_STATE( rmesa, ATOM, index, newvalue ) \
95 uint32_t __dword = (newvalue); \
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectStreamFieldTest.java 55 public void setOffset(int newValue) {
56 super.setOffset(newValue);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 141 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue");
143 assertEquals("throw_Equals", "NewValue", attrValue);
  /packages/apps/Settings/src/com/android/settings/
ScreenPinningSettings.java 167 public boolean onPreferenceChange(Preference preference, Object newValue) {
168 return setScreenLockUsed((boolean) newValue);
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettings.java 173 public boolean onPreferenceChange(Preference preference, Object newValue) {
175 final boolean val = (Boolean) newValue;
187 public boolean onPreferenceChange(Preference preference, Object newValue) {
189 final boolean val = (Boolean) newValue;
204 public boolean onItemSelected(int pos, Object newValue) {
206 final int val = (Integer) newValue;
220 public boolean onPreferenceChange(Preference preference, Object newValue) {
222 final boolean val = (Boolean) newValue;
  /system/core/include/cutils/
atomic.h 135 int android_atomic_acquire_cas(int32_t oldvalue, int32_t newvalue,
137 int android_atomic_release_cas(int32_t oldvalue, int32_t newvalue,
  /external/chromium_org/third_party/polymer/components/core-layout/
core-layout.html 251 setLayoutClass: function(prefix, old, newValue) {
257 if (newValue) {
258 this.layoutContainer.classList.add(prefix + newValue);
279 var newValue = this.reverse ? 'reverse' : '';
280 this.setLayoutClass('', old, newValue);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 158 current.setLocal(local++, interpreter.newValue(ctype));
161 current.setLocal(local++, interpreter.newValue(args[i]));
163 current.setLocal(local++, interpreter.newValue(null));
167 current.setLocal(local++, interpreter.newValue(null));
283 handler.push(interpreter.newValue(type));
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 904 ALWAYS_INLINE void Element::setAttributeInternal(size_t index, const QualifiedName& name, const AtomicString& newValue, SynchronizationOfLazyAttribute inSynchronizationOfLazyAttribute)
906 if (newValue.isNull()) {
913 appendAttributeInternal(name, newValue, inSynchronizationOfLazyAttribute);
921 willModifyAttribute(existingAttributeName, existingAttribute.value(), newValue);
923 if (newValue != existingAttribute.value()) {
928 attrNode->setValue(newValue);
930 ensureUniqueElementData().attributes().at(index).setValue(newValue);
934 didModifyAttribute(existingAttributeName, newValue);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 292 Object newValue = event.getNewValue();
296 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue);
303 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue);
310 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS : "true".equals(newValue);

Completed in 558 milliseconds

<<11121314151617181920>>