Searched refs:newValue (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java67 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
[all...]
H A DDoubleConst.java71 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/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_nodevalue01.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue02.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertEquals("initial","This is a new Comment node",newValue);
103 newValue = newNode.nodeValue;
105 assertEquals("afterChange","This should have an effect",newValue);
H A Dhc_nodevalue05.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue06.js89 var newValue;
96 newValue = newNode.nodeValue;
98 assertNull("initiallyNull",newValue);
101 newValue = newNode.nodeValue;
103 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue03.js90 var newValue;
120 newValue = newNode.nodeValue;
122 assertNull("initiallyNull",newValue);
125 newValue = newNode.nodeValue;
127 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue04.js90 var newValue;
114 newValue = newNode.nodeValue;
116 assertNull("initiallyNull",newValue);
119 newValue = newNode.nodeValue;
121 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue07.js91 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue08.js92 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_nodevalue01.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue02.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertEquals("initial","This is a new Comment node",newValue);
103 newValue = newNode.nodeValue;
105 assertEquals("afterChange","This should have an effect",newValue);
H A Dhc_nodevalue05.js90 var newValue;
98 newValue = newNode.nodeValue;
100 assertNull("initiallyNull",newValue);
103 newValue = newNode.nodeValue;
105 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue06.js89 var newValue;
96 newValue = newNode.nodeValue;
98 assertNull("initiallyNull",newValue);
101 newValue = newNode.nodeValue;
103 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue03.js90 var newValue;
120 newValue = newNode.nodeValue;
122 assertNull("initiallyNull",newValue);
125 newValue = newNode.nodeValue;
127 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue04.js90 var newValue;
114 newValue = newNode.nodeValue;
116 assertNull("initiallyNull",newValue);
119 newValue = newNode.nodeValue;
121 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue07.js91 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
H A Dhc_nodevalue08.js92 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java40 public final void set(int newValue) { argument
41 value = newValue;
44 public final void lazySet(int newValue) { argument
45 set(newValue);
48 public final int getAndSet(int newValue) { argument
50 value = newValue;
H A DAtomicLong.java40 public final void set(long newValue) { argument
41 value = newValue;
44 public final void lazySet(long newValue) { argument
45 set(newValue);
48 public final long getAndSet(long newValue) { argument
50 value = newValue;
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherChromium.cpp47 const String& newValue, StorageType storageType,
51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
46 dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* origin, Frame* sourceFrame) argument
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorOutputElem.java50 * @param newValue non-null reference to processed attribute value.
52 public void setCdataSectionElements(java.util.Vector newValue) argument
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) argument
64 m_outputProperties.setProperty(OutputKeys.DOCTYPE_PUBLIC, newValue);
70 * @param newValue non-null reference to processed attribute value.
72 public void setDoctypeSystem(String newValue) argument
74 m_outputProperties.setProperty(OutputKeys.DOCTYPE_SYSTEM, newValue);
80 * @param newValue no
82 setEncoding(String newValue) argument
92 setIndent(boolean newValue) argument
102 setMediaType(String newValue) argument
112 setMethod(org.apache.xml.utils.QName newValue) argument
122 setOmitXmlDeclaration(boolean newValue) argument
132 setStandalone(boolean newValue) argument
142 setVersion(String newValue) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DCount.java54 public void set(int newValue) { argument
55 value = newValue;
58 public int getAndSet(int newValue) { argument
60 value = newValue;
/external/srec/shared/include/
H A DESR_SessionTypeListener.h49 * @param newValue New property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
/external/webkit/Source/WebCore/dom/
H A DMutationEvent.cpp34 const String& prevValue, const String& newValue,
39 , m_newValue(newValue)
50 const String& prevValue, const String& newValue,
60 m_newValue = newValue;
33 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
49 initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument

Completed in 4744 milliseconds

12345678910