/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnection.java | 250 final long newValue = SQLiteGlobal.getDefaultPageSize(); 252 if (value != newValue) { 253 execute("PRAGMA page_size=" + newValue, null, null); 260 final long newValue = SQLiteGlobal.getWALAutoCheckpoint(); 262 if (value != newValue) { 263 executeForLong("PRAGMA wal_autocheckpoint=" + newValue, null, null); 270 final long newValue = SQLiteGlobal.getJournalSizeLimit(); 272 if (value != newValue) { 273 executeForLong("PRAGMA journal_size_limit=" + newValue, null, null); 280 final long newValue = mConfiguration.foreignKeyConstraintsEnabled ? 1 : 0 [all...] |
/dalvik/vm/compiler/codegen/arm/ |
CodegenCommon.cpp | 401 ArmLIR *newValue = (ArmLIR *) dvmCompilerNew(sizeof(ArmLIR), true); 402 newValue->operands[0] = value; 403 newValue->generic.next = *constantListP; 404 *constantListP = (LIR *) newValue; 405 return newValue;
|
/dalvik/vm/compiler/codegen/mips/ |
CodegenCommon.cpp | 373 MipsLIR *newValue = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true); 374 newValue->operands[0] = value; 375 newValue->generic.next = *constantListP; 376 *constantListP = (LIR *) newValue; 377 return newValue;
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Identifier.cpp | 201 uint32_t newValue = *(++characters) - '0'; 202 if (newValue > 9) 206 newValue += value; 207 if (newValue < value) 209 value = newValue;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 354 Object newValue = event.getNewValue(); 358 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue); 365 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue); 372 WRITE_STATUS = newValue == null ? IPerformancesConstants.DEFAULT_WRITE_STATUS : Integer.parseInt((String)newValue);
|
PerformancesView.java | 510 // String newValue = (String) event.getNewValue(); 514 // int eclipseVersion = newValue == null ? IPerformancesConstants.DEFAULT_ECLIPSE_VERSION : Integer.parseInt(newValue); 525 // DB_Results.updateDbConstants(connected, eclipseVersion, newValue); 531 // boolean connected = newValue == null ? IPerformancesConstants.DEFAULT_DATABASE_CONNECTION : newValue.equals(Boolean.TRUE); 540 // if (newValue == null || newValue.length() == 0) { 545 // this.filterLastBuilds.setToolTipText("Filter last builds (i.e. after "+newValue+" build)"); 546 // LAST_BUILD = newValue; [all...] |
/external/icu4c/i18n/ |
unum.cpp | 485 int32_t newValue) 491 return nf->setLenient(newValue != 0); 497 df->setAttribute(attr, newValue, ignoredStatus); 517 double newValue) 522 df->setRoundingIncrement(newValue); 598 const UChar* newValue, 605 UnicodeString val(newValue, newValueLength);
|
ucal.cpp | 327 int32_t newValue) 332 ((Calendar*)cal)->setLenient((UBool)newValue); 336 ((Calendar*)cal)->setFirstDayOfWeek((UCalendarDaysOfWeek)newValue); 340 ((Calendar*)cal)->setMinimalDaysInFirstWeek((uint8_t)newValue); 344 ((Calendar*)cal)->setRepeatedWallTimeOption((UCalendarWallTimeOption)newValue); 348 ((Calendar*)cal)->setSkippedWallTimeOption((UCalendarWallTimeOption)newValue);
|
/external/webkit/Source/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];
|
/frameworks/base/core/tests/coretests/src/android/util/ |
LruCacheTest.java | 373 boolean evicted, String key, String oldValue, String newValue) { 411 boolean evicted, String key, String oldValue, String newValue) { 412 log.add(key + "=" + oldValue + ">" + newValue); 438 boolean evicted, String key, Integer oldValue, Integer newValue) { 439 log.add(key + "=" + oldValue + ">" + newValue); 458 boolean evicted, String key, String oldValue, String newValue) { 461 : (key + "=" + oldValue + ">" + newValue);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapMakerInternalMapTest.java | 600 Object newValue = new Object(); 609 assertFalse(segment.replace(key, hash, oldValue, newValue)); 617 assertTrue(segment.replace(key, hash, oldValue, newValue)); 619 assertSame(newValue, segment.get(key, hash)); 622 assertFalse(segment.replace(key, hash, oldValue, newValue)); 624 assertSame(newValue, segment.get(key, hash)); 630 assertFalse(segment.replace(key, hash, oldValue, newValue)); 644 Object newValue = new Object(); 653 assertNull(segment.replace(key, hash, newValue)); 661 assertSame(oldValue, segment.replace(key, hash, newValue)); [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ValuesDelta.java | 140 Object newValue = mAfter.get(key); 144 return newValue != null; 147 return !oldValue.equals(newValue); 213 Object newValue = mAfter.get(key); 216 if (newValue != null) { 219 } else if (!oldValue.equals(newValue)) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractContainerTester.java | 74 * @param newValue the new container instance 76 protected C resetContainer(C newValue) { 77 container = 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;
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
AdvancedWifiSettings.java | 197 public boolean onPreferenceChange(Preference preference, Object newValue) { 202 int value = Integer.parseInt((String) newValue); 214 String stringValue = (String) newValue;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
LogStatement.java | 147 * @param newValue the replacement value to go into the {@code values} array 153 public boolean setValue(final String queryKey, final Object[] values, final Object newValue) { 160 values[i] = newValue;
|
/external/apache-harmony/prefs/src/test/resources/prefs/java/util/prefs/ |
userprefs.xml | 44 <entry key="prefskey" value="newvalue" />
|
/external/chromium/chrome/browser/resources/shared/js/ |
cr.js | 94 * @param {*} newValue The new value for the property. 97 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { 100 e.newValue = newValue;
|
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 243 public void clear(ValueReference<K, V> newValue) {} 282 public void clear(ValueReference<K, V> newValue) {} 344 public void clear(ValueReference<K, V> newValue) { 347 setValueReference(newValue);
|
ConcurrentHashMultiset.java | 240 int newValue = IntMath.checkedAdd(oldValue, occurrences); 241 if (existingCounter.compareAndSet(oldValue, newValue)) { 242 // newValue can't == 0, so no need to check & remove 288 int newValue = Math.max(0, oldValue - occurrences); 289 if (existingCounter.compareAndSet(oldValue, newValue)) { 290 if (newValue == 0) { 329 int newValue = oldValue - occurrences; 330 if (existingCounter.compareAndSet(oldValue, newValue)) { 331 if (newValue == 0) {
|
/external/webkit/Source/WebCore/storage/ |
StorageAreaSync.h | 59 void dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, Frame* sourceFrame);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMEvents.idl | 323 //readonly attribute DOMString newValue; 324 HRESULT newValue([out, retval] BSTR* result); 337 // in DOMString newValue, 340 HRESULT initMutationEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMNode* relatedNode, [in] BSTR prevValue, [in] BSTR newValue, [in] BSTR attrName, [in] unsigned short attrChange);
|
/libcore/luni/src/test/resources/prefs/java/util/prefs/ |
userprefs.xml | 44 <entry key="prefskey" value="newvalue" />
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SettingsActivity.java | 91 public boolean onPreferenceChange(Preference preference, Object newValue) {
|