HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 626 - 650 of 19228) sorted by null

<<21222324252627282930>>

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParameterAsserts.java 35 * @throws XMPException Array name is null or empty
39 if (arrayName == null || arrayName.length() == 0)
49 * @throws XMPException Property name is null or empty
53 if (propName == null || propName.length() == 0)
63 * @throws XMPException Schema is null or empty
67 if (schemaNS == null || schemaNS.length() == 0)
77 * @throws XMPException Prefix is null or empty
81 if (prefix == null || prefix.length() == 0)
91 * @throws XMPException Specific language is null or empty
95 if (specificLang == null || specificLang.length() == 0
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcManager.java 49 if (context == null) {
56 adapter = null;
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransportService.java 24 private static LocalTransport sTransport = null;
28 if (sTransport == null) {
  /frameworks/base/keystore/java/android/security/
KeyChainException.java 49 * the cause of this exception, may be {@code null}.
60 * the cause of this exception, may be {@code null}.
63 super((cause == null ? null : cause.toString()), cause);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StreamPort.java 34 if (mFrame != null) {
36 mFrame = null;
55 if (mFrame != null) {
58 } else if (mFrame != null) {
70 if (mFrame == null) {
79 mFrame = null;
86 return mFrame != null;
96 if (mFrame != null) {
  /frameworks/base/test-runner/src/android/test/
ActivityInstrumentationTestCase2.java 51 Intent mActivityIntent = null;
98 if (a == null) {
103 if (mActivityIntent == null) {
104 a = launchActivity(targetPackage, mActivityClass, null);
127 * All other fields are null or empty.
129 * @param i The Intent to start the Activity with, or null to reset to the default Intent.
157 mActivityIntent = null;
164 if (a != null) {
166 setActivity(null);
185 Method method = getClass().getMethod(getName(), (Class[]) null);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphInputSource.java 13 private Frame mFrame = null;
27 if (mFrame != null) {
30 if (frame == null) {
31 throw new RuntimeException("Attempting to assign null-frame!");
38 if (mFrame != null) {
41 mFrame = null;
47 if (mFrame != null) {
49 mFrame = null;
55 return super.canSchedule() && mFrame != null;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
CameraTestThread.java 34 private Looper mLooper = null;
35 private Handler mHandler = null;
42 if (mLooper != null || mHandler !=null) {
73 if (mLooper == null || mHandler == null) {
81 mLooper = null;
82 mHandler = null;
  /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-common/SRC/
DriverView.java.template 37 if (mRS == null) {
57 mRender = null;
58 if (mRS != null) {
59 mRS = null;
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 26 * Closes the supplied cursor iff it is not null.
29 if (cursor != null) {
35 * Closes the given file descriptor iff it is not null, ignoring exceptions.
38 if (assetFileDescriptor != null) {
  /libcore/luni/src/main/java/java/io/
IOException.java 69 super(cause == null ? null : cause.toString(), cause);
  /libcore/luni/src/main/java/java/lang/
ClassNotFoundException.java 34 super((Throwable) null);
45 super(detailMessage, null);
73 * Returns the cause of this Throwable, or {@code null} if there is no
ExceptionInInitializerError.java 34 initCause(null);
46 initCause(null);
72 * Returns the cause of this error, or {@code null} if there is no cause.
IllegalArgumentException.java 53 * the cause of this exception, may be {@code null}.
65 * the cause of this exception, may be {@code null}.
69 super((cause == null ? null : cause.toString()), cause);
IllegalStateException.java 65 * the cause of this exception, may be {@code null}.
69 super((cause == null ? null : cause.toString()), cause);
SecurityException.java 52 * the optional cause of this exception, may be {@code null}.
64 * the optional cause of this exception, may be {@code null}.
68 super((cause == null ? null : cause.toString()), cause);
UnsupportedOperationException.java 52 * the optional cause of this exception, may be {@code null}.
64 * the optional cause of this exception, may be {@code null}.
68 super((cause == null ? null : cause.toString()), cause);
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 48 * the cause of the error or {@code null} if none.
56 * {@code null}, then {@code cause.toString()} is used as the
60 * the cause of the error or {@code null} if none.
63 super(cause == null ? null : cause.toString(), cause);
  /libcore/luni/src/main/java/java/sql/
DriverPropertyInfo.java 30 * contained here. Otherwise choices is {@code null}.
35 * A description of the property. May be {@code null}.
69 this.choices = null;
70 this.description = null;
  /libcore/luni/src/main/java/javax/net/ssl/
SSLException.java 58 super(cause == null ? null : cause.toString());
SSLSocketFactory.java 44 if (defaultSocketFactory != null) {
47 if (defaultName == null) {
49 if (defaultName != null) {
51 if (cl == null) {
63 if (defaultSocketFactory == null) {
68 context = null;
70 if (context != null) {
74 if (defaultSocketFactory == null) {
X509ExtendedKeyManager.java 42 * the list of certificate issuers, or {@code null} if any issuer
45 * the {@code SSLEngine} for the connection, or {@code null} if
47 * @return the alias name of a matching key or {@code null} if there are no
52 return null;
62 * the list of certificate issuers, or {@code null} if any issuer
65 * the {@code SSLEngine} for the connection, or {@code null} if
67 * @return the alias name of a matching key or {@code null} if there are no
72 return null;
  /libcore/luni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 29 public Subject getSubject() { return null; }
31 public ProtectionDomain[] combine(ProtectionDomain[] currentDomains, ProtectionDomain[] assignedDomains) { return null; }
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidFileTest.java 28 File file = File.createTempFile(String.valueOf(System.currentTimeMillis()), null, null);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldSimpleFormatterTest.java 28 assertEquals("Head for this SimpleFormatter should be empty", "", sf.getHead(null));
29 assertEquals("Tail for this SimpleFormatter should be empty", "", sf.getTail(null));

Completed in 923 milliseconds

<<21222324252627282930>>