HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 2926 - 2950 of 19630) sorted by null

<<111112113114115116117118119120>>

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/serialization/
InvalidKeySpecExceptionTest.java 43 String msg = null;
44 Throwable th = null;
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 37 SSLSessionImpl session = new SSLSessionImpl(null, null);
97 SSLSessionImpl session = new SSLSessionImpl(null);
105 SSLSessionImpl session = new SSLSessionImpl(null);
110 session.getValue(null);
117 session.removeValue(null);
124 session.putValue(null, "1");
130 session.putValue("abc", null);
  /external/apache-http/src/org/apache/http/auth/
NTCredentials.java 65 if (usernamePassword == null) {
66 throw new IllegalArgumentException("Username:password string may not be null");
75 this.password = null;
84 null,
87 this.workstation = null;
105 if (userName == null) {
106 throw new IllegalArgumentException("User name may not be null");
110 if (workstation != null) {
113 this.workstation = null;
157 if (o == null) return false
    [all...]
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 57 * <code>null</code> indicates that the default should be used.
86 * <code>null</code> for the default
89 if (target == null) {
90 throw new IllegalArgumentException("Target host may not be null.");
134 if (proxy == null) {
135 throw new IllegalArgumentException("Proxy host may not be null.");
156 if (this.proxyChain == null) {
174 if (proxy == null) {
175 throw new IllegalArgumentException("Proxy host may not be null.");
180 if (this.proxyChain == null) {
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieIdentityComparator.java 54 // do not differentiate empty and null domains
56 if (d1 == null) {
60 if (d2 == null) {
  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 54 if (b == null) {
55 throw new IllegalArgumentException("Source byte array may not be null");
73 if (outstream == null) {
74 throw new IllegalArgumentException("Output stream may not be null");
EntityTemplate.java 54 if (contentproducer == null) {
55 throw new IllegalArgumentException("Content producer may not be null");
73 if (outstream == null) {
74 throw new IllegalArgumentException("Output stream may not be null");
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 89 if (outstream == null) {
90 throw new IllegalArgumentException("Output may not be null");
97 if (instream == null) {
98 throw new IllegalArgumentException("Input may not be null");
105 if (b == null) {
106 throw new IllegalArgumentException("Output may not be null");
113 if (b == null) {
114 throw new IllegalArgumentException("Input may not be null");
121 if (b == null) {
122 throw new IllegalArgumentException("Output may not be null");
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 46 if (cookie == null) {
47 throw new IllegalArgumentException("Cookie may not be null");
49 if (value == null) {
  /external/apache-http/src/org/apache/http/protocol/
DefaultedHttpContext.java 51 if (local == null) {
52 throw new IllegalArgumentException("HTTP context may not be null");
60 if (obj == null) {
RequestUserAgent.java 58 if (request == null) {
59 throw new IllegalArgumentException("HTTP request may not be null");
63 if (useragent != null) {
ResponseServer.java 59 if (response == null) {
60 throw new IllegalArgumentException("HTTP request may not be null");
65 if (s != null) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 40 * String msg = x.createMessage(org.package.MyMessages.KEY_ONE, null);
88 * More sophisticated use of this class would be to pass null
116 * is null then loadResourceBundle(errorResourceClass) needs to be called
132 * @param locale non-null reference to Locale object.
143 * @return non-null reference to Locale object.
174 if (m_resourceBundle == null)
177 if (m_resourceBundle != null)
205 String fmsg = null;
207 String msg = null;
209 if (msgKey != null)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NSInfo.java 46 m_namespace = null;
70 m_namespace = null;
  /external/bison/tests/
bison.in 38 if $PERL --version >/dev/null; then
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAbsentContent.java 11 * a class representing null or absent content.
31 return null;
42 return null;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Null.java 6 * A NULL object.
27 if (o != null)
35 throw new IllegalArgumentException("failed to construct NULL from byte[]: " + e.getMessage());
43 return null;
67 return "NULL";
ASN1TaggedObject.java 17 ASN1Encodable obj = null;
34 if (obj == null || obj instanceof ASN1TaggedObject)
89 ASN1Set s = null;
111 if(obj == null)
113 if (other.obj != null)
138 if (obj != null)
179 if (obj != null)
184 return null;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLNumber.java 47 else if (o != null)
52 return null;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHParameters.java 36 this(p, g, null, 0);
53 this(p, g, q, getDefaultMParam(l), l, null, null);
63 this(p, g, q, m, l, null, null);
167 if (this.getQ() != null)
176 if (pm.getQ() != null)
187 return getP().hashCode() ^ getG().hashCode() ^ (getQ() != null ? getQ().hashCode() : 0);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CRLEntryObject.java 45 this.certificateIssuer = null;
51 * return <code>null</code>, <code>previousCertificateIssuer</code> is
82 return extns != null && !extns.isEmpty();
89 return null;
93 if (ext == null)
108 return null;
112 return null;
118 if (certificateIssuer == null)
120 return null;
128 return null;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 52 private PBEParameterSpec pbeSpec = null;
53 private String pbeAlgorithm = null;
79 return (ivParam != null) ? ivParam.getIV() : null;
96 if (engineParams == null)
98 if (pbeSpec != null)
109 return null;
151 this.pbeSpec = null;
152 this.pbeAlgorithm = null;
154 this.engineParams = null;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CRLEntryObject.java 45 this.certificateIssuer = null;
51 * return <code>null</code>, <code>previousCertificateIssuer</code> is
82 return extns != null && !extns.isEmpty();
89 return null;
93 if (ext == null)
108 return null;
112 return null;
118 if (certificateIssuer == null)
120 return null;
128 return null;
    [all...]
  /external/chromium/sdch/open-vcdiff/packages/
rpm.sh 61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebKitHitTestTest.java 44 if (mWebServer != null) {
51 String url = mWebServer.setResponse("/hittest.html", response, null);
108 (extra == null ? data.hitTestResultExtraData == null :
122 return (href == null ? data.href == null :
124 (anchorText == null ? data.anchorText == null :
126 (imageSrc == null ? data.imgSrc == null
    [all...]

Completed in 1489 milliseconds

<<111112113114115116117118119120>>