OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:currentkeyvalue
(Results
1 - 3
of
3
) sorted by null
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java
351
String
currentKeyValue
= mMetrics.get(combineKey);
354
if (
currentKeyValue
== null) {
357
} else if (!
currentKeyValue
.equals(valueToAdd)) {
359
valueToAdd = String.format("%s,%s",
currentKeyValue
, valueToAdd);
/external/emma/core/java12/com/vladium/util/
IntObjectMap.java
178
final Object
currentKeyValue
= currentKeyEntry.m_value;
181
return
currentKeyValue
;
SoftValueMap.java
267
final Object
currentKeyValue
= ref.get (); // can be null already [no need to work around the get() bug, though]
269
if (
currentKeyValue
== null) ref.m_bucketIndex = -1; // disable removal by removeClearedValues() [need to do this because of the identity comparison there]
272
return
currentKeyValue
; // may return null to the caller
Completed in 482 milliseconds