/frameworks/base/tests/permission/src/com/android/framework/permission/tests/ |
PmPermissionsTests.java | 44 mPm.getPackageSizeInfo(mPkgName, null); 59 mPm.deleteApplicationCacheFiles(mPkgName, null); 78 mPm.installPackage(null, observer, 0, null); 93 mPm.freeStorage(100000, null); 108 mPm.freeStorageAndNotify(100000, null); 123 mPm.clearApplicationUserData(mPkgName, null); 138 mPm.deletePackage(mPkgName, null, 0);
|
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/ |
TestUtils.java | 27 obj = null; 28 while (ref.get() != 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) {
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
TintInfo.java | 29 mTintList = null; 31 mTintMode = null;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
Process2Test.java | 42 Process process = null; 44 process = Runtime.getRuntime().exec(commands, null, null); 57 if (process != null) { 63 Process erProcess = null; 65 erProcess = Runtime.getRuntime().exec(unknownCommands, null, null); 78 if (erProcess != null) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
SampleBundleClass.java | 32 if (singleton != null) { 40 bundle = null;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
MockPreferencesFactory.java | 26 static MockAbstractPreferences userRoot = new MockAbstractPreferences(null, 30 null, "");
|
/libcore/libart/src/main/java/dalvik/system/ |
TransactionAbortError.java | 59 this(cause == null ? null : cause.toString(), cause);
|
/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/function/ |
UnaryOperatorTest.java | 28 assertNull(null, UnaryOperator.identity().apply(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));
|
/libcore/ojluni/src/main/java/java/io/ |
WriteAbortedException.java | 68 initCause(null); // Disallow subsequent initCause 77 if (detail == null) 87 * which may be null.
|
/libcore/ojluni/src/main/java/java/lang/ |
BootstrapMethodError.java | 63 * @param cause the cause, may be {@code null}. 73 * @param cause the cause, may be {@code null}. 77 super(cause == null ? null : cause.toString());
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
UndeclaredThrowableException.java | 75 super((Throwable) null); // Disallow initCause 90 super(s, null); // Disallow initCause 96 * {@code UndeclaredThrowableException}, which may be {@code null}. 111 * which may be {@code null}).
|
/libcore/ojluni/src/main/java/java/text/ |
RuleBasedCollator.java | 283 if (rules == null) { 284 throw new NullPointerException("rules == null"); 322 if (source == null) { 323 throw new NullPointerException("source == null"); 338 if (source == null) { 339 throw new NullPointerException("source == null"); 350 * @exception NullPointerException if <code>source</code> or <code>target</code> is null. 354 if (source == null || target == null) { 367 if (source == null) { [all...] |
/libcore/ojluni/src/main/java/java/util/concurrent/ |
LinkedTransferQueue.java | 114 * (unmatched) queue node (or null if empty); and "tail" that 115 * points to the last node on the queue (or again null if 137 * "item" field from a non-null data value to null upon match, and 138 * vice-versa for request nodes, CASing from null to a data 267 * We allow both the head and tail fields to be null before any 271 * implicit NullPointerExceptions when they are null. While not 307 * and try to append a new node (or if head was null, establish 361 * (i.e., with null next), then it is pinned as the target node 453 volatile Object item; // initially non-null if isData; CASed to matc [all...] |
/libcore/ojluni/src/main/java/javax/net/ssl/ |
SSLException.java | 62 * {@link #getCause()} method). (A <tt>null</tt> value is 74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt> 79 * {@link #getCause()} method). (A <tt>null</tt> value is 85 super(cause == null ? null : cause.toString());
|
X509ExtendedKeyManager.java | 54 * The default implementation returns null. 59 * or null if it does not matter which issuers are used. 61 * connection. This parameter can be null, which indicates 64 * @return the alias name for the desired key, or null if there 69 return null; 78 * The default implementation returns null. 82 * or null if it does not matter which issuers are used. 84 * connection. This parameter can be null, which indicates 87 * @return the alias name for the desired key, or null if there 92 return null; [all...] |
/libcore/ojluni/src/main/java/javax/security/auth/ |
SubjectDomainCombiner.java | 37 public Subject getSubject() { return null; } 40 ProtectionDomain[] assignedDomains) { return null; }
|
/libcore/ojluni/src/main/java/sun/util/resources/ |
OpenListResourceBundle.java | 70 if (key == null) { 84 (parent != null) ? parent.getKeys() : null); 112 if (lookup == null) { 122 if (lookup != null) 128 // key must be non-null String, value must be non-null 131 if (key == null || value == null) { 147 private Map lookup = null; [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
SSLSocketFactoryImpl.java | 19 if (socket == null) { 25 if (s == null || s.equals("")) { 39 return null; 43 return null; 52 return null; 61 return null; 70 return null; 79 return null;
|
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/ |
MessagesFilter.java | 29 String periodBegin = null; 31 String periodEnd = null; 35 String recipient = null; 37 String originator = null; 50 if (filterBegin != null) { 53 if (filterEnd != null) { 64 recipient = null; 72 originator = null;
|
/packages/apps/Browser2/src/org/chromium/webview_shell/ |
WebViewLayoutTestRunner.java | 20 if (arguments != null) { 26 return mModeArgument != null ? mModeArgument.equals(MODE_REBASELINE) : false;
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
ExifData.java | 56 * Gets the compressed thumbnail. Returns null if there is no compressed 76 return mThumbnail != null; 87 mStripBytes.add(null); 125 * exists or null. 131 return null; 148 if (ifdData == null) { 157 * Otherwise returns null. 161 return (ifdData == null) ? null : ifdData.getTag(tag); 166 * with the same TID or null if none exist [all...] |