Searched refs:theValue (Results 1 – 9 of 9) sorted by relevance
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
D | Condition.java | 33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) { in matched() argument 34 return new Matched<T>(theValue, mismatch); in matched() 38 private final T theValue; field in Condition.Matched 41 private Matched(T theValue, Description mismatch) { in Matched() argument 42 this.theValue = theValue; in Matched() 48 if (matcher.matches(theValue)) { in matching() 52 matcher.describeMismatch(theValue, mismatch); in matching() 58 return next.apply(theValue, mismatch); in and()
|
/external/gptfdisk/ |
D | support.cc | 232 ostringstream theValue; in BytesToIeee() local 241 theValue << sizeInIeee << " bytes"; in BytesToIeee() 251 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee() 253 return theValue.str(); in BytesToIeee() 312 void ReverseBytes(void* theValue, int numBytes) { in ReverseBytes() argument 318 memcpy(tempValue, theValue, numBytes); in ReverseBytes() 320 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
|
D | support.h | 83 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | NGramList.java | 34 public NGram(String theValue, int theRefCount) in NGram() argument 36 value = theValue; in NGram() 40 public NGram(String theValue) in NGram() argument 42 this(theValue, 1); in NGram()
|
/external/icu/icu4c/source/common/ |
D | unifiedcache.cpp | 534 const SharedObject *theValue, UErrorCode creationStatus) { in _inProgress() argument 535 return (theValue == gNoValue && creationStatus == U_ZERO_ERROR); in _inProgress() 542 const SharedObject *theValue = in _isEvictable() local 546 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable() 552 … return (!theKey->fIsMaster || (theValue->getSoftRefCount() == 1 && theValue->noHardReferences())); in _isEvictable()
|
D | unifiedcache.h | 396 const SharedObject *theValue, UErrorCode creationStatus);
|
/external/webrtc/webrtc/modules/audio_device/mac/ |
D | audio_device_mac.h | 187 static void AtomicSet32(int32_t* theValue, int32_t newValue); 188 static int32_t AtomicGet32(int32_t* theValue);
|
D | audio_device_mac.cc | 57 void AudioDeviceMac::AtomicSet32(int32_t* theValue, int32_t newValue) { in AtomicSet32() argument 59 int32_t oldValue = *theValue; in AtomicSet32() 60 if (OSAtomicCompareAndSwap32Barrier(oldValue, newValue, theValue) == true) { in AtomicSet32() 66 int32_t AudioDeviceMac::AtomicGet32(int32_t* theValue) { in AtomicGet32() argument 68 int32_t value = *theValue; in AtomicGet32() 69 if (OSAtomicCompareAndSwap32Barrier(value, value, theValue) == true) { in AtomicGet32()
|
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
D | SPUISelLowering.cpp | 861 SDValue theValue = SN->getValue(); in LowerSTORE() local 864 && (theValue.getOpcode() == ISD::AssertZext in LowerSTORE() 865 || theValue.getOpcode() == ISD::AssertSext)) { in LowerSTORE() 868 theValue = theValue.getOperand(0); in LowerSTORE() 886 theValue); in LowerSTORE()
|