/developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
ImageMemoryCache.java | 81 protected void entryRemoved(boolean evicted, String key, Bitmap oldValue, Bitmap newValue) { 82 super.entryRemoved(evicted, key, oldValue, newValue);
|
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/ |
ImageMemoryCache.java | 81 protected void entryRemoved(boolean evicted, String key, Bitmap oldValue, Bitmap newValue) { 82 super.entryRemoved(evicted, key, oldValue, newValue);
|
/external/chromium_org/extensions/browser/value_store/ |
value_store_change_unittest.cc | 87 .Set("newValue", v2)) 90 .Set("newValue", v4))
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollbar.cpp | 105 float newValue = value * m_scrollbar->maximum(); 106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
|
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageArea.h | 70 static void dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, 72 static void dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue,
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebOptionElement.cpp | 45 void WebOptionElement::setValue(const WebString& newValue) 47 unwrap<HTMLOptionElement>()->setValue(newValue);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebStorageEventDispatcher.h | 47 const WebString& newValue, const WebURL& origin, 54 const WebString& newValue, const WebURL& origin,
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
list_selection_model.js | 268 var newValue = this.adjustIndex_(leadIndex); 269 this.leadIndex_ = newValue; 271 if (!this.changeCount_ && newValue != oldValue) 272 cr.dispatchPropertyChange(this, 'leadIndex', newValue, oldValue); 287 var newValue = this.adjustIndex_(anchorIndex); 288 this.anchorIndex_ = newValue; 290 if (!this.changeCount_ && newValue != oldValue) 291 cr.dispatchPropertyChange(this, 'anchorIndex', newValue, oldValue);
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
BooleanMemberValue.java | 78 public void setValue(boolean newValue) { 79 valueIndex = cp.addIntegerInfo(newValue ? 1 : 0);
|
ByteMemberValue.java | 78 public void setValue(byte newValue) { 79 valueIndex = cp.addIntegerInfo(newValue);
|
CharMemberValue.java | 79 public void setValue(char newValue) { 80 valueIndex = cp.addIntegerInfo(newValue);
|
DoubleMemberValue.java | 80 public void setValue(double newValue) { 81 valueIndex = cp.addDoubleInfo(newValue);
|
FloatMemberValue.java | 80 public void setValue(float newValue) { 81 valueIndex = cp.addFloatInfo(newValue);
|
IntegerMemberValue.java | 85 public void setValue(int newValue) { 86 valueIndex = cp.addIntegerInfo(newValue);
|
LongMemberValue.java | 79 public void setValue(long newValue) { 80 valueIndex = cp.addLongInfo(newValue);
|
ShortMemberValue.java | 79 public void setValue(short newValue) { 80 valueIndex = cp.addIntegerInfo(newValue);
|
StringMemberValue.java | 79 public void setValue(String newValue) { 80 valueIndex = cp.addUtf8Info(newValue);
|
/external/llvm/include/llvm/Support/ |
SaveAndRestore.h | 24 SaveAndRestore(T &X, const T &NewValue) : X(X), OldValue(X) { 25 X = NewValue;
|
/external/srec/shared/include/ |
ESR_SessionTypeListener.h | 49 * @param newValue New property value 54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
|
/libcore/luni/src/main/java/java/lang/ |
CaseMapper.java | 55 char[] newValue = null; 68 if (newValue == null && ch != newCh) { 69 newValue = new char[count]; // The result can't be longer than the input. 71 System.arraycopy(value, offset, newValue, 0, newCount); 73 if (newValue != null) { 74 newValue[newCount++] = newCh; 77 return newValue != null ? new String(0, newCount, newValue) : s;
|
/libcore/luni/src/test/java/tests/java/sql/ |
UpdateFunctionalityTest.java | 107 String newValue = "newValue"; 109 + " SET field1='" + newValue + "'"; 118 assertEquals("The field field1 was not updated", newValue, 132 String newValue = "newValue"; 134 + " SET field1='" + newValue + "' WHERE (id > 2) and (id < 10)"; 146 assertEquals("The field field1 was not updated", newValue,
|
/libcore/support/src/test/java/tests/support/ |
Support_OutputStream.java | 107 public void setThrowsException(boolean newValue) { 108 throwsException = newValue;
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
ToggleDaltonizerPreferenceFragment.java | 55 public boolean onPreferenceChange(Preference preference, Object newValue) { 57 Settings.Secure.putInt(getContentResolver(), TYPE, Integer.parseInt((String) newValue));
|
/libcore/luni/src/main/java/java/net/ |
URLConnection.java | 473 * @param newValue 481 public void addRequestProperty(String field, String newValue) { 800 public void setAllowUserInteraction(boolean newValue) { 802 this.allowUserInteraction = newValue; 841 * @param newValue 845 public void setDefaultUseCaches(boolean newValue) { 846 defaultUseCaches = newValue; 853 * @param newValue 860 public void setDoInput(boolean newValue) { 862 this.doInput = newValue; [all...] |
/external/chromium-trace/trace-viewer/src/ui/ |
value_bar_test.js | 41 assertEquals(event.newValue, valueBar.lowestValue); 46 assertEquals(event.newValue, valueBar.highestValue); 51 assertEquals(event.newValue, valueBar.value); 56 assertEquals(event.newValue, valueBar.previewValue);
|