Searched refs:newValue (Results 1 - 25 of 243) sorted by path

12345678910

/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java105 public Object setValue(Object newValue) { argument
110 final void setValueInternal(Object newValue) { argument
112 this.value = newValue;
H A DStoredMapEntry.java29 public Object setValue(Object newValue) { argument
34 iter.set(newValue);
39 oldValue = coll.put(getKey(), newValue);
41 setValueInternal(newValue);
/macosx-10.9.5/CF-855.17/
H A DCFPlatform.c1077 bool OSAtomicCompareAndSwap32Barrier(int32_t oldValue, int32_t newValue, volatile int32_t *theValue) { argument
1078 return __sync_bool_compare_and_swap(theValue, oldValue, newValue);
1081 bool OSAtomicCompareAndSwap64Barrier(int64_t oldValue, int64_t newValue, volatile int64_t *theValue) { argument
1082 return __sync_bool_compare_and_swap(theValue, oldValue, newValue);
H A DCFWindowsUtilities.c70 CF_EXPORT bool OSAtomicCompareAndSwap32Barrier(int32_t oldValue, int32_t newValue, volatile int32_t *theValue) { argument
71 return oldValue == InterlockedCompareExchange((long *)theValue, newValue, oldValue);
H A DCFXMLPreferencesDomain.c437 CFTypeRef newValue = CFPropertyListCreateDeepCopy(__CFPreferencesAllocator(), value, kCFPropertyListImmutable); local
438 CFDictionarySetValue(domain->_domainDict, key, newValue);
439 CFRelease(newValue);
H A DCoreFoundation_Prefix.h164 bool OSAtomicCompareAndSwap32Barrier( int32_t oldValue, int32_t newValue, volatile int32_t *theValue );
356 CF_EXPORT bool OSAtomicCompareAndSwap32Barrier( int32_t oldValue, int32_t newValue, volatile int32_t *theValue );
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/cf/
H A Ditem.c890 CFTypeRef newValue = CFDictionaryGetValue(mattrs->attrs, key); local
896 if (newValue)
897 CFDictionarySetValue(mattrs->item->keys, key, newValue);
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dnormalizer2impl.cpp1862 uint32_t newValue=oldValue; local
1865 newValue|=CANON_NOT_SEGMENT_STARTER;
1867 newValue|=CANON_HAS_COMPOSITIONS;
1870 newValue|=CANON_HAS_COMPOSITIONS;
1886 newValue|=CANON_NOT_SEGMENT_STARTER; // original c has cc!=0
1915 if(newValue!=oldValue) {
1916 utrie2_set32(newData.trie, c, newValue, &errorCode);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddecimfmt.cpp3338 DecimalFormat::setPositivePrefix(const UnicodeString& newValue) argument
3340 fPositivePrefix = newValue;
3362 DecimalFormat::setNegativePrefix(const UnicodeString& newValue) argument
3364 fNegativePrefix = newValue;
3386 DecimalFormat::setPositiveSuffix(const UnicodeString& newValue) argument
3388 fPositiveSuffix = newValue;
3410 DecimalFormat::setNegativeSuffix(const UnicodeString& newValue) argument
3412 fNegativeSuffix = newValue;
3439 DecimalFormat::setMultiplier(int32_t newValue) argument
3441 // if (newValue
3488 setRoundingIncrement(double newValue) argument
3737 setGroupingSize(int32_t newValue) argument
3756 setSecondaryGroupingSize(int32_t newValue) argument
3777 setDecimalSeparatorAlwaysShown(UBool newValue) argument
5180 setMaximumIntegerDigits(int32_t newValue) argument
5192 setMinimumIntegerDigits(int32_t newValue) argument
5204 setMaximumFractionDigits(int32_t newValue) argument
5216 setMinimumFractionDigits(int32_t newValue) argument
5467 setAttribute( UNumberFormatAttribute attr, int32_t newValue, UErrorCode &status) argument
[all...]
H A Ddecimfmt.cpp.fixed2015 DecimalFormat::setPositivePrefix(const UnicodeString& newValue)
2017 fPositivePrefix = newValue;
2036 DecimalFormat::setNegativePrefix(const UnicodeString& newValue)
2038 fNegativePrefix = newValue;
2057 DecimalFormat::setPositiveSuffix(const UnicodeString& newValue)
2059 fPositiveSuffix = newValue;
2078 DecimalFormat::setNegativeSuffix(const UnicodeString& newValue)
2080 fNegativeSuffix = newValue;
2096 DecimalFormat::setMultiplier(int32_t newValue)
2101 fMultiplier = newValue;
[all...]
H A Dnumfmt.cpp1007 NumberFormat::setGroupingUsed(UBool newValue) argument
1009 fGroupingUsed = newValue;
1026 NumberFormat::setMaximumIntegerDigits(int32_t newValue) argument
1028 fMaxIntegerDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
1048 NumberFormat::setMinimumIntegerDigits(int32_t newValue) argument
1050 fMinIntegerDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigits));
1070 NumberFormat::setMaximumFractionDigits(int32_t newValue) argument
1072 fMaxFractionDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
1092 NumberFormat::setMinimumFractionDigits(int32_t newValue) argument
1094 fMinFractionDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigit
[all...]
H A Ducal.cpp342 int32_t newValue)
347 ((Calendar*)cal)->setLenient((UBool)newValue);
351 ((Calendar*)cal)->setFirstDayOfWeek((UCalendarDaysOfWeek)newValue);
355 ((Calendar*)cal)->setMinimalDaysInFirstWeek((uint8_t)newValue);
359 ((Calendar*)cal)->setRepeatedWallTimeOption((UCalendarWallTimeOption)newValue);
363 ((Calendar*)cal)->setSkippedWallTimeOption((UCalendarWallTimeOption)newValue);
340 ucal_setAttribute( UCalendar* cal, UCalendarAttribute attr, int32_t newValue) argument
H A Dunum.cpp485 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);
483 unum_setAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, int32_t newValue) argument
515 unum_setDoubleAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, double newValue) argument
596 unum_setTextAttribute( UNumberFormat* fmt, UNumberFormatTextAttribute tag, const UChar* newValue, int32_t newValueLength, UErrorCode *status) argument
H A Dwinnmfmt.cpp226 void Win32NumberFormat::setMaximumFractionDigits(int32_t newValue) argument
229 NumberFormat::setMaximumFractionDigits(newValue);
232 void Win32NumberFormat::setMinimumFractionDigits(int32_t newValue) argument
235 NumberFormat::setMinimumFractionDigits(newValue);
H A Dwinnmfmt.h105 * @param newValue the new value to be set.
108 virtual void setMaximumFractionDigits(int32_t newValue);
116 * @param newValue the new value to be set.
119 virtual void setMinimumFractionDigits(int32_t newValue);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Ddecimfmt.h1301 * @param newValue the new value of the the positive prefix to be set.
1305 virtual void setPositivePrefix(const UnicodeString& newValue);
1320 * @param newValue the new value of the the negative prefix to be set.
1324 virtual void setNegativePrefix(const UnicodeString& newValue);
1339 * @param newValue the new value of the positive suffix to be set.
1343 virtual void setPositiveSuffix(const UnicodeString& newValue);
1358 * @param newValue the new value of the negative suffix to be set.
1362 virtual void setNegativeSuffix(const UnicodeString& newValue);
1382 * @param newValue the new value of the multiplier for use in percent, permill, etc.
1386 virtual void setMultiplier(int32_t newValue);
[all...]
H A Dnumfmt.h814 * @param newValue True, grouping will be used in this format.
818 virtual void setGroupingUsed(UBool newValue);
837 * @param newValue the new value for the maximum number of digits
842 virtual void setMaximumIntegerDigits(int32_t newValue);
860 * @param newValue the new value to be set.
864 virtual void setMinimumIntegerDigits(int32_t newValue);
882 * @param newValue the new value to be set.
886 virtual void setMaximumFractionDigits(int32_t newValue);
904 * @param newValue the new value to be set.
908 virtual void setMinimumFractionDigits(int32_t newValue);
[all...]
H A Ducal.h952 * @param newValue The new value of attr.
959 int32_t newValue);
H A Dunum.h878 * @param newValue The new value of attr.
889 int32_t newValue);
916 * @param newValue The new value of attr.
927 double newValue);
990 * @param newValue The new value of attr.
991 * @param newValueLength The length of newValue, or -1 if null-terminated.
1001 const UChar* newValue,
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/howExpensiveIs/
H A DhowExpensiveIs.cpp333 AttrNumTest(const char *pat, const char *num, double expect, const char *FILE, int LINE, UNumberFormatAttribute attr, int32_t newValue) argument
336 fAttrValue(newValue)
361 NOXNumTest(const char *pat, const char *num, double expect, const char *FILE, int LINE /*, UNumberFormatAttribute attr, int32_t newValue */)
364 fAttrValue(newValue) */
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioControl.cpp476 IOReturn IOAudioControl::setValue(OSObject *newValue) argument
480 if (OSDynamicCast(OSNumber, newValue)) {
481 audioDebugIOLog(3, "+ IOAudioControl[%p]::setValue(int = %d)\n", this, ((OSNumber *)newValue)->unsigned32BitValue());
483 audioDebugIOLog(3, "+ IOAudioControl[%p]::setValue(%p)\n", this, newValue);
486 if (newValue) {
487 if (!value || !value->isEqualTo(newValue)) {
488 result = validateValue(newValue);
490 result = performValueChange(newValue);
492 result = updateValue(newValue);
504 if (OSDynamicCast(OSNumber, newValue)) {
532 updateValue(OSObject *newValue) argument
544 _setValue(OSObject *newValue) argument
559 hardwareValueChanged(OSObject *newValue) argument
616 performValueChange(OSObject *newValue) argument
[all...]
H A DIOAudioControl.h96 * @param newValue The new value the control is being changed to.
99 typedef IOReturn (*IntValueChangeHandler)(OSObject *target, IOAudioControl *audioControl, SInt32 oldValue, SInt32 newValue);
101 typedef IOReturn (*ObjectValueChangeHandler)(OSObject *target, IOAudioControl *audioControl, OSObject *oldValue, OSObject *newValue);
415 * @param newValue The new value for this control.
418 virtual IOReturn setValue(OSObject *newValue);
430 * @param newValue The new value for this control.
433 virtual IOReturn hardwareValueChanged(OSObject *newValue);
517 * @param newValue The new value to be verified.
520 virtual IOReturn validateValue(OSObject *newValue);
527 * @param newValue Th
[all...]
H A DIOAudioLevelControl.cpp295 IOReturn IOAudioLevelControl::validateValue(OSObject *newValue) argument
300 number = OSDynamicCast(OSNumber, newValue);
302 audioDebugIOLog(3, "+ IOAudioLevelControl::validateValue[%p] (%p)\n", this, newValue);
318 audioDebugIOLog(3, "- IOAudioLevelControl::validateValue[%p] (%p) returns 0x%lX\n", this, newValue, (long unsigned int)result );
H A DIOAudioLevelControl.h202 virtual IOReturn validateValue(OSObject *newValue);
H A DIOAudioSelectorControl.cpp460 IOReturn IOAudioSelectorControl::validateValue(OSObject *newValue) argument
465 number = OSDynamicCast(OSNumber, newValue);
468 result = super::validateValue(newValue);

Completed in 318 milliseconds

12345678910