HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 1351 - 1375 of 19630) sorted by null

<<51525354555657585960>>

  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
QuotedPrintable.java 37 * null if quoted-printable decoding is unsuccessful.
40 if (bytes == null) {
41 return null;
56 return null;
60 return null;
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
DrmConvertSession.java 45 * @return A convert session or null in case an error occurs.
48 DrmManagerClient drmClient = null;
50 if (context != null && mimeType != null && !mimeType.equals("")) {
69 if (drmClient == null || convertSessionId < 0) {
70 return null;
81 * other case null.
84 byte[] result = null;
85 if (inBuffer != null) {
86 DrmConvertedStatus convertedStatus = null;
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 58 * head of the queue. This returns null if a value is not cached and cannot
62 if (key == null) {
63 throw new NullPointerException("key == null");
69 if (mapValue != null) {
84 if (createdValue == null) {
85 return null;
92 if (mapValue != null) {
100 if (mapValue != null) {
116 if (key == null || value == null) {
    [all...]
  /frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
WakeUpController.java 31 private static WakeUpController mController = null;
32 private WakeLock mWakeLock = null;
40 if (mController == null) {
47 if (mWakeLock == null) {
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
AppHelperBase.java 68 Process p = null;
69 BufferedReader resultReader = null;
85 if (resultReader != null) {
88 if (p != null) {
  /frameworks/volley/src/com/android/volley/
Response.java 54 /** Parsed response, or null in the case of error. */
57 /** Cache metadata for this response, or null in the case of error. */
70 return error == null;
77 this.error = null;
81 this.result = null;
82 this.cacheEntry = null;
  /frameworks/volley/src/com/android/volley/toolbox/
ClearCacheRequest.java 38 * or null for none
41 super(Method.GET, null, null);
50 if (mCallback != null) {
64 return null;
  /libcore/benchmarks/src/benchmarks/regression/
SystemPropertiesBenchmark.java 25 System.setProperties(null);
  /libcore/crypto/src/main/java/org/conscrypt/
TrustManagerFactoryImpl.java 45 if (ks != null) {
50 keyStore.load(null, null);
76 if (keyStore == null) {
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 43 * if (guard != null) {
79 * if (guard != null) {
99 * Note that the null check on {@code guard} in the finalizer is to
127 * failure to close. If CloseGuard is disabled, a non-null no-op
147 * violations. Must be non-null.
150 if (reporter == null) {
151 throw new NullPointerException("reporter == null");
157 * Returns non-null CloseGuard.Reporter.
170 * @param closer non-null name of explicit termination method
171 * @throws NullPointerException if closer is null, regardless o
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestLoadException.java 28 * @param innerException should not be null
35 if (innerException != null) {
  /libcore/luni/src/main/java/java/lang/
Compiler.java 34 * object or {@code null} if no JIT compiler is available. Returns null
39 * @return the result of executing command or {@code null}.
42 return null;
  /libcore/luni/src/main/java/java/lang/ref/
PhantomReference.java 52 * reference queue. The reference queue may be {@code null}, but this case
54 * the {@link #get()} method always returns {@code null}.
64 * Returns {@code null}. The referent of a phantom reference is not
67 * @return {@code null} (always)
71 return null;
SoftReference.java 87 super(r, null);
95 * @param q the queue to register to the reference object with. A null value
WeakReference.java 95 super(r, null);
103 * @param q the queue to register to the reference object with. A null value
  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 45 * {@code null}.
52 if (input == null) {
53 throw new NullPointerException("input == null");
54 } else if (reason == null) {
55 throw new NullPointerException("reason == null");
76 * {@code null}.
81 if (input == null) {
82 throw new NullPointerException("input == null");
83 } else if (reason == null) {
84 throw new NullPointerException("reason == null");
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
IllegalCharsetNameException.java 43 super((charsetName != null) ? charsetName : "null");
UnsupportedCharsetException.java 43 super((charsetName != null) ? charsetName : "null");
  /libcore/luni/src/main/java/java/security/
AccessControlContext.java 46 public DomainCombiner getDomainCombiner() { return null; }
AllPermission.java 28 @Override public String getActions() { return null; }
AllPermissionCollection.java 28 @Override public Enumeration<Permission> elements() { return null; }
SecurityPermission.java 28 @Override public String getActions() { return null; }
Signer.java 84 if (pair == null) {
85 throw new NullPointerException("pair == null");
88 if (pair.getPrivate() == null || pair.getPublic() == null) {
104 if (getScope() != null) {
  /libcore/luni/src/main/java/java/security/spec/
ECGenParameterSpec.java 37 if (this.name == null) {
38 throw new NullPointerException("name == null");
ECParameterSpec.java 55 this(curve, generator, order, cofactor, null);
72 // throw NullPointerException if curve, generator or order is null
73 if (this.curve == null) {
74 throw new NullPointerException("curve == null");
76 if (this.generator == null) {
77 throw new NullPointerException("generator == null");
79 if (this.order == null) {
80 throw new NullPointerException("order == null");
129 * {@code null} if this is not known to be a named curve.

Completed in 1079 milliseconds

<<51525354555657585960>>