/external/chromium_org/chrome/browser/ui/webui/quota_internals/ |
quota_internals_types.h | 41 base::Value* NewValue() const; 66 base::Value* NewValue() const; 99 base::Value* NewValue() const;
|
/external/lldb/test/lang/objc/objc-dynamic-value/ |
dynamic-value.m | 38 - (void) setProperty: (int) newValue; 48 - (void) setProperty: (int) newValue 50 _property = newValue; // This is the line in setProperty, make sure we step to here.
|
/external/lldb/test/lang/objc/objc-stepping/ |
stepping-tests.m | 43 - (void) setProperty: (int) newValue; 49 - (void) setProperty: (int) newValue 51 _property = newValue;
|
/frameworks/support/v4/kitkat/android/support/v4/media/session/ |
MediaSessionCompatApi19.java | 79 public void onMetadataUpdate(int key, Object newValue) { 80 if (key == MediaMetadataEditor.RATING_KEY_BY_USER && newValue instanceof Rating) { 81 mCallback.onSetRating(newValue);
|
/packages/apps/Calendar/src/com/android/calendar/ |
QuickResponseSettings.java | 86 public boolean onPreferenceChange(Preference preference, Object newValue) { 89 if (!mResponses[i].equals(newValue)) { 90 mResponses[i] = (String) newValue;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/preference/ |
DisplayOrderPreference.java | 78 int newValue = Integer.parseInt(value); 79 if (newValue != mPreferences.getDisplayOrder()) { 80 mPreferences.setDisplayOrder(newValue);
|
SortOrderPreference.java | 77 int newValue = Integer.parseInt(value); 78 if (newValue != mPreferences.getSortOrder()) { 79 mPreferences.setSortOrder(newValue);
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
DropDownEditor.java | 72 Object newValue = adapter.getItem(position); 73 if (newValue.equals(oldValue)) 75 item.setValue(newValue);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
StringExtensions.cs | 96 public static string replace( string str, char oldValue, char newValue ) 103 builder[index] = newValue; 107 public static string replaceAll( string str, string regex, string newValue ) 109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue );
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
StringExtensions.cs | 97 public static string replace(this string str, char oldValue, char newValue) 99 return str.Replace(oldValue, newValue); 103 public static string replaceAll( this string str, string regex, string newValue ) 105 return Regex.Replace( str, regex, newValue );
|
/external/chromium-trace/trace-viewer/src/ui/ |
filter_control_test.js | 23 event.oldValue.length + ' to ' + event.newValue.length;
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
InputType.cpp | 201 void InputType::setValueAsDecimal(const Decimal& newValue, TextFieldEventBehavior eventBehavior, ExceptionState&) const 203 element().setValue(serialize(newValue), eventBehavior); 540 bool InputType::shouldDispatchFormControlChangeEvent(String& oldValue, String& newValue) 542 return !equalIgnoringNullity(oldValue, newValue); 745 Decimal newValue; 748 newValue = base + ((current - base) / step).floor() * step; 750 newValue = base + ((current - base) / step).ceiling() * step; 752 newValue = current; 754 if (newValue < stepRange.minimum()) 755 newValue = stepRange.minimum() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGEnumeration.h | 106 static PassRefPtr<SVGEnumeration<Enum> > create(Enum newValue) 108 return adoptRef(new SVGEnumeration<Enum>(newValue)); 133 explicit SVGEnumeration(Enum newValue) 134 : SVGEnumerationBase(newValue, getStaticStringEntries<Enum>(), getMaxExposedEnumValue<Enum>())
|
/external/clang/test/Analysis/inlining/ |
InlineObjCInstanceMethod.h | 33 - (void)setValue3:(int)newValue;
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
ConcurrentMap.java | 34 boolean replace(K key, V oldValue, V newValue);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowListView.java | 66 boolean newValue = !checkedItemPositions.get(position, false); 67 checkedItemPositions.put(position, newValue); 69 boolean newValue = !checkedItemPositions.get(position, false); 70 if (newValue) {
|
/packages/apps/Camera2/src/com/android/camera/util/ |
ConjunctionListenerMux.java | 76 * @param newValue the new value of the input. 79 public boolean setInput(Input input, boolean newValue) { 81 mInputs.put(input, newValue); 85 if (newValue == mOutput) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
StorageLowState.java | 68 public static void setIsStorageLow(boolean newValue) { 69 if (sIsStorageLow == newValue) { 73 sIsStorageLow = newValue; 77 if (newValue) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
PropertyChangeTransform.java | 36 PropertyChangeTransform(IGLPropertyAccessor accessor, Object newValue) { 37 this(accessor, newValue, null); 45 public PropertyChangeTransform(IGLPropertyAccessor accessor, Object newValue, 48 mNewValue = newValue;
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicIntegerFieldUpdater.java | 100 * @param newValue the new value 102 public abstract void set(T obj, int newValue); 109 * @param newValue the new value 112 public abstract void lazySet(T obj, int newValue); 128 * @param newValue the new value 131 public int getAndSet(T obj, int newValue) { 134 if (compareAndSet(obj, current, newValue)) 320 public void set(T obj, int newValue) { 322 unsafe.putIntVolatile(obj, offset, newValue); 325 public void lazySet(T obj, int newValue) { [all...] |
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
atomicops.h | 63 Atomic32 newvalue, 65 return InterlockedCompareExchange(ptr, newvalue, oldvalue);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebMutationEvent.cpp | 48 WebString WebMutationEvent::newValue() const 50 return WebString(constUnwrap<MutationEvent>()->newValue());
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
TemporaryChange.h | 46 TemporaryChange(T& scopedVariable, T newValue) 50 m_scopedVariable = newValue;
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingConcurrentMap.java | 57 public boolean replace(K key, V oldValue, V newValue) { 58 return delegate().replace(key, oldValue, newValue);
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
AnnotationMemberValue.java | 70 public void setValue(Annotation newValue) { 71 value = newValue;
|