Home
last modified time | relevance | path

Searched refs:NULL_STRING (Results 1 – 5 of 5) sorted by relevance

/packages/modules/GeoTZ/common/src/test/java/com/android/timezone/location/common/
DPiiLoggablesTest.java19 import static com.android.timezone.location.common.PiiLoggables.NULL_STRING;
47 assertEquals(NULL_STRING, piiLoggable.toString()); in fromString_null()
48 assertEquals(NULL_STRING, piiLoggable.toPiiString()); in fromString_null()
67 assertEquals(NULL_STRING, piiLoggableValue.toString()); in fromPiiValue_null()
68 assertEquals(NULL_STRING, piiLoggableValue.toPiiString()); in fromPiiValue_null()
91 assertEquals(NULL_STRING, function.apply(null)); in toPiiStringFunction()
DPiiLoggableTest.java19 import static com.android.timezone.location.common.PiiLoggables.NULL_STRING;
38 assertEquals(NULL_STRING, PiiLoggable.toPiiString(null)); in toPiiString()
/packages/apps/Contacts/tests/src/com/android/contacts/tests/
DQueryService.java47 private static final String NULL_STRING = "*null*"; field in QueryService
105 sb.append(s == null ? NULL_STRING : s); in add()
/packages/modules/GeoTZ/common/src/main/java/com/android/timezone/location/common/
DPiiLoggables.java28 static final String NULL_STRING = "null"; field in PiiLoggables
90 return mValue == null ? NULL_STRING : REDACTED_STRING; in fromPiiValue()
DPiiLoggable.java44 return value == null ? PiiLoggables.NULL_STRING : value.toPiiString(); in toPiiString()