/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/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/v1/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) {
|
/external/selinux/libsemanage/src/ |
booleans_activedb.c | 98 int curvalue, newvalue; local 110 newvalue = semanage_bool_get_value(booleans[i]); 112 if (newvalue == curvalue) 117 blist[bcount].value = newvalue;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
ClockPreference.java | 58 public void onTuningChanged(String key, String newValue) { 61 mBlacklist = StatusBarIconController.getIconBlacklist(newValue); 65 mHasSeconds = newValue != null && Integer.parseInt(newValue) != 0;
|
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/util/ |
ConfigToggle.java | 34 abstract public void onChange(boolean newValue);
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicReferenceFieldUpdater.java | 128 * @param newValue the new value 130 public abstract void set(T obj, V newValue); 137 * @param newValue the new value 140 public abstract void lazySet(T obj, V newValue); 156 * @param newValue the new value 159 public V getAndSet(T obj, V newValue) { 163 } while (!compareAndSet(obj, prev, newValue)); 393 public final void set(T obj, V newValue) { 395 valueCheck(newValue); 396 U.putObjectVolatile(obj, offset, newValue); [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
ListenerCombiner.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/Settings/src/com/android/settings/notification/ |
SettingPref.java | 88 public boolean onPreferenceChange(Preference preference, Object newValue) { 89 setSetting(context, (Boolean) newValue ? 1 : 0); 98 public boolean onPreferenceChange(Preference preference, Object newValue) { 99 return setSetting(context, Integer.parseInt((String) newValue));
|
ZenModeVisualInterruptionSettings.java | 64 public boolean onPreferenceChange(Preference preference, Object newValue) { 66 final boolean val = (Boolean) newValue; 77 public boolean onPreferenceChange(Preference preference, Object newValue) { 79 final boolean val = (Boolean) newValue;
|
/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;
|
/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;
|
/external/llvm/lib/Transforms/ObjCARC/ |
PtrState.h | 120 void SetKnownSafe(const bool NewValue) { RRI.KnownSafe = NewValue; } 124 void SetTailCallRelease(const bool NewValue) { 125 RRI.IsTailCallRelease = NewValue; 134 void SetReleaseMetadata(MDNode *NewValue) { RRI.ReleaseMetadata = NewValue; } 138 void SetCFGHazardAfflicted(const bool NewValue) { 139 RRI.CFGHazardAfflicted = NewValue;
|
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/ |
StaticAccessImportOnDemandTest.java | 45 String newValue = UUID.randomUUID().toString(); 46 StaticTestsVo.ourStaticObservable.set(newValue);
|
StaticAccessImportOnDemandWithConflictTest.java | 45 String newValue = UUID.randomUUID().toString(); 46 StaticTestsVo.ourStaticObservable.set(newValue);
|
StaticAccessTest.java | 47 String newValue = UUID.randomUUID().toString(); 48 StaticTestsVo.ourStaticObservable.set(newValue);
|
/packages/apps/DeskClock/src/com/android/deskclock/settings/ |
ScreensaverSettingsActivity.java | 71 public boolean onPreferenceChange(Preference pref, Object newValue) { 74 final int index = clockStylePref.findIndexOfValue((String) newValue);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
GLIntegerProperty.java | 41 public void setValue(Integer newValue) { 42 mCurrentValue = newValue;
|
GLLongProperty.java | 41 public void setValue(Long newValue) { 42 mCurrentValue = newValue;
|
GLObjectProperty.java | 41 public void setValue(Object newValue) { 42 mCurrentValue = newValue;
|
/cts/tests/tests/util/src/android/util/cts/ |
LongSparseArrayTest.java | 55 Integer newValue = 100; 58 sparseArray.put(existKey, newValue); 59 assertEquals(newValue, sparseArray.get(existKey)); 120 Integer newValue = 100; 123 sparseArray.put(existKey, newValue); 124 assertEquals(newValue, sparseArray.get(existKey));
|