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

<<11121314151617181920>>

  /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 165 var newValue =
167 this.copiesTicketItem_.updateValue(newValue + '');
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElement.cpp 106 void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
109 CustomElementScheduler::scheduleAttributeChangedCallback(element->customElementDefinition()->callbacks(), element, name, oldValue, newValue);
CustomElementScheduler.cpp 60 void CustomElementScheduler::scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtrWillBeRawPtr<Element> element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
66 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/OMA-DM/plugins/pluginhelper/com/android/omadm/pluginhelper/
DmtPluginFacade.java 119 public int updateLeafNode(String path, DmtData newValue) {
122 status = setOperationResult(mManagementObject.updateLeafNode(path, newValue));
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettings.java 178 public boolean onPreferenceChange(Preference preference, Object newValue) {
180 final boolean val = (Boolean) newValue;
196 public boolean onPreferenceChange(Preference preference, Object newValue) {
198 final boolean val = (Boolean) newValue;
213 public boolean onItemSelected(int pos, Object newValue) {
215 final int val = (Integer) newValue;
229 public boolean onPreferenceChange(Preference preference, Object newValue) {
231 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/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 184 bool HTMLTextFormControlElement::shouldDispatchFormControlChangeEvent(String& oldValue, String& newValue)
186 return !equalIgnoringNullity(oldValue, newValue);
191 String newValue = value();
192 if (shouldDispatchFormControlChangeEvent(m_textAsOfLastFormControlChangeEvent, newValue)) {
193 setTextAsOfLastFormControlChangeEvent(newValue);
HTMLInputElement.cpp 867 void HTMLInputElement::setIndeterminate(bool newValue)
869 if (indeterminate() == newValue)
872 m_isIndeterminate = newValue;
    [all...]
  /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 918 ALWAYS_INLINE void Element::setAttributeInternal(size_t index, const QualifiedName& name, const AtomicString& newValue, SynchronizationOfLazyAttribute inSynchronizationOfLazyAttribute)
920 if (newValue.isNull()) {
927 appendAttributeInternal(name, newValue, inSynchronizationOfLazyAttribute);
935 willModifyAttribute(existingAttributeName, existingAttribute.value(), newValue);
937 if (newValue != existingAttribute.value()) {
942 attrNode->setValue(newValue);
944 ensureUniqueElementData().attributeAt(index).setValue(newValue);
948 didModifyAttribute(existingAttributeName, newValue);
958 void Element::attributeChanged(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason reason)
    [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);
  /external/srec/srec/EventLog/src/
EventLogImpl.c 98 ESR_ReturnCode propertyChanged(ESR_SessionTypeListener* self, const LCHAR* name, const void* oldValue, const void* newValue, VariableTypes variableType, void* data)
110 CHKLOG(rc, SR_EventLogTokenInt(eventLog, name, *((int*) newValue)));
113 CHKLOG(rc, SR_EventLogTokenUint16_t(eventLog, name, *((asr_uint16_t*) newValue)));
116 CHKLOG(rc, SR_EventLogTokenSize_t(eventLog, name, *((size_t*) newValue)));
119 CHKLOG(rc, SR_EventLogTokenBool(eventLog, name, *((ESR_BOOL*) newValue)));
122 CHKLOG(rc, SR_EventLogTokenFloat(eventLog, name, *((float*) newValue)));
125 CHKLOG(rc, SR_EventLogToken(eventLog, name, (LCHAR*) newValue));
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 657 void notifyNewValue(@Nullable V newValue);
717 public void notifyNewValue(Object newValue) {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 203 void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
226 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, newValue))

Completed in 1706 milliseconds

<<11121314151617181920>>