Home
last modified time | relevance | path

Searched defs:newValue (Results 1 – 25 of 168) sorted by relevance

1234567

/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorOutputElem.java52 public void setCdataSectionElements(java.util.Vector newValue) in setCdataSectionElements()
62 public void setDoctypePublic(String newValue) in setDoctypePublic()
72 public void setDoctypeSystem(String newValue) in setDoctypeSystem()
82 public void setEncoding(String newValue) in setEncoding()
92 public void setIndent(boolean newValue) in setIndent()
102 public void setMediaType(String newValue) in setMediaType()
112 public void setMethod(org.apache.xml.utils.QName newValue) in setMethod()
122 public void setOmitXmlDeclaration(boolean newValue) in setOmitXmlDeclaration()
132 public void setStandalone(boolean newValue) in setStandalone()
142 public void setVersion(String newValue) in setVersion()
/external/guava/guava-tests/test/com/google/common/cache/
DPopulatedCachesTest.java89 Object newValue = new Object(); in testPut_populated() local
90 assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue)); in testPut_populated() local
92 warmed.add(entryOf(entry.getKey(), newValue)); in testPut_populated() local
112 Object newValue = new Object(); in testPutIfAbsent_populated() local
113 assertSame(entry.getValue(), cache.asMap().putIfAbsent(entry.getKey(), newValue)); in testPutIfAbsent_populated() local
132 Object newValue = new Object(); in testPutAll_populated() local
147 Object newValue = new Object(); in testReplace_populated() local
148 assertSame(entry.getValue(), cache.asMap().replace(entry.getKey(), newValue)); in testReplace_populated() local
149 assertTrue(cache.asMap().replace(entry.getKey(), newValue, entry.getValue())); in testReplace_populated() local
DAbstractLoadingCacheTest.java60 Object newValue = new Object(); in testGetUnchecked_checked() local
91 Object newValue = new Object(); in testGetUnchecked_unchecked() local
122 Object newValue = new Object(); in testGetUnchecked_error() local
153 Object newValue = new Object(); in testGetUnchecked_otherThrowable() local
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DDecimalFormatICU.java292 public void setDecimalSeparatorAlwaysShown(boolean newValue) { in setDecimalSeparatorAlwaysShown()
299 public void setGroupingSize(int newValue) { in setGroupingSize()
306 public void setMaximumFractionDigits(int newValue) { in setMaximumFractionDigits()
313 public void setMaximumIntegerDigits(int newValue) { in setMaximumIntegerDigits()
320 public void setMinimumFractionDigits(int newValue) { in setMinimumFractionDigits()
327 public void setMinimumIntegerDigits(int newValue) { in setMinimumIntegerDigits()
334 public void setMultiplier(int newValue) { in setMultiplier()
339 public void setNegativePrefix(String newValue) { in setNegativePrefix()
344 public void setNegativeSuffix(String newValue) { in setNegativeSuffix()
349 public void setParseBigDecimal(boolean newValue) { in setParseBigDecimal()
[all …]
DNumberFormatICU.java176 public void setGroupingUsed(boolean newValue) { in setGroupingUsed()
181 public void setMaximumFractionDigits(int newValue) { in setMaximumFractionDigits()
186 public void setMaximumIntegerDigits(int newValue) { in setMaximumIntegerDigits()
191 public void setMinimumFractionDigits(int newValue) { in setMinimumFractionDigits()
196 public void setMinimumIntegerDigits(int newValue) { in setMinimumIntegerDigits()
/external/jetty/src/java/org/eclipse/jetty/util/
DAtomics.java30 public static void updateMin(AtomicLong currentMin, long newValue) in updateMin()
41 public static void updateMax(AtomicLong currentMax, long newValue) in updateMax()
52 public static void updateMin(AtomicInteger currentMin, int newValue) in updateMin()
63 public static void updateMax(AtomicInteger currentMax, int newValue) in updateMax()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DAbstractInterceptFieldCallback.java23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } in writeInt()
24 … public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } in writeChar()
25 … public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } in writeByte()
26 …public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return … in writeBoolean()
27 …public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue… in writeShort()
28 …public float writeFloat(Object obj, String name, float oldValue, float newValue) { return newValue… in writeFloat()
29 …public double writeDouble(Object obj, String name, double oldValue, double newValue) { return newV… in writeDouble()
30 … public long writeLong(Object obj, String name, long oldValue, long newValue) { return newValue; } in writeLong()
31 …public Object writeObject(Object obj, String name, Object oldValue, Object newValue) { return newV… in writeObject()
DInterceptFieldCallback.java23 int writeInt(Object obj, String name, int oldValue, int newValue); in writeInt()
24 char writeChar(Object obj, String name, char oldValue, char newValue); in writeChar()
25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); in writeByte()
26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); in writeBoolean()
27 short writeShort(Object obj, String name, short oldValue, short newValue); in writeShort()
28 float writeFloat(Object obj, String name, float oldValue, float newValue); in writeFloat()
29 double writeDouble(Object obj, String name, double oldValue, double newValue); in writeDouble()
30 long writeLong(Object obj, String name, long oldValue, long newValue); in writeLong()
31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); in writeObject()
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
DPropertyChangeEventTest.java38 Object newValue = new Object(); in testConstructor_Normal() local
70 Object newValue = new Object(); in testConstructor_NullProperty() local
98 Object newValue = new Object(); in testSetPropagationId_Normal() local
120 Object newValue = new Object(); in testSetPropagationId_Null() local
DPropertyChangeSupportTest.java332 Object newValue = new Object(); in testRemovePropertyChangeListener_PropertyChangeListener_String_AllRegistered() local
605 Object newValue = new Object(); in testFirePropertyChange_Object_Normal() local
634 Object newValue = new Object(); in testFirePropertyChange_Object_EqualValues() local
663 Object newValue = null; in testFirePropertyChange_Object_NullValues() local
692 Object newValue = null; in testFirePropertyChange_Object_NullNewValue() local
721 Object newValue = new Object(); in testFirePropertyChange_Object_NullOldValue() local
749 Object newValue = new Object(); in testFirePropertyChange_Object_NullProperty() local
777 Object newValue = new Object(); in testFirePropertyChange_Object_NullListener() local
792 Object newValue = new Object(); in testFirePropertyChange_PropertyChangeEvent_Normal() local
824 Object newValue = new Object(); in testFirePropertyChange_PropertyChangeEvent_EqualValues() local
[all …]
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DDelegatingHttpsURLConnection.java185 @Override public void addRequestProperty(String field, String newValue) { in addRequestProperty()
237 @Override public void setAllowUserInteraction(boolean newValue) { in setAllowUserInteraction()
241 @Override public void setDefaultUseCaches(boolean newValue) { in setDefaultUseCaches()
245 @Override public void setDoInput(boolean newValue) { in setDoInput()
249 @Override public void setDoOutput(boolean newValue) { in setDoOutput()
253 @Override public void setIfModifiedSince(long newValue) { in setIfModifiedSince()
257 @Override public void setRequestProperty(String field, String newValue) { in setRequestProperty()
261 @Override public void setUseCaches(boolean newValue) { in setUseCaches()
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
DAtomicInteger.java40 public final void set(int newValue) { in set()
44 public final void lazySet(int newValue) { in lazySet()
48 public final int getAndSet(int newValue) { in getAndSet()
DAtomicLong.java40 public final void set(long newValue) { in set()
44 public final void lazySet(long newValue) { in lazySet()
48 public final long getAndSet(long newValue) { in getAndSet()
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
DNumberFormatJDK.java215 public void setGroupingUsed(boolean newValue) { in setGroupingUsed()
220 public void setMaximumFractionDigits(int newValue) { in setMaximumFractionDigits()
225 public void setMaximumIntegerDigits(int newValue) { in setMaximumIntegerDigits()
230 public void setMinimumFractionDigits(int newValue) { in setMinimumFractionDigits()
235 public void setMinimumIntegerDigits(int newValue) { in setMinimumIntegerDigits()
/external/guava/guava/src/com/google/common/collect/
DCount.java50 public void set(int newValue) { in set()
54 public int getAndSet(int newValue) { in getAndSet()
DConcurrentHashMultiset.java232 int newValue = IntMath.checkedAdd(oldValue, occurrences); in add() local
289 int newValue = Math.max(0, oldValue - occurrences); in remove() local
330 int newValue = oldValue - occurrences; in removeExactly() local
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicDouble.java93 public final void set(double newValue) { in set()
103 public final void lazySet(double newValue) { in lazySet()
116 public final double getAndSet(double newValue) { in getAndSet()
DAtomicDoubleArray.java100 public final void set(int i, double newValue) { in set()
111 public final void lazySet(int i, double newValue) { in lazySet()
126 public final double getAndSet(int i, double newValue) { in getAndSet()
DAtomicLongMap.java126 long newValue = oldValue + delta; in addAndGet() local
175 long newValue = oldValue + delta; in getAndAdd() local
188 public long put(K key, long newValue) { in put()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DSparseArrayTest.java69 Integer newValue = 100; in testSparseArrayWithDefaultCapacity() local
135 Integer newValue = 100; in testSparseArrayWithSpecifiedCapacity() local
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java67 long newValue; in compute0() local
115 double newValue; in compute0() local
/external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
DAtomicLongMapTest.java259 long newValue = random.nextInt(MAX_ADDEND); in testPut() local
317 long newValue = random.nextInt(MAX_ADDEND); in testPutIfAbsent() local
369 long newValue = random.nextInt(MAX_ADDEND); in testReplace() local
409 long newValue = random.nextInt(MAX_ADDEND); in testRemove() local
452 long newValue = random.nextInt(MAX_ADDEND); in testRemoveValue() local
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DJDWPStackFrameAccessTest.java43 private final Value newValue; field in JDWPStackFrameAccessTest.VariableInfo
45 VariableInfo(String variableName, Value initialValue, Value newValue) { in VariableInfo()
80 public void addVariable(String variableName, Value initialValue, Value newValue) { in addVariable()
208 Value newValue = variableInfo.getNewValue(); in checkStackFrame() local
427 protected void setVariableValue(long threadID, long frameID, int slot, Value newValue) { in setVariableValue()
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DFieldData.java48 <T> FieldData(Extension<?, T> extension, T newValue) { in FieldData()
92 <T> void setValue(Extension<?, T> extension, T newValue) { in setValue()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java274 long newValue = random.nextInt(MAX_ADDEND); in testPut() local
332 long newValue = random.nextInt(MAX_ADDEND); in testPutIfAbsent() local
384 long newValue = random.nextInt(MAX_ADDEND); in testReplace() local
424 long newValue = random.nextInt(MAX_ADDEND); in testRemove() local
467 long newValue = random.nextInt(MAX_ADDEND); in testRemoveValue() local

1234567