/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AbstractInterceptFieldCallback.java | 23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } 24 public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } 25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } 26 public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return newValue; } 27 public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue; } [all...] |
InterceptFieldCallback.java | 23 int writeInt(Object obj, String name, int oldValue, int newValue); 24 char writeChar(Object obj, String name, char oldValue, char newValue); 25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); 26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); 27 short writeShort(Object obj, String name, short oldValue, short newValue); 28 float writeFloat(Object obj, String name, float oldValue, float newValue); 29 double writeDouble(Object obj, String name, double oldValue, double newValue); 30 long writeLong(Object obj, String name, long oldValue, long newValue); 31 Object writeObject(Object obj, String name, Object oldValue, Object newValue);
|
/external/clang/test/CodeGenObjCXX/ |
refence-assign-write-barrier.mm | 9 void NSAssignArray(NSArray*& target, NSArray* newValue) 11 if (target == newValue) 16 target = [newValue retain];
|
/external/lldb/test/lang/objc/objc-checker/ |
main.m | 8 - (void) setValue: (int) newValue; 17 - (void) setValue: (int) newValue 19 _value = newValue;
|
/external/javassist/src/main/javassist/compiler/ast/ |
IntConst.java | 67 long newValue; 70 newValue = value1 + value2; 73 newValue = value1 - value2; 76 newValue = value1 * value2; 79 newValue = value1 / value2; 82 newValue = value1 % value2; 85 newValue = value1 | value2; 88 newValue = value1 ^ value2; 91 newValue = value1 & value2; 94 newValue = value << (int)value2 [all...] |
DoubleConst.java | 71 double newValue; 74 newValue = value1 + value2; 77 newValue = value1 - value2; 80 newValue = value1 * value2; 83 newValue = value1 / value2; 86 newValue = value1 % value2; 92 return new DoubleConst(newValue, newType);
|
/external/chromium-trace/trace-viewer/src/ui/ |
text_end_value_bar.js | 35 set lowestValueProperties(newValue) { 36 console.assert(typeof newValue === 'object' && 37 (newValue.style || newValue.textContent)); 38 this.lowestValueProperties_ = newValue; 47 set highestValueProperties(newValue) { 48 console.assert(typeof newValue === 'object' && 49 (newValue.style || newValue.textContent)); 50 this.highestValueProperties_ = newValue; [all...] |
filter_control.js | 69 set filterText(newValue) { 70 base.setPropertyAndDispatchChange(this, 'filterText', newValue); 78 set hitCountText(newValue) { 79 base.setPropertyAndDispatchChange(this, 'hitCountText', newValue); 89 this.hitCountEl_.textContent = event ? event.newValue : ''; 93 this.filterEl_.value = event.newValue;
|
value_display.js | 42 set valueBar(newValue) { 45 this.valueBar_ = newValue; 65 if (typeof event.newValue === undefined) 67 this.currentValueDisplay_.textContent = event.newValue.toFixed(2); 73 ' (\u2192 ' + event.newValue.toFixed(2) + ')';
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorOutputElem.java | 50 * @param newValue non-null reference to processed attribute value. 52 public void setCdataSectionElements(java.util.Vector newValue) 54 m_outputProperties.setQNameProperties(OutputKeys.CDATA_SECTION_ELEMENTS, newValue); 60 * @param newValue non-null reference to processed attribute value. 62 public void setDoctypePublic(String newValue) 64 m_outputProperties.setProperty(OutputKeys.DOCTYPE_PUBLIC, newValue); 70 * @param newValue non-null reference to processed attribute value. 72 public void setDoctypeSystem(String newValue) 74 m_outputProperties.setProperty(OutputKeys.DOCTYPE_SYSTEM, newValue); 80 * @param newValue non-null reference to processed attribute value [all...] |
/external/guava/guava-tests/test/com/google/common/cache/ |
AbstractLoadingCacheTest.java | 60 Object newValue = new Object(); 61 valueRef.set(newValue); 62 assertSame(newValue, cache.getUnchecked(new Object())); 91 Object newValue = new Object(); 92 valueRef.set(newValue); 93 assertSame(newValue, cache.getUnchecked(new Object())); 122 Object newValue = new Object(); 123 valueRef.set(newValue); 124 assertSame(newValue, cache.getUnchecked(new Object())); 153 Object newValue = new Object() [all...] |
/art/runtime/native/ |
sun_misc_Unsafe.cc | 27 jint expectedValue, jint newValue) { 32 expectedValue, newValue); 37 jlong expectedValue, jlong newValue) { 42 expectedValue, newValue); 51 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); 54 expectedValue, newValue); 70 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { 74 obj->SetField32<false>(MemberOffset(offset), newValue); 78 jint newValue) { 82 obj->SetField32Volatile<false>(MemberOffset(offset), newValue); [all...] |
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/ |
AtomicInteger.java | 40 public final void set(int newValue) { 41 value = newValue; 44 public final void lazySet(int newValue) { 45 set(newValue); 48 public final int getAndSet(int newValue) { 50 value = newValue;
|
AtomicLong.java | 40 public final void set(long newValue) { 41 value = newValue; 44 public final void lazySet(long newValue) { 45 set(newValue); 48 public final long getAndSet(long newValue) { 50 value = newValue;
|
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/ |
LinearLayoutManagerActivity.java | 53 public void onChange(boolean newValue) { 54 mLayoutManager.setOrientation(newValue ? LinearLayoutManager.HORIZONTAL 69 public void onChange(boolean newValue) { 70 mLayoutManager.setReverseLayout(newValue); 81 public void onChange(boolean newValue) { 82 ViewCompat.setLayoutDirection(mRecyclerView, newValue ? 93 public void onChange(boolean newValue) { 94 mLayoutManager.setStackFromEnd(newValue);
|
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/ |
volume_controller.js | 46 * @param {AudioPlayerModel} newValue New Value. 48 modelChanged: function(oldValue, newValue) { 49 this.onVolumeChanged((oldValue || {}).volume, (newValue || {}).volume); 81 * @param {number} newValue New value. 83 onVolumeChanged: function(oldValue, newValue) { 84 if (oldValue != newValue) 85 this.rawValue = 100 - newValue; 91 * @param {number} newValue New value. 93 rawValueChanged: function(oldValue, newValue) { 94 if (oldValue != newValue) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
feedWatch.xml | 32 feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed; 35 feedWatchAction.TheValue.0 - Even if the original value is unchanged, this will contain the NewValue. 36 This is useful to determine if the value changed (check if NewValue.0 is defined), but also to have the value, 38 if the feed only contains S builds, will never change, and NewValue.0 will be undefined; however, you need the "S" value, 39 so use this property instead of NewValue.0 in order to pass it to the next script. 41 If you are watching for more than one condition, you can check for feedWatchAction.NewValue.0, feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc. 46 <propertyset><propertyref regex="feedWatchAction\.(Result|Error|Output|NewValue|OldValue|TheValue)\.0"/></propertyset> 51 <echo message="feedWatchAction.NewValue.0 = ${feedWatchAction.NewValue.0}"/ [all...] |
sendEmailAlert.sh | 24 newvalue=""; 45 '-newvalue') 46 newvalue=$2; 59 echo "-newvalue $newvalue"; 73 if [ "x$newvalue" != "x" ]; then echo "New Value: "$newvalue >> $tmpfile; fi
|
/external/chromium-trace/trace-viewer/src/base/ |
properties_test.js | 24 ' to ' + event.newValue); 32 set prop(newValue) { 33 base.setPropertyAndDispatchChange(this, 'prop', newValue); 40 stateChanges.push(event.oldValue + ' to ' + event.newValue);
|
/external/clang/test/CodeGenObjC/ |
optimized-setter-ios-device.m | 5 // void objc_setProperty_nonatomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 9 // void objc_setProperty_nonatomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset); 13 // void objc_setProperty_atomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 17 // void objc_setProperty_atomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
optimized-setter.m | 7 // void objc_setProperty_nonatomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 11 // void objc_setProperty_nonatomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset); 15 // void objc_setProperty_atomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 19 // void objc_setProperty_atomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
unoptimized-setter.m | 5 // void objc_setProperty_nonatomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 9 // void objc_setProperty_nonatomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset); 13 // void objc_setProperty_atomic(id self, SEL _cmd, id newValue, ptrdiff_t offset); 17 // void objc_setProperty_atomic_copy(id self, SEL _cmd, id newValue, ptrdiff_t offset);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
DelegatingHttpsURLConnection.java | 185 @Override public void addRequestProperty(String field, String newValue) { 186 delegate.addRequestProperty(field, newValue); 237 @Override public void setAllowUserInteraction(boolean newValue) { 238 delegate.setAllowUserInteraction(newValue); 241 @Override public void setDefaultUseCaches(boolean newValue) { 242 delegate.setDefaultUseCaches(newValue); 245 @Override public void setDoInput(boolean newValue) { 246 delegate.setDoInput(newValue); 249 @Override public void setDoOutput(boolean newValue) { 250 delegate.setDoOutput(newValue); [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
ConcurrentMapInterfaceTest.java | 414 final V newValue; 417 newValue = getValueNotInPopulatedMap(); 425 assertEquals(oldValue, map.replace(keyToReplace, newValue)); 426 assertEquals(newValue, map.get(keyToReplace)); 428 assertTrue(map.containsValue(newValue)); 432 map.replace(keyToReplace, newValue); 444 final V newValue; 448 newValue = getValueNotInPopulatedMap(); 454 assertNull(map.replace(keyToReplace, newValue)); 457 assertFalse(map.containsValue(newValue)); [all...] |
/external/chromium-trace/trace-viewer/src/cc/ |
layer_viewer.js | 50 set layerTreeImpl(newValue) { 51 return this.layerTreeQuadStackViewer_.layerTreeImpl = newValue; 58 set selection(newValue) { 59 this.layerTreeQuadStackViewer_.selection = newValue; 63 var selection = event.newValue;
|