/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/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
DateFormatSymbolsTest.java | 73 String[] newvalue = (String[])oldvalue.clone(); local 74 newvalue[0] = newvalue[0] + "!"; 75 dfs.setEras(newvalue); 78 assertArraysEqual(newvalue, result); 95 String[] newvalue = (String[])oldvalue.clone(); local 96 newvalue[0] = newvalue[0] + "!"; 97 dfs.setMonths(newvalue); 100 assertArraysEqual(newvalue, result) 117 String[] newvalue = (String[])oldvalue.clone(); local 139 String[] newvalue = (String[])oldvalue.clone(); local 161 String[] newvalue = (String[])oldvalue.clone(); local 183 String[] newvalue = (String[])oldvalue.clone(); local 205 String[][] newvalue = (String[][])cloneComplex(oldvalue); local [all...] |
/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);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
PreviewNavInflater.java | 44 public void onTuningChanged(String key, String newValue) { 48 if (isValidLayout(newValue)) { 49 super.onTuningChanged(key, newValue); 52 super.onTuningChanged(key, newValue); 56 private boolean isValidLayout(String newValue) { 57 if (newValue == null) { 62 for (int i = 0; i < newValue.length(); i++) { 63 if (newValue.charAt(i) == GRAVITY_SEPARATOR.charAt(0)) { 71 return separatorCount == 2 && (newValue.length() - lastGravitySeparator) != 1;
|
/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
SetValues002Test.java | 36 Value newValue = new Value(StackTrace002Debuggee.BOOLEAN_PARAM_VALUE_TO_SET); 38 suspensionMethodInfo.addVariable("param", oldValue, newValue); 40 methodInfo.addVariable("param", oldValue, newValue); 53 Value newValue = new Value(StackTrace002Debuggee.BYTE_PARAM_VALUE_TO_SET); 55 suspensionMethodInfo.addVariable("param", oldValue, newValue); 57 methodInfo.addVariable("param", oldValue, newValue); 70 Value newValue = new Value(StackTrace002Debuggee.CHAR_PARAM_VALUE_TO_SET); 72 suspensionMethodInfo.addVariable("param", oldValue, newValue); 74 methodInfo.addVariable("param", oldValue, newValue); 87 Value newValue = new Value(StackTrace002Debuggee.SHORT_PARAM_VALUE_TO_SET) [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...] |
/external/jetty/src/java/org/eclipse/jetty/util/ |
Atomics.java | 30 public static void updateMin(AtomicLong currentMin, long newValue) 33 while (newValue < oldValue) 35 if (currentMin.compareAndSet(oldValue, newValue)) 41 public static void updateMax(AtomicLong currentMax, long newValue) 44 while (newValue > oldValue) 46 if (currentMax.compareAndSet(oldValue, newValue)) 52 public static void updateMin(AtomicInteger currentMin, int newValue) 55 while (newValue < oldValue) 57 if (currentMin.compareAndSet(oldValue, newValue)) 63 public static void updateMax(AtomicInteger currentMax, int newValue) [all...] |
/external/llvm/test/Transforms/ObjCARC/ |
contract-storestrong.ll | 66 ; CHECK-LABEL: define void @test3(i8* %newValue) { 68 ; CHECK-NEXT: %x0 = tail call i8* @objc_retain(i8* %newValue) [[NUW]] 75 define void @test3(i8* %newValue) { 77 %x0 = tail call i8* @objc_retain(i8* %newValue) nounwind 79 store i8* %newValue, i8** @x, align 8 87 ; CHECK-LABEL: define i1 @test4(i8* %newValue, i8* %foo) { 89 ; CHECK-NEXT: %x0 = tail call i8* @objc_retain(i8* %newValue) [[NUW]] 96 define i1 @test4(i8* %newValue, i8* %foo) { 98 %x0 = tail call i8* @objc_retain(i8* %newValue) nounwind 100 store i8* %newValue, i8** @x, align [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;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/common/ |
MetadataResponseListener.java | 43 V newValue = partialResult.get(mKey); 44 if (newValue != null) { 45 mUpdatable.update(newValue); 51 V newValue = totalCaptureResult.get(mKey); 52 if (newValue != null) { 53 mUpdatable.update(newValue);
|
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/ |
LinearLayoutManagerActivity.java | 54 public void onChange(boolean newValue) { 55 mLayoutManager.setOrientation(newValue ? LinearLayoutManager.HORIZONTAL 70 public void onChange(boolean newValue) { 71 mLayoutManager.setReverseLayout(newValue); 82 public void onChange(boolean newValue) { 83 ViewCompat.setLayoutDirection(mRecyclerView, newValue ? 94 public void onChange(boolean newValue) { 95 mLayoutManager.setStackFromEnd(newValue);
|
/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/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-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/ |
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...] |
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/ |
InverseBindingListener.java | 37 * CharSequence newValue = view.getText(); 40 * value.set(newValue); 41 * } else if (!contentEquals(newValue, oldValue)) { 42 * value.set(newValue); 51 * TextWatcher newValue = new TextWatcher() { 63 * TextWatcher oldValue = ListenerUtil.trackListener(view, newValue, R.id.textWatcher); 67 * view.addTextChangedListener(newValue);
|
/external/opencv3/modules/imgcodecs/src/ |
grfmt_gdal.cpp | 224 double newValue = range_cast(gdalType, image.depth(), pixelValue ); 228 if( image.depth() == CV_8U ){ image.at<uchar>(row,col) = newValue; } 229 else if( image.depth() == CV_16U ){ image.at<unsigned short>(row,col) = newValue; } 230 else if( image.depth() == CV_16S ){ image.at<short>(row,col) = newValue; } 231 else if( image.depth() == CV_32S ){ image.at<int>(row,col) = newValue; } 232 else if( image.depth() == CV_32F ){ image.at<float>(row,col) = newValue; } 233 else if( image.depth() == CV_64F ){ image.at<double>(row,col) = newValue; } 239 if( image.depth() == CV_8U ){ image.at<Vec3b>(row,col) = Vec3b(newValue,newValue,newValue); } [all...] |
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
PropertyChangeEventTest.java | 38 Object newValue = new Object(); 41 oldValue, newValue); 45 assertSame(newValue, event.getNewValue()); 70 Object newValue = new Object(); 72 oldValue, newValue); 76 assertSame(newValue, event.getNewValue()); 98 Object newValue = new Object(); 101 oldValue, newValue); 110 assertSame(newValue, event.getNewValue()); 120 Object newValue = new Object() [all...] |