/libcore/luni/src/main/java/java/util/jar/ |
JarFile.java | 260 * Return the {@code JarEntry} specified by its name or {@code null} if no 273 * or {@code null} if no MANIFEST entry exists. 286 if (manifest != null) { 291 if (verifier != null) { 296 manifest = new Manifest(is, verifier != null); 300 manifestEntry = null; // Can discard the entry now. 302 manifestEntry = null; 319 if (metaEntries == null) { 320 verifier = null; 329 if (manifestEntry == null && entryName.equalsIgnoreCase(MANIFEST_NAME)) [all...] |
/libcore/luni/src/test/java/libcore/java/util/prefs/ |
OldPreferencesTest.java | 66 p.exportNode(null); 67 p.exportSubtree(null); 69 p.get(null, null); 70 p.getBoolean(null, false); 71 p.getByteArray(null, null); 72 p.getFloat(null, 0.1f); 73 p.getDouble(null, 0.1); 74 p.getInt(null, 1) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 93 setCompoundDrawablesWithIntrinsicBounds(null, 95 null, null); 115 if (tag != null) { 132 final boolean backgroundEmptyBefore = mPressedOrFocusedBackground == null; 134 mPressedOrFocusedBackground = null; 137 if (getLayout() == null) { 139 // background to null so that it will get created when the view is drawn. 140 mPressedOrFocusedBackground = null; 148 final boolean backgroundEmptyNow = mPressedOrFocusedBackground == null; [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ContactLoader.java | 64 Uri contactUri = null; 65 if (mLookupUri != null) { 67 if (mLookupUri != null) { 72 if (contactUri == null) { 73 return null; 80 + " IS NOT NULL OR " + StatusUpdates.STATUS + " IS NOT NULL", null, null); 82 if (cursor != null) { [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SubtypeSwitcher.java | 109 if (mResources != null) { 118 mIsNetworkConnected = (info != null && info.isConnected()); 138 + (mShortcutInputMethodInfo == null 139 ? "<null>" : mShortcutInputMethodInfo.getId()) + ", " 140 + (mShortcutSubtype == null ? "<null>" : ( 146 mShortcutInputMethodInfo = null; 147 mShortcutSubtype = null; 155 mShortcutSubtype = subtypes.size() > 0 ? subtypes.get(0) : null; 160 + (mShortcutInputMethodInfo == null [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
TestTargetPage.java | 73 Composite container = new Composite(parent, SWT.NULL); 98 ProjectChooserHelper helper = new ProjectChooserHelper(getShell(), null /*filter*/); 103 if (mValues.testedProject != null) { 134 if (project != null) { 167 mValues.testedProject = null; 183 IProject project = selection != null && selection.length == 1 184 ? ((IJavaProject) selection[0]).getProject() : null; 196 if (project != null && 202 if (manifestData != null) { 206 IAndroidTarget sdkTarget = null; [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
DNSCache.java | 49 private transient Set<Map.Entry<String, List<? extends DNSEntry>>> _entrySet = null; 95 return null; 135 return null; 163 _key = (key != null ? key.trim().toLowerCase() : null); 183 return (_key != null ? _key : ""); 229 return (_key == null ? 0 : _key.hashCode()); 241 if ((_value != null) && (!_value.isEmpty())) { 264 this(map != null ? map.size() : 1024); 265 if (map != null) { [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
Drawable.java | 125 private WeakReference<Callback> mCallback = null; 321 * @return A {@link Callback} instance or null if no callback was set. 326 if (mCallback != null) { 329 return null; 343 if (callback != null) { 360 if (callback != null) { 376 if (callback != null) { 426 * Specify an optional colorFilter for the drawable. Pass null to remove 449 setColorFilter(null); 664 * The default implementation returns null, indicating no transparen [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
Thread.java | 194 create(null, null, null, 0); 210 create(null, runnable, null, 0); 228 if (threadName == null) { 229 throw new NullPointerException("threadName == null"); 232 create(null, runnable, threadName, 0); 248 if (threadName == null) { 249 throw new NullPointerException("threadName == null"); [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Video_ThumbnailsTest.java | 73 assertNotNull(Thumbnails.getThumbnail(mResolver, videoId, Thumbnails.MINI_KIND, null)); 74 assertNotNull(Thumbnails.getThumbnail(mResolver, videoId, Thumbnails.MICRO_KIND, null)); 77 Thumbnails.getThumbnail(mResolver, videoId, Thumbnails.FULL_SCREEN_KIND, null); 89 null, null, null); 98 null, null); local 103 assertEquals(1, mResolver.delete(videoUri, null, null)); [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
URLUtilTest.java | 37 assertFalse(URLUtil.isAssetUrl(null)); 43 assertFalse(URLUtil.isAboutUrl(null)); 49 assertFalse(URLUtil.isContentUrl(null)); 56 assertFalse(URLUtil.isCookielessProxyUrl(null)); 62 assertFalse(URLUtil.isDataUrl(null)); 68 assertFalse(URLUtil.isFileUrl(null)); 76 assertFalse(URLUtil.isHttpsUrl(null)); 82 assertFalse(URLUtil.isHttpUrl(null)); 88 assertFalse(URLUtil.isJavaScriptUrl(null)); 94 assertFalse(URLUtil.isNetworkUrl(null)); [all...] |
/developers/build/prebuilts/gradle/StorageClient/StorageClientSample/src/main/java/com/example/android/storageclient/ |
StorageClientFragment.java | 99 Uri uri = null; 100 if (resultData != null) { 116 if (uri != null) { 138 .query(uri, null, null, null, null, null); 143 if (cursor != null && cursor.moveToFirst()) { 152 // If the size is unknown, the value stored is null. But since an int can't b [all...] |
/developers/samples/android/content/documentsUi/StorageClient/StorageClientSample/src/main/java/com/example/android/storageclient/ |
StorageClientFragment.java | 99 Uri uri = null; 100 if (resultData != null) { 116 if (uri != null) { 138 .query(uri, null, null, null, null, null); 143 if (cursor != null && cursor.moveToFirst()) { 152 // If the size is unknown, the value stored is null. But since an int can't b [all...] |
/development/samples/browseable/StorageClient/src/com.example.android.storageclient/ |
StorageClientFragment.java | 99 Uri uri = null; 100 if (resultData != null) { 116 if (uri != null) { 138 .query(uri, null, null, null, null, null); 143 if (cursor != null && cursor.moveToFirst()) { 152 // If the size is unknown, the value stored is null. But since an int can't b [all...] |
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
MockAbstractPreferences.java | 92 return null; 120 return null; 122 if (r == null) { 141 if (null == key) { 142 return null; 144 return result == returnNull ? null : attr.getProperty(key); 153 return result == returnNull ? null : results; 162 if (name == null || value == null) { 188 if (null == key) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2RTFDTM.java | 67 /** Most recently started Document, or null if the DTM is empty. */ 68 private int m_currentDocumentNode=NULL; 134 : null; 135 m_sourceLine = (m_useSourceLocationProperty) ? new IntVector() : null; 136 m_sourceColumn = (m_useSourceLocationProperty) ? new IntVector() : null; 142 m_emptyNSDeclSetCount = (m_namespaceDeclSets == null) 144 m_emptyNSDeclSetElemsCount = (m_namespaceDeclSetElements == null) 154 * the <b>most recently started</b> document, or null if the DTM is 161 * @return int Node handle of Document node, or null if this DTM does not 182 for (int id=makeNodeIdentity(nodeHandle); id!=NULL; id=_parent(id)) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
WalkingIterator.java | 73 * should be OK if null. 89 if (null != m_firstWalker) 93 while (null != walker) 118 if (null != m_firstWalker) 120 clone.m_firstWalker = m_firstWalker.cloneDeep(clone, null); 134 if (null != m_firstWalker) 155 if(null != m_firstWalker) 167 * <code>null</code> if there are no more members in that set. 172 return DTM.NULL; 208 * @return The head of the walker list, or null [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
ContentWrapperView.java | 137 assert mViewToHide == null && mViewToShow == null; local 147 assert mViewToHide != null || mViewToShow != null; local 155 if (mViewToShow != null) { 158 assert parent != null && parent instanceof ViewGroup; 163 if (mViewToHide != null) mViewToShow.setAlpha(0.0f); 187 if (mViewToHide != null) { 193 mViewToHide = null; 194 mViewToShow = null; [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/packages/ |
rpm.sh | 55 target=`dpkg --print-architecture 2>/dev/null || echo ""` 72 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7 73 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8 74 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9 75 grep "Fedora Core.*release 1" /etc/issue >/dev/null 2>&1 && destdir=fc1 76 grep "Fedora Core.*release 2" /etc/issue >/dev/null 2>&1 && destdir=fc2 77 grep "Fedora Core.*release 3" /etc/issue >/dev/null 2>&1 && destdir=fc3
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocation.java | 40 this(invocation, matchers, null);
48 this.matchers = (matcher == null) ? createMissingMatchers(invocation,
49 matchers) : null;
54 if (matchers != null) {
72 if (o == null || !this.getClass().equals(o.getClass()))
77 && ((this.matcher == null && other.matcher == null) || (this.matcher != null && this.matcher
79 && ((this.matchers == null && other.matchers == null) || (this.matchers != null && this.matchers [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/ |
DesignerPlugin.java | 66 assert sPlugin == null; // Can only be used by one client in the same classloader local 79 sPlugin = null; 94 * @return the String read from the stream, or null if there was an error 97 if (inputStream == null) { 98 return null; 108 return null; 119 assert sPlugin != null; local 134 if (display == null) { 151 if (getActiveWorkbenchWindow() != null) { 154 return null; [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
ClassLoaderLocalMap.java | 63 if (cl == null) { 76 if (cl == null) { 87 if (cl == null) { 105 if (clazz == null) { 130 if (holderClass == null) { 148 return (Map<Object, Object>) holderClass.getDeclaredField("localMap").get(null); 158 cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, holderClassName, null, "java/lang/Object", null); 165 null, 166 null); [all...] |
/external/jsilver/src/org/clearsilver/ |
DelegatedHdf.java | 37 if (hdf == null) { 38 throw new NullPointerException("Null HDF is not allowed in constructor of DelegatedHdf."); 134 return hdf != null ? newDelegatedHdf(hdf) : null; 139 return hdf != null ? newDelegatedHdf(hdf) : null; 144 return hdf != null ? newDelegatedHdf(hdf) : null; 153 return hdf != null ? newDelegatedHdf(hdf) : null; [all...] |
/external/junit/src/org/junit/experimental/categories/ |
Categories.java | 82 return new CategoryFilter(categoryType, null); 113 return fIncluded == null; 115 if (fExcluded != null && fExcluded.isAssignableFrom(each)) 118 if (fIncluded == null || fIncluded.isAssignableFrom(each)) 132 if (testClass == null) 133 return null; 138 if (description == null) 141 if (annotation == null) 161 return annotation == null ? null : annotation.value() [all...] |
/frameworks/base/core/java/android/content/ |
DefaultDataHandler.java | 102 if (uriStr != null) { 105 if (uri == null) { 113 if (postfix != null) { 129 mValues = null; 136 if (mValues != null) { 142 if (nextUri == null) { 167 if (key != null && key.length() > 0 && value != null && value.length() > 0) { 168 if (mValues == null) { 177 if (u == null) { [all...] |