HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 1 - 25 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
  /libcore/luni/src/main/java/java/beans/
PropertyChangeEvent.java 34 Object newValue;
50 * @param newValue
56 Object oldValue, Object newValue) {
61 this.newValue = newValue;
112 return newValue;
IndexedPropertyChangeEvent.java 43 * @param newValue
51 Object oldValue, Object newValue, int index) {
52 super(source, propertyName, oldValue, newValue);
  /external/chromium_org/third_party/WebKit/Source/core/css/
DOMWindowCSS.cpp 50 String newValue = value;
51 int bangIndex = newValue.length() - 9 - 1;
52 if (newValue[bangIndex] == ' ')
54 newValue = newValue.left(bangIndex);
56 return newValue;
  /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;
  /external/chromium_org/third_party/WebKit/Source/wtf/
TemporaryChange.h 46 TemporaryChange(T& scopedVariable, T newValue)
50 m_scopedVariable = newValue;
  /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...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodevalue01.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue02.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "This is a new Comment node", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("afterChange", "This should have an effect", newValue);
hc_nodevalue04.java 61 String newValue;
70 newValue = newNode.getNodeValue();
71 assertNull("initiallyNull", newValue);
73 newValue = newNode.getNodeValue();
74 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue05.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
hc_nodevalue06.java 60 String newValue;
62 newValue = newNode.getNodeValue();
63 assertNull("initiallyNull", newValue);
65 newValue = newNode.getNodeValue();
66 assertNull("nullAfterAttemptedChange", newValue);
nodevalue01.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
nodevalue02.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "This is a new Comment node", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("afterChange", "This should have an effect", newValue);
nodevalue03.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue04.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue05.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
nodevalue06.java 60 String newValue;
62 newValue = newNode.getNodeValue();
63 assertNull("initiallyNull", newValue);
65 newValue = newNode.getNodeValue();
66 assertNull("nullAfterAttemptedChange", newValue);
nodevalue09.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "DATA", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("after", "This should have an effect", newValue);
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 125 * @param newValue new value to store in the field if the contents are
131 int expectedValue, int newValue);
140 * @param newValue new value to store in the field if the contents are
146 long expectedValue, long newValue);
155 * @param newValue new value to store in the field if the contents are
161 Object expectedValue, Object newValue);
179 * @param newValue the value to store
181 public native void putIntVolatile(Object obj, long offset, int newValue);
199 * @param newValue the value to store
201 public native void putLongVolatile(Object obj, long offset, long newValue);
    [all...]
  /libcore/libdvm/src/main/java/sun/misc/
Unsafe.java 137 * @param newValue new value to store in the field if the contents are
143 int expectedValue, int newValue);
152 * @param newValue new value to store in the field if the contents are
158 long expectedValue, long newValue);
167 * @param newValue new value to store in the field if the contents are
173 Object expectedValue, Object newValue);
191 * @param newValue the value to store
193 public native void putIntVolatile(Object obj, long offset, int newValue);
211 * @param newValue the value to store
213 public native void putLongVolatile(Object obj, long offset, long newValue);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationEvent.cpp 37 const String& prevValue, const String& newValue,
42 , m_newValue(newValue)
54 const String& prevValue, const String& newValue,
64 m_newValue = newValue;
  /external/chromium_org/third_party/WebKit/Source/web/
WebStorageEventDispatcherImpl.cpp 45 const WebString& newValue, const WebURL& origin,
51 key, oldValue, newValue, securityOrigin.get(), pageURL,
57 const WebString& newValue, const WebURL& origin,
63 key, oldValue, newValue, securityOrigin.get(), pageURL,

Completed in 216 milliseconds

1 2 3 4 5 6 7 8 91011>>