HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 26 - 50 of 719) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/Transforms/ObjCARC/
contract-storestrong.ll 66 ; CHECK: 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: 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/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...]
PropertyChangeSupportTest.java 332 Object newValue = new Object();
336 "myProp", oldValue, newValue);
343 sup.firePropertyChange("myProp", oldValue, newValue);
605 Object newValue = new Object();
609 "myProp", oldValue, newValue);
611 "myProp", oldValue, newValue);
615 "myProp", oldValue, newValue);
620 sup.firePropertyChange("myProp", oldValue, newValue);
634 Object newValue = new Object();
635 Object oldValue = newValue;
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
BasicVerifier.java 144 expected = newValue(Type.getObjectType(((FieldInsnNode) insn).owner));
174 expected = newValue(Type.getType(((FieldInsnNode) insn).desc));
194 expected1 = newValue(Type.getType("[I"));
198 if (isSubTypeOf(value1, newValue(Type.getType("[Z")))) {
199 expected1 = newValue(Type.getType("[Z"));
201 expected1 = newValue(Type.getType("[B"));
206 expected1 = newValue(Type.getType("[C"));
210 expected1 = newValue(Type.getType("[S"));
214 expected1 = newValue(Type.getType("[J"));
218 expected1 = newValue(Type.getType("[F"));
    [all...]
BasicInterpreter.java 52 public Value newValue(final Type type) {
82 return newValue(Type.getObjectType("null"));
115 return newValue(Type.getObjectType("java/lang/Class"));
117 return newValue(Type.getType(cst.getClass()));
122 return newValue(Type.getType(((FieldInsnNode) insn).desc));
124 return newValue(Type.getObjectType(((TypeInsnNode) insn).desc));
180 return newValue(Type.getType(((FieldInsnNode) insn).desc));
184 return newValue(Type.getType("[Z"));
186 return newValue(Type.getType("[C"));
188 return newValue(Type.getType("[B"));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 96 * @param newValue the new value
98 public final void set(boolean newValue) {
99 value = newValue ? 1 : 0;
105 * @param newValue the new value
108 public final void lazySet(boolean newValue) {
109 int v = newValue ? 1 : 0;
116 * @param newValue the new value
119 public final boolean getAndSet(boolean newValue) {
122 if (compareAndSet(current, newValue))
AtomicReference.java 60 * @param newValue the new value
62 public final void set(V newValue) {
63 value = newValue;
69 * @param newValue the new value
72 public final void lazySet(V newValue) {
73 unsafe.putOrderedObject(this, valueOffset, newValue);
107 * @param newValue the new value
110 public final V getAndSet(V newValue) {
113 if (compareAndSet(x, newValue))
AtomicReferenceFieldUpdater.java 116 * @param newValue the new value
118 public abstract void set(T obj, V newValue);
125 * @param newValue the new value
128 public abstract void lazySet(T obj, V newValue);
144 * @param newValue the new value
147 public V getAndSet(T obj, V newValue) {
150 if (compareAndSet(obj, current, newValue))
272 public void set(T obj, V newValue) {
274 (newValue != null && vclass != null &&
275 vclass != newValue.getClass())
    [all...]
  /external/chromium-trace/trace-viewer/src/ui/
value_bar.js 45 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 = this.limitValue_(newValue)
    [all...]
quad_stack_viewer.js 41 set scale(newValue) {
42 this.scale_ = newValue;
44 this.quadStack_.viewport.scale = newValue;
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/
GridLayoutManagerActivity.java 60 public void onChange(boolean newValue) {
61 mLayoutManager.setOrientation(newValue ? LinearLayoutManager.HORIZONTAL
72 public void onChange(boolean newValue) {
73 mLayoutManager.setReverseLayout(newValue);
84 public void onChange(boolean newValue) {
85 ViewCompat.setLayoutDirection(mRecyclerView, newValue ?
96 public void onChange(boolean newValue) {
97 mLayoutManager.setStackFromEnd(newValue);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
StringFloat.java 24 public StringFloat(String newKey, float newValue) {
26 value = newValue;
  /external/chromium_org/third_party/WebKit/Source/core/events/
MutationEvent.cpp 34 const String& prevValue, const String& newValue,
39 , m_newValue(newValue)
50 const String& prevValue, const String& newValue,
60 m_newValue = newValue;
MutationEvent.h 50 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; }
69 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
  /external/guava/guava/src/com/google/common/collect/
Count.java 54 public void set(int newValue) {
55 value = newValue;
58 public int getAndSet(int newValue) {
60 value = newValue;
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 111 * @param newValue new value to store in the field if the contents are
117 int expectedValue, int newValue);
126 * @param newValue new value to store in the field if the contents are
132 long expectedValue, long newValue);
141 * @param newValue new value to store in the field if the contents are
147 Object expectedValue, Object newValue);
165 * @param newValue the value to store
167 public native void putIntVolatile(Object obj, long offset, int newValue);
185 * @param newValue the value to store
187 public native void putLongVolatile(Object obj, long offset, long newValue);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageEvent.h 42 String newValue;
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; }
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);
StorageEvent.cpp 50 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
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)
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)
89 m_newValue = newValue;
  /external/chromium_org/third_party/polymer/components-chromium/core-layout/
core-layout-extracted.js 86 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/ui/file_manager/file_manager/audio_player/elements/
audio_player.js 79 * @param {number} newValue new value.
81 onCurrentTrackIndexChanged: function(oldValue, newValue) {
84 if (oldValue != newValue) {
101 * @param {boolean} newValue new value.
103 onControllerPlayingChanged: function(oldValue, newValue) {
104 this.playing = newValue;
106 if (newValue) {
131 * @param {number} newValue new value.
133 onVolumeChanged: function(oldValue, newValue) {
134 this.audioElement.volume = newValue / 100
    [all...]
track_list.js 58 * @param {boolean} newValue New value.
60 onShuffleChanged: function(oldValue, newValue) {
67 * @param {number} newValue new value.
69 currentTrackIndexChanged: function(oldValue, newValue) {
70 if (oldValue === newValue)
76 if (0 <= newValue && newValue < this.tracks.length) {
77 var currentPlayOrder = this.playOrder.indexOf(newValue);
80 this.tracks[newValue].active = true;
82 this.ensureTrackInViewport_(newValue /* trackIndex */)
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/data/
margins.js 65 var newValue = this.clone_();
66 newValue[orientation] = value;
68 newValue[print_preview.ticket_items.CustomMargins.Orientation.TOP],
69 newValue[print_preview.ticket_items.CustomMargins.Orientation.RIGHT],
70 newValue[print_preview.ticket_items.CustomMargins.Orientation.BOTTOM],
71 newValue[print_preview.ticket_items.CustomMargins.Orientation.LEFT]);
  /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;
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeNumericFieldElement.cpp 135 int newValue = typeAheadValue();
136 if (newValue >= m_hardLimits.minimum)
137 setValueAsInteger(newValue, DispatchEvent);
143 if (m_typeAheadBuffer.length() >= maximumLength || newValue * 10 > m_range.maximum)
184 int newValue = roundDown(m_hasValue ? m_value - 1 : defaultValueForStepDown());
185 if (!m_range.isInRange(newValue))
186 newValue = roundDown(m_range.maximum);
188 setValueAsInteger(newValue, DispatchEvent);
193 int newValue = roundUp(m_hasValue ? m_value + 1 : defaultValueForStepUp());
194 if (!m_range.isInRange(newValue))
    [all...]

Completed in 948 milliseconds

12 3 4 5 6 7 8 91011>>