HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 176 - 200 of 508) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.h 43 const WebKit::WebString& oldValue, const WebKit::WebString& newValue,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.h 63 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
DebuggerScript.js 96 DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValue)
101 return DebuggerScript._setScopeVariableValue(mirror, scopeIndex, variableName, newValue);
104 DebuggerScript._setScopeVariableValue = function(scopeHolder, scopeIndex, variableName, newValue)
109 scopeMirror.setVariableValue(variableName, newValue);
345 function setVariableValue(scopeNumber, variableName, newValue)
347 return DebuggerScript._setScopeVariableValue(frameMirror, scopeNumber, variableName, newValue);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMStorageAgent.cpp 206 void InspectorDOMStorageAgent::didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin)
215 else if (newValue.isNull())
218 m_frontend->domstorage()->domStorageItemAdded(id, key, newValue);
220 m_frontend->domstorage()->domStorageItemUpdated(id, key, oldValue, newValue);
InspectorDOMStorageAgent.h 73 void didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*);
JavaScriptCallFrame.h 65 v8::Handle<v8::Value> setVariableValue(int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
  /external/proguard/src/proguard/evaluation/
Stack.java 135 Value newValue = null;
141 newValue = thisValue.generalize(otherValue);
144 changed = changed || !thisValue.equals(newValue);
146 values[index] = newValue;
  /frameworks/rs/driver/runtime/
rs_core.c 16 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) {
17 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
20 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) {
21 return __sync_val_compare_and_swap((volatile int32_t *)ptr, (int32_t)expectedValue, (int32_t)newValue);
  /frameworks/rs/scriptc/
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);
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentsView.java 354 Object newValue = event.getNewValue();
358 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue);
365 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue);
372 WRITE_STATUS = newValue == null ? IPerformancesConstants.DEFAULT_WRITE_STATUS : Integer.parseInt((String)newValue);
  /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...]
  /dalvik/vm/compiler/codegen/mips/
CodegenCommon.cpp 373 MipsLIR *newValue = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true);
374 newValue->operands[0] = value;
375 newValue->generic.next = *constantListP;
376 *constantListP = (LIR *) newValue;
377 return newValue;
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 153 public boolean onPreferenceChange(Preference pref, Object newValue) {
156 String delay = (String) newValue;
160 final int idx = listPref.findIndexOfValue((String) newValue);
164 final int idx = listPref.findIndexOfValue((String) newValue);
174 final int idx = listPref.findIndexOfValue((String) newValue);
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 248 public boolean onPreferenceChange(Preference preference, Object newValue) {
250 + ", newValue - " + newValue + ", newValue type - "
251 + newValue.getClass());
252 if (newValue instanceof String) {
253 setSelectedApnKey((String) newValue);
ApnEditor.java 365 private String mvnoDescription(String newValue) {
366 int mvnoIndex = mMvnoType.findIndexOfValue(newValue);
378 if (newValue != null && newValue.equals(oldValue) == false) {
398 public boolean onPreferenceChange(Preference preference, Object newValue) {
402 int index = Integer.parseInt((String) newValue);
411 String protocol = protocolDescription((String) newValue, mProtocol);
416 mProtocol.setValue((String) newValue);
418 String protocol = protocolDescription((String) newValue, mRoamingProtocol);
423 mRoamingProtocol.setValue((String) newValue);
    [all...]
  /external/icu4c/i18n/
decimfmt.cpp     [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 341 * @param newValue The new value of the Preference
345 public boolean onPreferenceChange(Preference preference, Object newValue){
349 String summary = newValue.toString().trim();
358 final String summary = newValue.toString();
362 preferenceChanged(PREFERENCE_FREQUENCY, newValue);
368 String signature = newValue.toString();
378 final String summary = newValue.toString().trim();
386 final boolean vibrateSetting = (Boolean) newValue;
389 preferenceChanged(FolderPreferences.PreferenceKeys.NOTIFICATION_VIBRATE, newValue);
392 mInboxFolderPreferences.setNotificationsEnabled((Boolean) newValue);
    [all...]
  /prebuilts/devtools/tools/lib/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/4.0/
asm-analysis-4.0.jar 
  /external/chromium_org/net/third_party/nss/ssl/
sslmutex.c 175 PRInt32 newValue;
185 newValue = PR_ATOMIC_DECREMENT(&pMutex->u.pipeStr.nWaiters);
186 if (newValue > 0) {
206 PRInt32 newValue;
215 newValue = PR_ATOMIC_INCREMENT(&pMutex->u.pipeStr.nWaiters);
217 if (newValue > 1) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp 361 void HTMLTextAreaElement::setValueCommon(const String& newValue)
366 String normalizedValue = newValue.isNull() ? "" : newValue;
437 void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionState& es)
439 if (newValue < 0)
442 setAttribute(maxlengthAttr, String::number(newValue));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ValuesDelta.java 140 Object newValue = mAfter.get(key);
144 return newValue != null;
147 return !oldValue.equals(newValue);
213 Object newValue = mAfter.get(key);
216 if (newValue != null) {
219 } else if (!oldValue.equals(newValue)) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElement.cpp 103 void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
106 CustomElementCallbackScheduler::scheduleAttributeChangedCallback(definitions().get(element)->callbacks(), element, name, oldValue, newValue);

Completed in 1303 milliseconds

1 2 3 4 5 6 78 91011>>