/external/android-mock/tests/com/google/android/testing/mocking/ |
AndroidMockTest.java | 234 SimpleTimeZone mockTimeZone = AndroidMock.createMock(SimpleTimeZone.class, 0, null); 235 fail("Excepted an IllegalArgumentException for indeterminate null constructor parameters"); 295 SimpleTimeZone mockTimeZone = AndroidMock.createNiceMock(SimpleTimeZone.class, 0, null); 296 fail("Excepted an IllegalArgumentException for indeterminate null constructor parameters"); 387 SimpleTimeZone mockTimeZone = AndroidMock.createStrictMock(SimpleTimeZone.class, 0, null); 388 fail("Excepted an IllegalArgumentException for indeterminate null constructor parameters"); 556 AndroidMock.expect(null); 569 AndroidMock.expect(mockMap.get(AndroidMock.anyBoolean())).andReturn(null); 575 AndroidMock.expect(mockMap.get(AndroidMock.anyByte())).andReturn(null); 581 AndroidMock.expect(mockMap.get(AndroidMock.anyChar())).andReturn(null); [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
MyCertificateFactorySpi.java | 70 return null; 78 return null; 85 return null; 93 return null; 118 return null; 123 if (certificates == null) { 125 throw new NullPointerException("certificates is null"); 128 return null;
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
PlainSocketFactory.java | 75 this(null); 89 if (host == null) { 90 throw new IllegalArgumentException("Target host may not be null."); 92 if (params == null) { 93 throw new IllegalArgumentException("Parameters may not be null."); 96 if (sock == null) 99 if ((localAddress != null) || (localPort > 0)) { 113 if (this.nameResolver != null) { 142 if (sock == null) { 143 throw new IllegalArgumentException("Socket may not be null.") [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XStringForChars.java | 40 protected String m_strCache = null; 45 * @param val FastStringBuffer object this will wrap, must be non-null. 54 if(null == val) 56 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_FASTSTRINGBUFFER_CANNOT_BE_NULL, null)); //"The FastStringBuffer argument can not be null!!"); 69 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING, null)); //"XStringForChars can not take a string for an argument!"); 75 * @return The string this wraps or the empty string if null 79 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS, null)); //"fsb() not supported for XStringForChars!"); 85 * @return The string this wraps or the empty string if null 100 return (null != m_strCache) [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerInformationStore.java | 26 if (list == null) 40 * passed in selector. Null if there are no matches. 43 * @return a single SignerInformation object. Null if none matches. 50 return list.size() == 0 ? null : (SignerInformation) list.iterator().next(); 82 if (selector.getIssuer() != null && selector.getSubjectKeyIdentifier() != null) 88 if (match1 != null) 95 if (match2 != null) 106 return list == null ? new ArrayList() : new ArrayList(list);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
DHParameter.java | 32 this.l = null; 44 if (obj != null) 49 return null; 66 l = null; 82 if (l == null) 84 return null; 97 if (this.getL() != null)
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
V1TBSCertificateGenerator.java | 114 if ((serialNumber == null) || (signature == null) 115 || (issuer == null) || (startDate == null) || (endDate == null) 116 || (subject == null) || (subjectPublicKeyInfo == null))
|
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
DefaultVideoPosterRequestHandler.java | 40 if (defaultVideoPoster == null) { 52 Log.e(TAG, null, e); 67 Log.e(TAG, null, e); 85 * the default video poster URL, otherwise null is returned. 88 if (!mDefaultVideoPosterURL.equals(url)) return null; 91 return new InterceptedRequestData("image/png", null, getInputStream(mContentClient)); 93 Log.e(TAG, null, e); 94 return null;
|
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/ |
Clipboard.java | 65 * a string is possible; otherwise, <code>null</code> 71 if (clip != null && clip.getItemCount() > 0) { 73 if (sequence != null) { 77 return null; 83 * @return a Java string with the html text if any, or null if there is no html 90 if (clip != null && clip.getItemCount() > 0) { 94 return null; 120 setText(null, text); 148 setHTMLText(html, null, text);
|
/external/emma/core/java12/com/vladium/logging/ |
Logger.java | 44 * not null; 47 * are not null; 48 * <LI> caller-supplied message is logged, if not null; 49 * <LI> caller-supplied Throwable is dumped starting with a new line, if not null. 73 if ((out == null) || out.checkError ()) 74 throw new IllegalArgumentException ("null or corrupt input: out"); 92 if (base == null) 102 final PrintWriter _out = (out != null) && ! out.checkError () 108 // final String _prefix = prefix != null 112 final Set _classMask = classMask != null [all...] |
/external/emma/core/java12/com/vladium/util/ |
ResourceLoader.java | 50 if (loader != null) 64 if (loader != null) 79 if (loader != null) 89 return Class.forName (name, false, loader != null ? loader : ClassLoader.getSystemClassLoader ()); 94 if (loader != null) 102 if (loader != null) 111 if (loader != null)
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
DesktopAssetManager.java | 67 private AssetEventListener eventListener = null;
74 this(null);
83 if (configFile != null){
84 InputStream stream = null;
92 if (stream != null)
103 if(classLoaders == null)
111 if(classLoaders != null) synchronized(classLoaders) {
133 Class<? extends AssetLoader> clazz = null;
141 if (clazz != null){
155 Class<? extends AssetLocator> clazz = null;
[all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/ |
SAXUtil.java | 46 * Parses an integer from a string, if the string is null returns 55 if (i == null) 67 if (i == null) 79 if (f == null) 91 if (f == null) 103 if (bool == null || bool.equals("")) 113 if (str == null) 120 if (str == null)
|
/external/jsilver/src/org/clearsilver/jni/ |
JniCs.java | 40 this.globalHDF = null; 49 if (global != null) { 90 _parseFile(csptr, filename, fileLoader != null); 104 return _render(csptr, fileLoader != null); 114 if (aFileLoader == null) { 118 if (result == null) { 119 throw new NullPointerException("CSFileLoader.load() returned null"); 126 private CSFileLoader fileLoader = null;
|
/external/mockito/src/org/mockito/internal/invocation/ |
SerializableMethod.java | 78 if (obj == null)
83 if (declaringClass == null) {
84 if (other.declaringClass != null)
88 if (methodName == null) {
89 if (other.methodName != null)
95 if (returnType == null) {
96 if (other.returnType != null)
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/ |
BaseLocationBox.java | 86 if (o == null || getClass() != o.getClass()) return false; 90 if (baseLocation != null ? !baseLocation.equals(that.baseLocation) : that.baseLocation != null) return false; 91 if (purchaseLocation != null ? !purchaseLocation.equals(that.purchaseLocation) : that.purchaseLocation != null) 99 int result = baseLocation != null ? baseLocation.hashCode() : 0; 100 result = 31 * result + (purchaseLocation != null ? purchaseLocation.hashCode() : 0);
|
/external/oauth/core/src/main/java/net/oauth/ |
OAuthProblemException.java | 44 if (problem != null) { 54 if (msg != null) 57 if (msg != null) 60 if (response != null) { 75 if (response != null) { 78 return null; 95 if (code == null) {
|
/external/openssh/regress/ |
agent-pkcs11.sh | 24 eval `${SSHAGENT} -s` > /dev/null 31 openssl genrsa -out $OBJ/pkcs11.key 2048 > /dev/null 2>&1 34 -out $OBJ/pkcs11.crt -text -subj '/CN=pkcs11 test' > /dev/null 40 echo ${TEST_SSH_PIN} | notty ${SSHADD} -s ${TEST_SSH_PKCS11} > /dev/null 2>&1 47 ${SSHADD} -l > /dev/null 2>&1 61 echo ${TEST_SSH_PIN} | notty ${SSHADD} -e ${TEST_SSH_PKCS11} > /dev/null 2>&1 68 ${SSHAGENT} -k > /dev/null
|
/external/proguard/src/proguard/ |
DataEntryReaderFactory.java | 70 (filter != null || 71 jarFilter != null || 72 warFilter != null || 73 earFilter != null || 74 zipFilter != null ? " (filtered)" : "")); 77 if (filter != null) 126 if (jarFilter != null)
|
/external/proguard/src/proguard/classfile/editor/ |
AnnotationAdder.java | 59 this.annotationsAttributeEditor = null; 60 this.parameterAnnotationsAttributeEditor = null; 74 this.targetAnnotationElementValue = null; 76 this.parameterAnnotationsAttributeEditor = null; 90 this.targetAnnotationElementValue = null; 91 this.annotationsAttributeEditor = null; 119 if (targetAnnotationElementValue != null)
|
/external/proguard/src/proguard/gui/splash/ |
BufferedSprite.java | 67 null, 113 if (backgroundColor != null) 117 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null)); 123 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null)); 143 null);
|
/external/proguard/src/proguard/optimize/evaluation/ |
LoadingInvocationUnit.java | 79 if (referencedMember != null) 83 if (value != null && 105 if (referencedMember != null) 109 if (value != null && 133 if (value != null && 158 if (referencedMember != null) 162 if (value != null &&
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowOverlayItem.java | 41 if (o == null) return false; 43 if (o == null) return false; 51 && geoPoint == null ? that.geoPoint == null : 58 result = title == null ? result : 19 * result + title.hashCode(); 59 result = snippet == null ? result : 19 * result + snippet.hashCode(); 60 result = geoPoint == null ? result : 19 * result + geoPoint.hashCode();
|
/external/smack/src/org/jivesoftware/smack/proxy/ |
ProxyInfo.java | 75 return new ProxyInfo(ProxyType.NONE, null, 0, null, null); 80 return new ProxyInfo(ProxyType.NONE, null, 0, null, null); 128 return null;
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/provider/ |
BytestreamsProvider.java | 37 String JID = null;
38 String host = null;
39 String port = null;
61 if (port == null) {
67 JID = null;
68 host = null;
69 port = null;
|