/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/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/webkit/LayoutTests/storage/domstorage/localstorage/resources/ |
iframe-events-second.html | 8 parent.log("New Value - " + e.newValue);
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/ |
iframe-events-second.html | 8 parent.log("New Value - " + e.newValue);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebStorageArea.h | 70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) 72 setItem(key, newValue, url, result, oldValue); 75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue) 77 setItem(key, newValue, url, result, oldValue, 0);
|
/libcore/luni/src/main/java/libcore/net/http/ |
HttpsURLConnectionImpl.java | 240 public void addRequestProperty(String field, String newValue) { 241 delegate.addRequestProperty(field, newValue); 305 public void setAllowUserInteraction(boolean newValue) { 306 delegate.setAllowUserInteraction(newValue); 310 public void setDefaultUseCaches(boolean newValue) { 311 delegate.setDefaultUseCaches(newValue); 315 public void setDoInput(boolean newValue) { 316 delegate.setDoInput(newValue); 320 public void setDoOutput(boolean newValue) { 321 delegate.setDoOutput(newValue); [all...] |
/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 | 97 * @param newValue the new value 99 public abstract void set(T obj, int newValue); 106 * @param newValue the new value 109 public abstract void lazySet(T obj, int newValue); 126 * @param newValue the new value 129 public int getAndSet(T obj, int newValue) { 132 if (compareAndSet(obj, current, newValue)) 292 public void set(T obj, int newValue) { 294 unsafe.putIntVolatile(obj, offset, newValue); 297 public void lazySet(T obj, int newValue) { [all...] |
/dalvik/vm/ |
Atomic.h | 59 * If the value at "addr" is equal to "oldvalue", replace it with "newvalue" 62 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t 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/smack/src/org/jivesoftware/smack/util/collections/ |
IterableMap.java | 32 * it.setValue("newValue"); 53 * it.setValue("newValue");
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageEventDispatcherChromium.cpp | 47 const String& newValue, StorageType storageType, 51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
|
WebDOMMutationEvent.cpp | 50 WebString WebDOMMutationEvent::newValue() const 52 return WebString(constUnwrap<MutationEvent>()->newValue());
|
WebMutationEvent.cpp | 50 WebString WebMutationEvent::newValue() const 52 return WebString(constUnwrap<MutationEvent>()->newValue());
|
/external/webrtc/src/system_wrappers/interface/ |
atomic32.h | 43 // Sets the value atomically to newValue if the value equals compare value. 45 bool CompareExchange(WebRtc_Word32 newValue, WebRtc_Word32 compareValue);
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
ScreensaverSettingsActivity.java | 56 public boolean onPreferenceChange(Preference pref, Object newValue) { 59 final int idx = listPref.findIndexOfValue((String) newValue);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
GLIntegerProperty.java | 43 public void setValue(Integer newValue) { 44 mCurrentValue = newValue;
|
GLObjectProperty.java | 41 public void setValue(Object newValue) { 42 mCurrentValue = newValue;
|
/cts/tests/tests/util/src/android/util/cts/ |
SparseArrayTest.java | 51 Integer newValue = 100; 54 sparseArray.put(existKey, newValue); 55 assertEquals(newValue, sparseArray.get(existKey)); 116 Integer newValue = 100; 119 sparseArray.put(existKey, newValue); 120 assertEquals(newValue, sparseArray.get(existKey));
|
SparseBooleanArrayTest.java | 60 boolean newValue = false; 63 sparseBooleanArray.put(existKey, newValue); 64 assertEquals(newValue, sparseBooleanArray.get(existKey)); 116 boolean newValue = false; 119 sparseBooleanArray.put(existKey, newValue); 120 assertEquals(newValue, sparseBooleanArray.get(existKey));
|
SparseIntArrayTest.java | 56 int newValue = 23; 59 sparseIntArray.put(existKey, newValue); 60 assertEquals(newValue, sparseIntArray.get(existKey)); 104 int newValue = 23; 107 sparseIntArray.put(existKey, newValue); 108 assertEquals(newValue, sparseIntArray.get(existKey));
|