HomeSort by relevance Sort by last modified time
    Searched refs:theValue (Results 1 - 25 of 26) sorted by null

1 2

  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) {
34 return new Matched<T>(theValue, mismatch);
38 private final T theValue;
41 private Matched(T theValue, Description mismatch) {
42 this.theValue = theValue;
48 if (matcher.matches(theValue)) {
52 matcher.describeMismatch(theValue, mismatch);
58 return next.apply(theValue, mismatch);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
NGramList.java 34 public NGram(String theValue, int theRefCount)
36 value = theValue;
40 public NGram(String theValue)
42 this(theValue, 1);
  /external/gptfdisk/
support.cc 224 // theValue.precision() because this isn't possible using the available
232 ostringstream theValue;
241 theValue << sizeInIeee << " bytes";
251 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units;
253 return theValue.str();
311 // Reverse the byte order of theValue; numBytes is number of bytes
312 void ReverseBytes(void* theValue, int numBytes) {
318 memcpy(tempValue, theValue, numBytes);
320 ((char*) theValue)[i] = tempValue[numBytes - i - 1];
support.h 83 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue
  /external/icu/icu4c/source/common/
unifiedcache.cpp 534 const SharedObject *theValue, UErrorCode creationStatus) {
535 return (theValue == gNoValue && creationStatus == U_ZERO_ERROR);
542 const SharedObject *theValue =
546 if (_inProgress(theValue, theKey->fCreationStatus)) {
552 return (!theKey->fIsMaster || (theValue->getSoftRefCount() == 1 && theValue->noHardReferences()));
unifiedcache.h 396 const SharedObject *theValue, UErrorCode creationStatus);
  /external/webrtc/webrtc/modules/audio_device/mac/
audio_device_mac.h 187 static void AtomicSet32(int32_t* theValue, int32_t newValue);
188 static int32_t AtomicGet32(int32_t* theValue);
audio_device_mac.cc 57 void AudioDeviceMac::AtomicSet32(int32_t* theValue, int32_t newValue) {
59 int32_t oldValue = *theValue;
60 if (OSAtomicCompareAndSwap32Barrier(oldValue, newValue, theValue) == true) {
66 int32_t AudioDeviceMac::AtomicGet32(int32_t* theValue) {
68 int32_t value = *theValue;
69 if (OSAtomicCompareAndSwap32Barrier(value, value, theValue) == true) {
    [all...]
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 
org-eclipse-jface-3.6.2.jar 
  /prebuilts/misc/common/robolectric/lib/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]
  /prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 

Completed in 978 milliseconds

1 2