/packages/apps/UnifiedEmail/src/com/android/mail/ |
ContactInfo.java | 29 this(contactUri, null, null); 33 this(contactUri, photoBytes, null); 37 this(contactUri, null, photo); 48 return "{photo=" + (photo != null ? photo : photoBytes) + "}";
|
/external/testng/src/main/java/org/testng/internal/ |
ConstructorOrMethod.java | 26 return getMethod() != null ? getMethod().getDeclaringClass() : getConstructor().getDeclaringClass(); 30 return getMethod() != null ? getMethod().getName() : getConstructor().getName(); 34 return getMethod() != null ? getMethod().getParameterTypes() : getConstructor().getParameterTypes(); 49 result = prime * result + ((getConstructor() == null) ? 0 : getConstructor().hashCode()); 50 result = prime * result + ((getMethod() == null) ? 0 : getMethod().hashCode()); 58 if (obj == null) 63 if (getConstructor() == null) { 64 if (other.getConstructor() != null) 68 if (getMethod() == null) { 69 if (other.getMethod() != null) [all...] |
/frameworks/base/core/java/android/os/ |
Registrant.java | 38 refH = null; 39 userObj = null; 45 internalNotifyRegistrant (null, null); 51 internalNotifyRegistrant (result, null); 57 internalNotifyRegistrant (null, exception); 74 if (h == null) { 88 * NOTE: May return null if weak reference has been collected 96 if (h == null) { 99 return null; [all...] |
/libcore/ojluni/src/main/java/java/util/logging/ |
Logging.java | 70 if (l == null) { 71 return null; 75 if (level == null) { 83 if (loggerName == null) { 84 throw new NullPointerException("loggerName is null"); 88 if (logger == null) { 93 Level level = null; 94 if (levelName != null) { 97 if (level == null) { 107 if (l == null) { [all...] |
/libcore/ojluni/src/main/java/javax/crypto/spec/ |
PBEKeySpec.java | 66 private byte[] salt = null; 72 * null is specified. 80 if ((password == null) || (password.length == 0)) { 91 * PBE ciphers. An empty char[] is used if null is specified for 102 * @exception NullPointerException if <code>salt</code> is null. 109 if ((password == null) || (password.length == 0)) { 114 if (salt == null) { 116 "must be non-null"); 137 * char[] is used if null is specified for <code>password</code>. 146 * @exception NullPointerException if <code>salt</code> is null [all...] |
/libcore/ojluni/src/main/java/sun/misc/ |
Cleaner.java | 72 static private Cleaner first = null; 75 next = null, 76 prev = null; 79 if (first != null) { 95 if (cl.next != null) 100 if (cl.next != null) 102 if (cl.prev != null) 130 if (thunk == null) 131 return null; 146 if (System.err != null) [all...] |
/packages/apps/Contacts/src/com/android/contacts/compat/ |
PhoneAccountCompat.java | 36 * @return the Icon, or null 40 if (phoneAccount == null) { 41 return null; 48 return null; 58 * @return An icon for this PhoneAccount, or null 63 if (phoneAccount == null || context == null) { 64 return null; 74 return null; 81 if (accountIcon == null) { [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/compat/ |
PhoneAccountCompat.java | 35 * @return the Icon, or null 39 if (phoneAccount == null) { 40 return null; 47 return null; 56 * @return An icon for this PhoneAccount, or null 61 if (phoneAccount == null || context == null) { 62 return null; 72 return null; 79 if (accountIcon == null) { [all...] |
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/ |
ContactUtil.java | 36 resolver.update(uri, values, null, null); 41 resolver.delete(uri, null, null); 49 Cursor cursor = resolver.query(uri, projection, null, null, null); 62 Cursor cursor = resolver.query(uri, projection, null, null, null); [all...] |
/cts/common/util/src/com/android/compatibility/common/util/ |
MetricsXmlSerializer.java | 36 if (reportLog == null) { 41 if (summary != null) { 42 mXmlSerializer.startTag(null, "Summary"); 43 mXmlSerializer.attribute(null, "message", summary.getMessage()); 44 mXmlSerializer.attribute(null, "scoreType", summary.getType().toReportString()); 45 mXmlSerializer.attribute(null, "unit", summary.getUnit().toReportString()); 47 mXmlSerializer.endTag(null, "Summary");
|
/cts/libs/vogar-expect/src/vogar/util/ |
Log.java | 23 private static LogOutput sLogoutput = null; 30 if (sLogoutput != null) { 36 if (sLogoutput != null) { 45 if (sLogoutput != null) { 51 if (sLogoutput != null) { 57 if (sLogoutput != null) { 63 if (sLogoutput != null) {
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
RenderScriptSingleton.java | 42 * @param context a non-{@code null} Context. 49 } else if (sContext != null) { 69 if (sContext != null) { 71 sCache = null; 74 sRS = null; 75 sContext = null; 82 * @return A non-{@code null} {@link RenderScript} object. 87 if (sRS == null) { 96 * @return A non-{@code null} {@link AllocationCache} object. 101 if (sCache == null) { [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
ToolMessage.java | 45 super(msgID, null, null); 48 super(msgID, arg, null); 58 super(msgID,arg,null); 63 if ( arg!=null ) { 66 if ( arg2!=null ) { 69 if ( e!=null ) {
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Connection1.java | 53 return null; 59 return null; 64 return null; 72 return null; 80 return null; 88 return null; 92 return null; 104 return null; 110 return null; 115 return null; [all...] |
/external/apache-http/android/src/com/android/internal/http/multipart/ |
FilePartSource.java | 52 private File file = null; 55 private String fileName = null; 67 if (file != null) { 90 if (fileName != null) { 101 if (this.file != null) { 114 return (fileName == null) ? "noname" : fileName; 124 if (this.file != null) {
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ClassLoaderUtil.java | 18 * a given class. getClassLoader always returns a non-null ClassLoader 26 // Object.class.getClassLoader() may return null. 28 // On Android, the behavior of super(null) is not guaranteed, 32 // should get non-null ClassLoader before calling 36 // Object.class.getClassLoader() returns null, but 37 // super(null) is commonly used for accessing the bootstrap 53 if (BOOTSTRAP_CLASSLOADER == null) { 55 if (BOOTSTRAP_CLASSLOADER == null) { 56 ClassLoader cl = null; 57 if (System.getSecurityManager() != null) { [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ClassLoaderUtil.java | 17 * a given class. getClassLoader always returns a non-null ClassLoader 24 // Object.class.getClassLoader() may return null. 26 // On Android, the behavior of super(null) is not guaranteed, 30 // should get non-null ClassLoader before calling 34 // Object.class.getClassLoader() returns null, but 35 // super(null) is commonly used for accessing the bootstrap 51 if (BOOTSTRAP_CLASSLOADER == null) { 53 if (BOOTSTRAP_CLASSLOADER == null) { 54 ClassLoader cl = null; 55 if (System.getSecurityManager() != null) { [all...] |
/external/proguard/src/proguard/ |
AssumeNoSideEffectsChecker.java | 53 if (classSpecifications != null) 63 if (className == null) 68 if (className == null || 74 if (methodSpecifications != null) 83 if (methodSpecification.name == null && 84 methodSpecification.descriptor == null) 88 (className == null ?
|
/external/strace/tests/ |
detach-running.test | 39 ./set_ptracer_any sh -c "echo > $LOG; while :; do :; done" > /dev/null & 42 kill -0 $! 2> /dev/null || 53 wait $tracee_pid 2> /dev/null 60 while ! grep -F "Process $tracee_pid attached" "$LOG" > /dev/null; do 61 kill -0 $! 2> /dev/null || { 71 grep -F "Process $tracee_pid detached" "$LOG" > /dev/null || { 82 grep_pid_status "$tracee_pid" '^State:.*R (running)' > /dev/null || {
|
/external/strace/tests-m32/ |
detach-running.test | 39 ./set_ptracer_any sh -c "echo > $LOG; while :; do :; done" > /dev/null & 42 kill -0 $! 2> /dev/null || 53 wait $tracee_pid 2> /dev/null 60 while ! grep -F "Process $tracee_pid attached" "$LOG" > /dev/null; do 61 kill -0 $! 2> /dev/null || { 71 grep -F "Process $tracee_pid detached" "$LOG" > /dev/null || { 82 grep_pid_status "$tracee_pid" '^State:.*R (running)' > /dev/null || {
|
/external/strace/tests-mx32/ |
detach-running.test | 39 ./set_ptracer_any sh -c "echo > $LOG; while :; do :; done" > /dev/null & 42 kill -0 $! 2> /dev/null || 53 wait $tracee_pid 2> /dev/null 60 while ! grep -F "Process $tracee_pid attached" "$LOG" > /dev/null; do 61 kill -0 $! 2> /dev/null || { 71 grep -F "Process $tracee_pid detached" "$LOG" > /dev/null || { 82 grep_pid_status "$tracee_pid" '^State:.*R (running)' > /dev/null || {
|
/frameworks/base/core/java/com/android/server/ |
AppWidgetBackupBridge.java | 35 return (sAppWidgetService != null) 37 : null; 41 return (sAppWidgetService != null) 43 : null; 47 if (sAppWidgetService != null) { 53 if (sAppWidgetService != null) { 59 if (sAppWidgetService != null) {
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
systemId01.java | 48 * @param factory document factory, may not be null 73 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, systemId);
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathException.java | 45 * <p>If <code>message</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p> 51 if (message == null) { 52 throw new NullPointerException("message == null"); 54 this.cause = null; 60 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p> 64 * @throws NullPointerException if <code>cause</code> is <code>null</code>. 67 super(cause == null ? null : cause.toString()); 69 if (cause == null) { 70 throw new NullPointerException("cause == null"); [all...] |
/libcore/ojluni/src/main/java/java/nio/file/ |
FileSystemException.java | 51 * a string identifying the file or {@code null} if not known. 54 super((String)null); 56 this.other = null; 65 * a string identifying the file or {@code null} if not known. 67 * a string identifying the other file or {@code null} if there 70 * a reason message with additional information or {@code null} 81 * @return the file (can be {@code null}) 90 * @return the other file (can be {@code null}) 110 if (file == null && other == null) [all...] |