Searched refs:myValue (Results 1 – 8 of 8) sorted by relevance
/external/clang/test/CodeGenObjC/ |
D | property-incr-decr-1.m | 11 @property int myValue; property 15 @synthesize myValue=_myValue; 22 o.myValue = -1; 23 val = o.myValue++; /* val -1, o.myValue 0 */ 24 val += o.myValue--; /* val -1. o.myValue -1 */ 25 val += ++o.myValue; /* val -1, o.myValue 0 */ 26 val += --o.myValue; /* val -2, o.myValue -1 */ 27 return ++o.myValue + (val+2);
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | property-incr-decr-1.m | 11 @property int myValue; property 15 @synthesize myValue=_myValue; 22 o.myValue = -1; 23 val = o.myValue++; /* val -1, o.myValue 0 */ 24 val += o.myValue--; /* val -1. o.myValue -1 */ 25 val += ++o.myValue; /* val -1, o.myValue 0 */ 26 val += --o.myValue; /* val -2, o.myValue -1 */ 27 return ++o.myValue + (val+2);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | DecimalFormatProperties.java | 1371 Object myValue, defaultValue; in toStringBare() local 1373 myValue = field.get(this); in toStringBare() 1382 if (myValue == null && defaultValue == null) { in toStringBare() 1384 } else if (myValue == null || defaultValue == null) { in toStringBare() 1385 result.append(" " + field.getName() + ":" + myValue); in toStringBare() 1386 } else if (!myValue.equals(defaultValue)) { in toStringBare() 1387 result.append(" " + field.getName() + ":" + myValue); in toStringBare() 1414 Object myValue = field.get(this); in writeObjectImpl() local 1415 if (myValue == null) { in writeObjectImpl() 1420 if (!myValue.equals(defaultValue)) { in writeObjectImpl() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | DecimalFormatProperties.java | 1376 Object myValue, defaultValue; in toStringBare() local 1378 myValue = field.get(this); in toStringBare() 1387 if (myValue == null && defaultValue == null) { in toStringBare() 1389 } else if (myValue == null || defaultValue == null) { in toStringBare() 1390 result.append(" " + field.getName() + ":" + myValue); in toStringBare() 1391 } else if (!myValue.equals(defaultValue)) { in toStringBare() 1392 result.append(" " + field.getName() + ":" + myValue); in toStringBare() 1419 Object myValue = field.get(this); in writeObjectImpl() local 1420 if (myValue == null) { in writeObjectImpl() 1425 if (!myValue.equals(defaultValue)) { in writeObjectImpl() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Annotations.java | 101 Annotations myValue = localeData.get(key); in cleanup() local 103 templocaleData.put(key, myValue); in cleanup() 104 } else if (myValue == null) { in cleanup() 107 String tts = myValue.tts == null in cleanup() 108 ? parentValue.tts : myValue.tts; in cleanup() 109 … Set<String> annotations = myValue.annotations == null || myValue.annotations.isEmpty() in cleanup() 110 ? parentValue.annotations : myValue.annotations; in cleanup()
|
D | CLDRFile.java | 870 String myValue = dataSource.getValueAtPath(key); in putAll() local 871 if (myValue == null) { in putAll() 873 } else if (!(myValue.equals(otherValue) in putAll()
|
/external/OpenCL-CTS/test_conformance/c11_atomics/ |
D | test_atomics.cpp | 2033 HostDataType myValue = 0, hisValue; in HostFunction() local 2035 myValue++; in HostFunction() 2036 … host_atomic_store<HostAtomicType, HostDataType>(&destMemory[myId], myValue, MEMORY_ORDER_SEQ_CST); in HostFunction() 2039 myValue++; in HostFunction() 2040 … host_atomic_store<HostAtomicType, HostDataType>(&destMemory[myId], myValue, MEMORY_ORDER_RELAXED); in HostFunction() 2043 } while (myValue == hisValue && hisValue < 1000000); in HostFunction() 2048 HostDataType myValue = 0, hisAtomicValue, hisValue; in HostFunction() local 2050 myValue++; in HostFunction() 2051 oldValues[myId*NumNonAtomicVariablesPerThread()+myValue] = myValue; in HostFunction() 2055 … host_atomic_store<HostAtomicType, HostDataType>(&destMemory[myId], myValue, MEMORY_ORDER_RELAXED); in HostFunction() [all …]
|
/external/icu/icu4c/source/common/ |
D | ucnv2022.cpp | 1132 uint32_t myValue; in MBCS_FROM_UCHAR32_ISO2022() local 1146 myValue=MBCS_VALUE_2_FROM_STAGE_2(sharedData->mbcs.fromUnicodeBytes, stage2Entry, c); in MBCS_FROM_UCHAR32_ISO2022() 1147 if(myValue<=0xff) { in MBCS_FROM_UCHAR32_ISO2022() 1154 myValue=((uint32_t)*p<<16)|((uint32_t)p[1]<<8)|p[2]; in MBCS_FROM_UCHAR32_ISO2022() 1155 if(myValue<=0xff) { in MBCS_FROM_UCHAR32_ISO2022() 1157 } else if(myValue<=0xffff) { in MBCS_FROM_UCHAR32_ISO2022() 1166 *value=myValue; in MBCS_FROM_UCHAR32_ISO2022() 1168 } else if(FROM_U_USE_FALLBACK(useFallback, c) && myValue!=0) { in MBCS_FROM_UCHAR32_ISO2022() 1174 *value=myValue; in MBCS_FROM_UCHAR32_ISO2022()
|