/dalvik/libcore/prefs/src/test/resources/prefs/java/util/prefs/ |
userprefs-badencoding.xml | 37 <entry key="prefskey" value="newvalue" />
|
userprefs-higherversion.xml | 37 <entry key="prefskey" value="newvalue" />
|
userprefs.xml | 44 <entry key="prefskey" value="newvalue" />
|
/external/icu4c/i18n/ |
winnmfmt.cpp | 226 void Win32NumberFormat::setMaximumFractionDigits(int32_t newValue) 229 NumberFormat::setMaximumFractionDigits(newValue); 232 void Win32NumberFormat::setMinimumFractionDigits(int32_t newValue) 235 NumberFormat::setMinimumFractionDigits(newValue);
|
ucal.cpp | 288 int32_t newValue) 293 ((Calendar*)cal)->setLenient((UBool)newValue); 297 ((Calendar*)cal)->setFirstDayOfWeek((UCalendarDaysOfWeek)newValue); 301 ((Calendar*)cal)->setMinimalDaysInFirstWeek((uint8_t)newValue);
|
/external/webkit/WebCore/storage/ |
StorageEvent.idl | 33 readonly attribute [ConvertNullStringTo=Null] DOMString newValue;
|
StorageEventDispatcher.h | 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
|
StorageAreaSync.h | 57 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
|
/external/webkit/WebKit/chromium/public/ |
WebMutationEvent.h | 51 WEBKIT_API WebString newValue() const;
|
WebStorageEventDispatcher.h | 50 const WebString& newValue, const WebString& origin,
|
/external/webkit/WebKit/chromium/src/ |
StorageAreaProxy.h | 55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
|
StorageEventDispatcherImpl.h | 50 const String& newValue, SecurityOrigin*,
|
WebStorageEventDispatcherImpl.h | 47 const WebString& newValue, const WebString& origin,
|
StorageAreaProxy.cpp | 110 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) 127 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->sessionStorage())); 140 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->localStorage()));
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
ConnectSpecificProfilesActivity.java | 161 public boolean onPreferenceChange(Preference preference, Object newValue) { 163 if (TextUtils.isEmpty(key) || newValue == null) return true; 166 onOnlineModeCheckedStateChanged((Boolean) newValue); 171 onProfileCheckedStateChanged(profile, (Boolean) newValue);
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
ConcurrentMap.java | 88 * map.put(key, newValue); 95 * @param newValue value to be associated with the specified key 106 boolean replace(K key, V oldValue, V newValue);
|
/dalvik/vm/compiler/codegen/arm/ |
CodegenCommon.c | 322 ArmLIR *newValue = dvmCompilerNew(sizeof(ArmLIR), true); 323 newValue->operands[0] = value; 324 newValue->generic.next = cUnit->wordList; 325 cUnit->wordList = (LIR *) newValue; 326 return newValue;
|
/external/webkit/WebKit/mac/Misc/ |
WebNSDataExtras.m | 343 NSString *newValue = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, line, lineLength, kCFStringEncodingISOLatin1, FALSE)); 345 ASSERT(newValue); 346 NSString *mergedValue = [[NSString alloc] initWithFormat:@"%@%@", currentValue, newValue]; 348 [newValue release]; 383 NSString *newValue = [[NSString alloc] initWithFormat:@"%@, %@", oldValue, value]; 384 value = newValue; 385 [newValue autorelease];
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
SetNamedItemNS.java | 168 arg.setNodeValue("newValue"); 175 assertEquals("throw_Equals", "newValue", value); 238 arg.setNodeValue("newValue");
|
/external/proguard/src/proguard/evaluation/ |
Variables.java | 137 Value newValue = thisValue.generalize(otherValue); 139 changed = changed || !thisValue.equals(newValue); 141 this.values[index] = newValue;
|
Stack.java | 135 Value newValue = null; 141 newValue = thisValue.generalize(otherValue); 144 changed = changed || !thisValue.equals(newValue); 146 values[index] = newValue;
|
/external/webkit/WebCore/dom/ |
InputElement.cpp | 215 String newValue = sanitizeValue(inputElement, oldValue); 216 if (newValue != oldValue) 217 inputElement->setValue(newValue);
|
/frameworks/base/core/java/android/preference/ |
CheckBoxPreference.java | 133 boolean newValue = !isChecked(); 139 if (!callChangeListener(newValue)) { 143 setChecked(newValue);
|
/external/opencore/protocols/http_parcom/src/ |
string_keyvalue_store.cpp | 129 StrPtrLen newValue(aNewValue); 130 return addKeyValuePair(aNewKey, newValue, aNeedReplaceOldValue); 137 StrPtrLen newValue(aNewValue, aValueLength); 138 return addKeyValuePair(newKey, newValue, aNeedReplaceOldValue);
|
/external/webkit/WebKit/mac/WebView/ |
WebDocumentInternal.h | 62 - (void)setMarkedTextMatchesAreHighlighted:(BOOL)newValue;
|