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

1 2 3 4 5

  /cts/tests/tests/keystore/src/android/keystore/cts/
EmptyArray.java 19 abstract class EmptyArray {
20 private EmptyArray() {}
  /frameworks/layoutlib/create/tests/mock_data/mock_android/widget/
LinearLayout.java 19 import mock_android.util.EmptyArray;
24 Object[] mObjects = EmptyArray.OBJECT;
  /frameworks/layoutlib/create/tests/mock_data/mock_android/util/
EmptyArray.java 21 public class EmptyArray {
  /external/conscrypt/common/src/main/java/org/conscrypt/
EmptyArray.java 17 // Copied from libcore.util.EmptyArray
21 final class EmptyArray {
22 private EmptyArray() {}
KeyManagerFactoryImpl.java 59 pwd = EmptyArray.CHAR;
76 pwd = EmptyArray.CHAR;
SSLNullSession.java 74 return EmptyArray.BYTE;
94 return EmptyArray.BYTE;
OpenSSLSocketImpl.java 128 setApplicationProtocols(alpnProtocols == null ? EmptyArray.STRING : alpnProtocols);
143 setApplicationProtocols(SSLUtils.decodeProtocols(protocols == null ? EmptyArray.BYTE : protocols));
  /art/test/157-void-class/src-art/
Main.java 17 import libcore.util.EmptyArray;
32 Runnable.class.getMethod("run", EmptyArray.CLASS).getReturnType();
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 19 public final class EmptyArray {
20 private EmptyArray() {}
  /frameworks/base/core/java/android/text/
AutoGrowArray.java 24 import libcore.util.EmptyArray;
68 mValues = EmptyArray.BYTE;
121 mValues = EmptyArray.BYTE;
177 mValues = EmptyArray.INT;
230 mValues = EmptyArray.INT;
286 mValues = EmptyArray.FLOAT;
339 mValues = EmptyArray.FLOAT;
  /frameworks/base/keystore/java/android/security/keystore/
ArrayUtils.java 19 import libcore.util.EmptyArray;
28 return (array != null) ? array : EmptyArray.STRING;
60 return EmptyArray.BYTE;
KeyStoreCryptoOperationChunkedStreamer.java 25 import libcore.util.EmptyArray;
75 private byte[] mBuffered = EmptyArray.BYTE;
94 return EmptyArray.BYTE;
137 mBuffered = EmptyArray.BYTE;
199 result = EmptyArray.BYTE;
212 input = EmptyArray.BYTE;
233 return EmptyArray.BYTE;
255 mBuffered = EmptyArray.BYTE;
300 byte[] result = (bufferedOutput != null) ? bufferedOutput.toByteArray() : EmptyArray.BYTE;
KeyStoreCryptoOperationUtils.java 22 import libcore.util.EmptyArray;
100 return EmptyArray.BYTE;
KeyProperties.java 25 import libcore.util.EmptyArray;
352 return EmptyArray.STRING;
365 return EmptyArray.INT;
448 return EmptyArray.INT;
508 return EmptyArray.INT;
642 return EmptyArray.STRING;
656 return EmptyArray.INT;
724 return EmptyArray.INT;
  /libcore/luni/src/main/java/libcore/reflect/
ListOfTypes.java 22 import libcore.util.EmptyArray;
64 return EmptyArray.TYPE;
GenericSignatureParser.java 25 import libcore.util.EmptyArray;
130 this.formalTypeParameters = EmptyArray.TYPE_VARIABLE;
139 this.formalTypeParameters = EmptyArray.TYPE_VARIABLE;
160 this.formalTypeParameters = EmptyArray.TYPE_VARIABLE;
191 this.formalTypeParameters = EmptyArray.TYPE_VARIABLE;
  /frameworks/base/core/java/android/hardware/location/
NanoAppInstanceInfo.java 24 import libcore.util.EmptyArray;
50 private int[] mNeededSensors = EmptyArray.INT;
51 private int[] mOutputEvents = EmptyArray.INT;
  /frameworks/base/core/java/android/util/
LongSparseLongArray.java 22 import libcore.util.EmptyArray;
68 mKeys = EmptyArray.LONG;
69 mValues = EmptyArray.LONG;
SparseBooleanArray.java 22 import libcore.util.EmptyArray;
63 mKeys = EmptyArray.INT;
64 mValues = EmptyArray.BOOLEAN;
SparseIntArray.java 24 import libcore.util.EmptyArray;
68 mKeys = EmptyArray.INT;
69 mValues = EmptyArray.INT;
SparseLongArray.java 22 import libcore.util.EmptyArray;
66 mKeys = EmptyArray.INT;
67 mValues = EmptyArray.LONG;
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
AccessibilityInteractionClientTest.java 28 import libcore.util.EmptyArray;
88 return EmptyArray.STRING;
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
SSLUtilsTest.java 38 byte[] actual = SSLUtils.encodeProtocols(EmptyArray.STRING);
76 assertArrayEquals(EmptyArray.STRING, SSLUtils.decodeProtocols(EmptyArray.BYTE));
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 8 import libcore.util.EmptyArray;
48 declared = EmptyArray.BOOLEAN;
49 specified = EmptyArray.BOOLEAN;
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessage.java 19 import libcore.util.EmptyArray;
29 public static final byte[] EMPTY_PARAM = EmptyArray.BYTE;

Completed in 1324 milliseconds

1 2 3 4 5