/external/apache-harmony/auth/src/test/java/common/javax/security/auth/x500/ |
X500PrivateCredentialTest.java | 56 return null; 60 return null; 64 return null; 68 return null; 72 return null; 76 return null; 80 return null; 84 return null; 88 return null; 92 return null; [all...] |
/external/apache-http/src/org/apache/http/util/ |
VersionInfo.java | 91 * @param module the module, or <code>null</code> 92 * @param release the release, or <code>null</code> 93 * @param time the build time, or <code>null</code> 94 * @param clsldr the class loader, or <code>null</code> 98 if (pckg == null) { 100 ("Package identifier must not be null."); 104 infoModule = (module != null) ? module : UNAVAILABLE; 105 infoRelease = (release != null) ? release : UNAVAILABLE; 106 infoTimestamp = (time != null) ? time : UNAVAILABLE; 107 infoClassloader = (clsldr != null) ? clsldr : UNAVAILABLE [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
BstNodeTest.java | 53 SimpleNode leaf = new SimpleNode('a', null, null); 59 SimpleNode leaf = new SimpleNode('a', null, null); 60 SimpleNode node = new SimpleNode('b', leaf, null); 66 SimpleNode leaf = new SimpleNode('c', null, null); 67 SimpleNode node = new SimpleNode('b', null, leaf); 73 SimpleNode left = new SimpleNode('a', null, null); [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLRSAPrivateCrtKey.java | 61 if (modulus == null) { 62 throw new InvalidKeySpecException("modulus == null"); 63 } else if (privateExponent == null) { 64 throw new InvalidKeySpecException("privateExponent == null"); 83 publicExponent == null ? null : publicExponent.toByteArray(), 85 primeP == null ? null : primeP.toByteArray(), 86 primeQ == null ? null : primeQ.toByteArray() [all...] |
OpenSSLRSAPublicKey.java | 53 null, 54 null, 55 null, 56 null, 57 null, 58 null)); 69 null, 70 null, 71 null, 72 null, [all...] |
/external/apache-http/src/org/apache/http/impl/conn/ |
AbstractPoolEntry.java | 86 /** The tracked route, or <code>null</code> before tracking starts. */ 95 * or <code>null</code> 100 if (connOperator == null) { 101 throw new IllegalArgumentException("Connection operator may not be null"); 106 this.tracker = null; 140 if (route == null) { 142 ("Route must not be null."); 144 //@@@ is context allowed to be null? depends on operator? 145 if (params == null) { 147 ("Parameters must not be null.") [all...] |
/external/proguard/src/proguard/ |
WordReader.java | 63 if (includeWordReader != null) 79 return includeWordReader != null ? 93 if (includeWordReader == null) 112 currentWord = null; 115 if (includeWordReader != null) 119 if (currentWord != null) 127 includeWordReader = null; 133 while (currentLine != null && 141 while (currentLine == null || currentIndex == currentLineLength) 144 if (currentLine == null) [all...] |
ClassPathEntry.java | 103 this.filter = filter == null || filter.size() == 0 ? null : filter; 114 this.jarFilter = filter == null || filter.size() == 0 ? null : filter; 125 this.warFilter = filter == null || filter.size() == 0 ? null : filter; 136 this.earFilter = filter == null || filter.size() == 0 ? null : filter; 147 this.zipFilter = filter == null || filter.size() == 0 ? null : filter [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
X509CRL2Test.java | 39 private X509Certificate pemCert = null; 84 if (pemCert != null) { 93 if (value != null && value.length > 0) { 127 return null; 132 return null; 137 return null; 142 return null; 147 return null; 152 return null; 157 return null; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiActions.java | 55 * @param uiNode The node to select. Can be null (in which case nothing should happen) 68 doAdd(uiNode, null /* descriptorFilters */, shell, new UiModelTreeLabelProvider()); 93 if (results != null && results.length > 0) { 94 addElement(dlg.getChosenRootNode(), null, (ElementDescriptor) results[0], local 111 * @param uiParent An existing UI node or null to add to the tree root 112 * @param uiSibling An existing UI node before which to insert the new node. Can be null. 115 * @return The new {@link UiElementNode} or null. 124 if (uiSibling != null && uiSibling.getUiParent() != uiParent) { 125 uiSibling = null; 143 if (nodes == null || nodes.size() == 0) 219 assert uiLastNode[0] != null; \/\/ tell Eclipse this can't be null below local 400 assert uiLastNode[0] != null; \/\/ tell Eclipse this can't be null below local [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
ContactsProviderTest.java | 44 null, null, null, null); 80 null, null, null, null); 118 new ContentValues(0), null, null); [all...] |
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DeletedContactUtil.java | 40 Cursor cursor = resolver.query(uri, projection, null, null, null); 51 Cursor cursor = resolver.query(URI, projection, null, null, null); 65 Cursor cursor = resolver.query(URI, projection, null, null, null); 78 Cursor cursor = resolver.query(URI, projection, selection, args, null); [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyPairTest.java | 45 return null; 58 return null; 75 * parameters (both <code>null</code>) 78 Object kp = new KeyPair(null, null); 95 * Assertion: returns private key (<code>null</code> in this case) 98 KeyPair kp = new KeyPair(null, null); 109 KeyPair kp = new KeyPair(null, pk); 115 * Assertion: returns public key (<code>null</code> in this case [all...] |
/external/apache-http/src/org/apache/http/conn/params/ |
ConnRouteParams.java | 79 * {@link #NO_HOST} will be mapped to <code>null</code>, 85 * <code>null</code> if not set 88 if (params == null) { 89 throw new IllegalArgumentException("Parameters must not be null."); 93 if ((proxy != null) && NO_HOST.equals(proxy)) { 95 proxy = null; 106 * @param proxy the value to set, may be <code>null</code>. 108 * <code>null</code> by {@link #getDefaultProxy}, 113 if (params == null) { 114 throw new IllegalArgumentException("Parameters must not be null.") [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
ExtensionNamespaceSupport.java | 36 String m_namespace = null; 37 String m_handlerClass = null; 38 Class [] m_sig = null; 39 Object [] m_args = null; 52 if (m_args[i] != null) 54 else // If an arguments is null, pick the constructor later. 56 m_sig = null; 73 ExtensionHandler handler = null; 77 Constructor con = null; 79 if (m_sig != null) [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 60 if unzip -h > /dev/null; then 63 grep 'testing: testzip\.pb\.cc *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 65 grep 'testing: testzip\.pb\.h *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 67 grep 'testing: testzip_pb2\.py *OK$' $TEST_TMPDIR/testzip.list > /dev/null \ 69 grep -i 'manifest' $TEST_TMPDIR/testzip.list > /dev/null \ 76 if jar c $TEST_TMPDIR/testzip.proto > /dev/null; then 79 grep '^test/jar/Foo\.java$' $TEST_TMPDIR/testzip.list > /dev/null \ 81 grep '^test/jar/Bar\.java$' $TEST_TMPDIR/testzip.list > /dev/null \ 83 grep '^test/jar/Outer\.java$' $TEST_TMPDIR/testzip.list > /dev/null \ 85 grep '^META-INF/MANIFEST\.MF$' $TEST_TMPDIR/testzip.list > /dev/null \ [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
zip_output_unittest.sh | 54 if unzip -h > /dev/null; then 57 grep 'testing: testzip\.pb\.cc *OK$' testzip.list > /dev/null \ 59 grep 'testing: testzip\.pb\.h *OK$' testzip.list > /dev/null \ 61 grep 'testing: testzip_pb2\.py *OK$' testzip.list > /dev/null \ 63 grep -i 'manifest' testzip.list > /dev/null \ 70 if jar c testzip.proto > /dev/null; then 73 grep '^test/jar/Foo\.java$' testzip.list > /dev/null \ 75 grep '^test/jar/Bar\.java$' testzip.list > /dev/null \ 77 grep '^test/jar/Outer\.java$' testzip.list > /dev/null \ 79 grep '^META-INF/MANIFEST\.MF$' testzip.list > /dev/null \ [all...] |
/external/smack/src/org/xbill/DNS/ |
Options.java | 43 if (s != null) { 62 table = null; 68 if (table == null) 76 if (table == null) 84 if (table == null) 92 if (table == null) 94 return (table.get(option.toLowerCase()) != null); 100 if (table == null) 101 return null; 111 if (s != null) { [all...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 41 * the same result from the decoder as if null were passed. 53 * <code>null</code> and will throw an IllegalArgumentException. The 111 * If set to true, the decoder will return null (no bitmap), but 130 * If this is non-null, the decoder will try to decode into this 131 * internal configuration. If it is null, or the request cannot be met, 326 * If not know, or there is an error, it is set to null. 351 * null, or if inJustDecodeBounds is true, will set outWidth/outHeight 361 * Decode a file path into a bitmap. If the specified file name is null, 362 * or cannot be decoded into a bitmap, the function returns null. 365 * @param opts null-ok; Options that control downsampling and whether th [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
OutputPort.java | 33 if (mTargetPort != null) { 41 return mTargetPort != null; 46 if (mTargetPort != null && !mTargetPort.isOpen()) { 53 if (mTargetPort != null && mTargetPort.isOpen()) { 63 return mTargetPort == null ? null : mTargetPort.getFilter(); 84 if (mTargetPort != null) { 91 if (mTargetPort == null) { 101 if (mTargetPort == null) { 115 return mTargetPort == null ? false : mTargetPort.hasFrame() [all...] |
/libcore/luni/src/main/java/java/lang/ref/ |
ReferenceQueue.java | 42 * @return the next available reference, or {@code null} if no reference is 47 if (head == null) { 48 return null; 56 head = null; 61 ret.queueNext = null; 84 * @return the next available reference, or {@code null} if no reference 95 if (head != null) { 103 } while (head == null); 115 if (head != null) { 136 if (head == null) { [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
MockFolder.java | 58 return null; 67 return null; 77 return null; 82 return null; 87 return null; 92 return null; 97 return null; 120 return null; 126 return null; 136 return null; [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
BitmapLoader.java | 44 // mTask is not null only when a task is on the way 51 mTask = null; 54 if (mBitmap != null) { 56 mBitmap = null; 60 if (future.isCancelled() && mBitmap == null) { 64 mState = mBitmap == null ? STATE_ERROR : STATE_LOADED; 73 if (mTask == null) mTask = submitBitmapTask(this); 80 if (mTask != null) mTask.cancel(); 87 if (mBitmap != null) { 89 mBitmap = null; [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/ |
DeletedContactUtil.java | 40 Cursor cursor = resolver.query(uri, projection, null, null, null); 51 Cursor cursor = resolver.query(URI, projection, null, null, null); 65 Cursor cursor = resolver.query(URI, projection, null, null, null); 78 Cursor cursor = resolver.query(URI, projection, selection, args, null); [all...] |
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
FakeSystemFacade.java | 16 Long mMaxBytesOverMobile = null; 17 Long mRecommendedMaxBytesOverMobile = null; 26 mMaxBytesOverMobile = null; 27 mRecommendedMaxBytesOverMobile = null; 46 if (mActiveNetworkType == null) { 47 return null; 49 final NetworkInfo info = new NetworkInfo(mActiveNetworkType, 0, null, null); 50 info.setDetailedState(DetailedState.CONNECTED, null, null); [all...] |