/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLocalBroadcastManager.java | 12 Robolectric.Reflection.setFinalStaticField(LocalBroadcastManager.class, "mInstance", null);
|
/external/smack/src/org/jivesoftware/smack/packet/ |
Bind.java | 36 private String resource = null;
37 private String jid = null;
62 if (resource != null) {
65 if (jid != null) {
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
FormNode.java | 40 if (submitForm == null)
41 throw new IllegalArgumentException("Submit form cannot be null");
57 if (submitForm == null)
58 throw new IllegalArgumentException("Submit form cannot be null");
75 if (configForm == null)
84 if (getNode() != null)
|
/external/smack/src/org/jivesoftware/smackx/workgroup/util/ |
ModelUtil.java | 32 * both of the objects might be <CODE>null</CODE> The result of
39 * <CODE>null</CODE>, return <CODE>false</CODE>.
55 else if (o1 == null || o2 == null) {
65 * both of the objects might be <CODE>null</CODE> The result of
76 // !jwetherb treat NULL the same as Boolean.FALSE
83 * both of the objects might be <CODE>null</CODE>. The result
90 * <CODE>null</CODE>, return <CODE>true</CODE>.
109 * both of the objects might be <CODE>null</CODE> The result of
127 * Returns <CODE>true</CODE> if the specified array is not null
[all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
SAXFactoryImpl.java | 39 private SAXParserImpl prototypeParser = null; 50 private HashMap features = null; 87 if (features == null) { 109 if (prototypeParser == null) {
|
/external/valgrind/main/none/tests/ |
fdleak_open.stderr.exp | 4 Open file descriptor ...: /dev/null 13 Open file descriptor ...: /dev/null
|
/frameworks/base/core/java/android/app/ |
AppOpsManager.java | 259 * If it doesn't have a public string constant, it maps to null. 264 null, 265 null, 266 null, 267 null, 268 null, 269 null, 270 null, 271 null, 272 null, [all...] |
/frameworks/base/core/java/android/content/ |
SyncContext.java | 59 if (mSyncContext != null) { 69 if (mSyncContext != null) { 78 return (mSyncContext == null) ? null : mSyncContext.asBinder();
|
/frameworks/base/core/java/android/content/pm/ |
PackageUserState.java | 52 disabledComponents = o.disabledComponents != null 53 ? new HashSet<String>(o.disabledComponents) : null; 54 enabledComponents = o.enabledComponents != null 55 ? new HashSet<String>(o.enabledComponents) : null;
|
/frameworks/base/core/java/android/nfc/tech/ |
NfcBarcode.java | 43 * <p>Returns null if {@link NfcBarcode} was not enumerated in {@link Tag#getTechList}. 51 if (!tag.hasTech(TagTechnology.NFC_BARCODE)) return null; 55 return null; 66 if (extras != null) { 69 throw new NullPointerException("NfcBarcode tech extras are null."); 127 return null;
|
/frameworks/base/core/java/android/os/ |
HandlerThread.java | 67 * or for any reason is isAlive() returns false, this method will return null. If this thread 73 return null; 78 while (isAlive() && mLooper == null) { 109 if (looper != null) { 127 * {@link #getLooper} returns null), then false is returned. 136 if (looper != null) {
|
/frameworks/base/core/java/android/print/ |
PrintManager.java | 188 mHandler = new Handler(context.getMainLooper(), null, false) { 197 if (listener != null) { 213 * jobs, null otherwise. 226 return null; 236 if (mPrintJobStateChangeListeners == null) { 257 if (mPrintJobStateChangeListeners == null) { 262 if (wrappedListener == null) { 266 mPrintJobStateChangeListeners = null; 286 if (printJob != null) { 292 return null; [all...] |
/frameworks/base/core/java/android/util/ |
Singleton.java | 33 if (mInstance == null) {
|
/frameworks/base/core/java/android/webkit/ |
WebViewFragment.java | 44 if (mWebView != null) { 85 if (mWebView != null) { 87 mWebView = null; 96 return mIsWebViewAvailable ? mWebView : null;
|
/frameworks/base/core/java/com/android/server/ |
ResettableTimeout.java | 64 if (mThread == null) { 87 if (mThread != null) { 89 mThread = null; 110 mThread = null;
|
/frameworks/base/core/java/com/google/android/util/ |
SmileyResources.java | 50 if (i == null) { 59 return null; 63 return null; 71 return null;
|
/frameworks/base/graphics/java/android/graphics/ |
Shader.java | 63 * @param localM If not null, it is set to the shader's local matrix. 67 if (mLocalMatrix != null) { 75 * Set the shader's local matrix. Passing null will reset the shader's 77 * @param localM The shader's new local matrix, or null to specify identity 82 localM == null ? 0 : localM.native_instance); 106 if (mLocalMatrix != null) { 111 dest.setLocalMatrix(null);
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
RoundRobinScheduler.java | 46 Filter first = null; 51 if (first == null) { 65 if (first != null ) { 71 return null;
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
PackageReceiver.java | 35 resolver.call(RecentsProvider.buildRecent(), RecentsProvider.METHOD_PURGE, null, null); local 39 if (data != null) { 42 packageName, null); local
|
/frameworks/base/services/java/com/android/server/ |
RecognitionManagerService.java | 54 if (comp == null) { 56 comp = findAvailRecognizer(null, userHandle); 57 if (comp != null) { 67 setCurRecognizer(findAvailRecognizer(null, userHandle), userHandle); 79 mMonitor.register(context, null, UserHandle.ALL, true); 82 new IntentFilter(Intent.ACTION_BOOT_COMPLETED), null, null); 92 ServiceInfo info = null; 93 if (comp != null) { 100 if (info == null) { [all...] |
/frameworks/base/services/java/com/android/server/firewall/ |
CategoryFilter.java | 40 if (categories == null) { 50 String categoryName = parser.getAttributeValue(null, ATTR_NAME); 51 if (categoryName == null) { 53 parser, null);
|
/frameworks/base/test-runner/src/android/test/ |
PackageInfoSources.java | 30 if (classPathSource == null) {
|
/frameworks/base/tests/RenderScriptTests/HelloWorld/src/com/example/android/rs/helloworld/ |
HelloWorldView.java | 37 if (mRS == null) { 57 mRender = null; 58 if (mRS != null) { 59 mRS = null;
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
TextureRenderTarget.java | 42 if (mField != null) { 51 if (mField != null) { 56 if (rs == null) { 57 return null;
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pDnsSdServiceRequest.java | 46 super(WifiP2pServiceInfo.SERVICE_TYPE_BONJOUR, null); 69 * @param serviceType service type. Cannot be null <br> 76 if (serviceType == null) { 77 throw new IllegalArgumentException("service type cannot be null"); 88 * @param instanceName instance name. Cannot be null. <br> 90 * @param serviceType service type. Cannot be null. <br> 98 if (instanceName == null || serviceType == null) { 100 "instance name or service type cannot be null");
|