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

<<11121314151617181920>>

  /external/clang/include/clang/AST/
ExternalASTSource.h 412 void set(T NewValue) {
414 LazyVal->LastValue = NewValue;
417 Value = NewValue;
421 void setNotUpdated(T NewValue) { Value = NewValue; }
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromisePropertyTest.cpp 395 GarbageCollectedScriptWrappable* newValue = new GarbageCollectedScriptWrappable("new");
412 property()->reject(newValue);
423 EXPECT_EQ(wrap(mainWorld(), newValue), newActual);
ScriptDebugServer.h 103 v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETurbulence.cpp 209 inline void checkNoise(int& noiseValue, int limitValue, int newValue)
212 noiseValue -= newValue;
214 noiseValue -= newValue - 1;
  /packages/apps/Settings/src/com/android/settings/
WirelessSettings.java 467 public boolean onPreferenceChange(Preference preference, Object newValue) {
468 if (preference == mSmsApplicationPreference && newValue != null) {
469 SmsApplication.setDefaultApplication(newValue.toString(), getActivity());
  /packages/apps/Settings/src/com/android/settings/accessibility/
AccessibilitySettings.java 238 public boolean onPreferenceChange(Preference preference, Object newValue) {
240 handleLongPressTimeoutPreferenceChange((String) newValue);
243 handleToggleInversionPreferenceChange((Boolean) newValue);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipEditor.java 407 public boolean onPreferenceChange(Preference pref, Object newValue) {
416 String value = (newValue == null) ? "" : newValue.toString();
  /external/chromium-trace/trace-viewer/src/about_tracing/
profiling_view.js 156 set tracingController(newValue) {
159 base.setPropertyAndDispatchChange(this, 'tracingController', newValue);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 183 ScriptValue JavaScriptCallFrame::setVariableValue(ScriptState* scriptState, int scopeNumber, const String& variableName, const ScriptValue& newValue)
191 newValue.v8Value()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 62 private static final String feedWatchActionNewValue = "feedWatchAction.NewValue"; //$NON-NLS-1$
170 " -newvalue \"" + newContent + "\""; //$NON-NLS-1$ //$NON-NLS-2$
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 120 K key, boolean containedKey, V oldValue, V newValue) {
124 inverse.delegate.put(newValue, key);
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 252 public boolean replace(K key, V oldValue, V newValue) {
254 put(key, newValue);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 116 K key, boolean containedKey, V oldValue, V newValue) {
120 inverse.delegate.put(newValue, key);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 128 private void sendBeforeTextChanged(CharSequence newValue) {
130 watcher.beforeTextChanged(this.text, 0, this.text.length(), newValue.length());
  /frameworks/base/core/java/android/util/
LruCache.java 260 * @param newValue the new value for {@code key}, if it exists. If non-null,
264 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {}
  /frameworks/base/libs/hwui/
RenderProperties.h 143 static bool setFlag(int flag, bool newValue, int* outFlags) {
144 if (newValue) {
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 271 * @param newValue the new value for {@code key}, if it exists. If non-null,
275 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {}
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 223 * @param newValue the new value for {@code key}, if it exists. If non-null,
227 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {}
  /packages/apps/Settings/src/com/android/settings/tts/
TtsEngineSettingsFragment.java 322 public boolean onPreferenceChange(Preference preference, Object newValue) {
324 String localeString = (String) newValue;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
code.py 15 def softspace(file, newvalue):
22 file.softspace = newvalue
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 15 def softspace(file, newvalue):
22 file.softspace = newvalue
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
BaseLayoutManagerActivity.java 212 abstract public void onChange(boolean newValue);
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
storage.html 143 storageChange.newValue);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.h 133 virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
HTMLLinkElement.h 171 virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;

Completed in 1210 milliseconds

<<11121314151617181920>>