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

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAbstractInterceptFieldCallback.java23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } argument
24 public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } argument
25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } argument
26 public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return newValue; } argument
27 public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue; } argument
28 writeFloat(Object obj, String name, float oldValue, float newValue) argument
29 writeDouble(Object obj, String name, double oldValue, double newValue) argument
30 writeLong(Object obj, String name, long oldValue, long newValue) argument
31 writeObject(Object obj, String name, Object oldValue, Object newValue) argument
[all...]
H A DInterceptFieldCallback.java23 int writeInt(Object obj, String name, int oldValue, int newValue); argument
24 char writeChar(Object obj, String name, char oldValue, char newValue); argument
25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); argument
26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); argument
27 short writeShort(Object obj, String name, short oldValue, short newValue); argument
28 float writeFloat(Object obj, String name, float oldValue, float newValue); argument
29 double writeDouble(Object obj, String name, double oldValue, double newValue); argument
30 long writeLong(Object obj, String name, long oldValue, long newValue); argument
31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); argument
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dvolume_controller.js46 * @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/chromium-trace/trace-viewer/src/ui/
H A Dtext_end_value_bar.js35 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...]
H A Dvalue_display.js42 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) + ')';
H A Dfilter_control.js69 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;
H A Dvalue_bar.js45 set lowestValue(newValue) {
46 base.setPropertyAndDispatchChange(this, 'lowestValue', newValue);
53 set value(newValue) {
54 if (newValue === this.value)
56 newValue = this.limitValue_(newValue);
57 base.setPropertyAndDispatchChange(this, 'value', newValue);
65 set previewValue(newValue) {
66 if (newValue === this.previewValue_)
68 newValue
[all...]
H A Dquad_stack_viewer.js41 set scale(newValue) {
42 this.scale_ = newValue;
44 this.quadStack_.viewport.scale = newValue;
/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/chromium_org/third_party/WebKit/Source/core/css/
H A DDOMWindowCSS.cpp50 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/
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/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/chromium_org/third_party/WebKit/Source/web/
H A DWebStorageEventDispatcherImpl.cpp45 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,
43 dispatchLocalStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
55 dispatchSessionStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
H A DWebMutationEvent.cpp48 WebString WebMutationEvent::newValue() const function in class:blink::WebMutationEvent
50 return WebString(constUnwrap<MutationEvent>()->newValue());
/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/chromium-trace/trace-viewer/src/base/
H A Dproperties_test.js24 ' to ' + event.newValue);
32 set prop(newValue) {
33 base.setPropertyAndDispatchChange(this, 'prop', newValue);
40 stateChanges.push(event.oldValue + ' to ' + event.newValue);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTemporaryChange.h46 TemporaryChange(T& scopedVariable, T newValue) argument
50 m_scopedVariable = newValue;
/external/chromium-trace/trace-viewer/src/cc/
H A Dlayer_viewer.js50 set layerTreeImpl(newValue) {
51 return this.layerTreeQuadStackViewer_.layerTreeImpl = newValue;
58 set selection(newValue) {
59 this.layerTreeQuadStackViewer_.selection = newValue;
63 var selection = event.newValue;
/external/chromium_org/third_party/polymer/components-chromium/core-layout/
H A Dcore-layout-extracted.js86 setLayoutClass: function(prefix, old, newValue) {
92 if (newValue) {
93 this.layoutContainer.classList.add(prefix + newValue);
114 var newValue = this.reverse ? 'reverse' : '';
115 this.setLayoutClass('', old, newValue);
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.cpp50 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
52 return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
60 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
64 , m_newValue(newValue)
74 , m_newValue(initializer.newValue)
80 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
89 m_newValue = newValue;
H A DStorageEvent.h42 String newValue; member in struct:blink::StorageEventInit
51 static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
57 const String& newValue() const { return m_newValue; } function in class:blink::FINAL
61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
72 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMutationEvent.h50 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
52 return adoptRefWillBeNoop(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
55 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
59 String newValue() const { return m_newValue; } function in class:blink::FINAL
69 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);

Completed in 1588 milliseconds

1234567891011>>