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

<<141142143144145146147148149150>>

  /external/apache-harmony/support/src/test/java/tests/support/
Support_URLConnector.java 53 if (instance == null) {
54 return null;
61 if (instance == null) {
62 return null;
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLServerSocketTest.java 101 return null;
110 return null;
115 return null;
120 return null;
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
SSLServerSocketFactoryTest.java 46 if (defaultName != null) {
54 if (customServerSocketFactory == null) {
56 if (context != null) {
72 if (customServerSocketFactory != null) {
SSLSocketFactoryTest.java 46 if (defaultName != null) {
54 if (customSocketFactory == null) {
56 if (context != null) {
72 if (customSocketFactory != null) {
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MyKeyManagerFactorySpi.java 42 if (password == null) {
45 if (ks == null) {
53 if (spec == null) {
70 return null;
  /external/apache-http/src/org/apache/http/auth/
UsernamePasswordCredentials.java 61 if (usernamePassword == null) {
62 throw new IllegalArgumentException("Username:password string may not be null");
70 this.password = null;
83 if (userName == null) {
84 throw new IllegalArgumentException("Username may not be null");
109 if (o == null) return false;
  /external/apache-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java 82 if (route == null) {
84 ("HTTP route may not be null.");
94 if (route == null) {
96 ("HTTP route may not be null.");
99 if (max != null) {
107 if (map == null) {
  /external/apache-http/src/org/apache/http/entity/
AbstractHttpEntity.java 79 * <code>null</code> and <code>false</code>, respectively.
91 * @return the Content-Type header, or <code>null</code>
103 * @return the Content-Encoding header, or <code>null</code>
127 * <code>null</code> to unset
139 * <code>null</code> to unset
142 Header h = null;
143 if (ctString != null) {
156 * <code>null</code> to unset
168 * <code>null</code> to unset
171 Header h = null;
    [all...]
StringEntity.java 58 if (s == null) {
59 throw new IllegalArgumentException("Source string may not be null");
61 if (charset == null) {
70 this(s, null);
86 if (outstream == null) {
87 throw new IllegalArgumentException("Output stream may not be null");
  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 87 if (this.params == null) {
101 if (name == null) {
102 throw new IllegalArgumentException("Parameter name may not be null");
104 if (this.params == null) {
105 return null;
111 * Returns authentication realm. The realm may not be null.
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThreadAborter.java 45 if (waitingThread != null)
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicCommentHandler.java 44 if (cookie == null) {
45 throw new IllegalArgumentException("Cookie may not be null");
  /external/apache-http/src/org/apache/http/impl/entity/
EntitySerializer.java 64 if (lenStrategy == null) {
65 throw new IllegalArgumentException("Content length strategy may not be null");
87 if (outbuffer == null) {
88 throw new IllegalArgumentException("Session output buffer may not be null");
90 if (message == null) {
91 throw new IllegalArgumentException("HTTP message may not be null");
93 if (entity == null) {
94 throw new IllegalArgumentException("HTTP entity may not be null");
  /external/apache-http/src/org/apache/http/impl/io/
SocketOutputBuffer.java 56 if (socket == null) {
57 throw new IllegalArgumentException("Socket may not be null");
  /external/apache-http/src/org/apache/http/message/
BasicNameValuePair.java 112 * Default Constructor taking a name and a value. The value may be null.
119 if (name == null) {
120 throw new IllegalArgumentException("Name may not be null");
154 if (this.value != null)
159 if (this.value != null) {
167 if (object == null) return false;
  /external/apache-http/src/org/apache/http/params/
AbstractHttpParams.java 58 if (param == null) {
71 if (param == null) {
84 if (param == null) {
97 if (param == null) {
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 62 if (request == null) {
63 throw new IllegalArgumentException("HTTP request may not be null");
74 if (entity == null) {
89 if (entity.getContentType() != null && !request.containsHeader(
94 if (entity.getContentEncoding() != null && !request.containsHeader(
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSortKey.java 64 * @param transformer non null transformer instance
88 if (null != langValue && m_treatAsNumbers == false)
107 if (null == m_locale)
121 if (null == m_col)
123 m_processor.getMsgMgr().warn(null, XSLTErrorResources.WG_CANNOT_FIND_COLLATOR,
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3SerializerImpl.java 93 return (fNewLine != null) ? fNewLine.toCharArray() : null;
156 fNewLine = (newLine != null) ? new String(newLine) : null;
DOMLocatorImpl.java 62 * or null if there is no URI available.
86 fRelatedNode = null;
87 fUri = null;
97 fRelatedNode = null;
109 fRelatedNode = null;
151 * The URI where the error occured, or null if there is no URI available.
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NameSpace.java 37 public NameSpace m_next = null;
45 public String m_uri; // if null, then Element namespace is empty.
NodeVector.java 91 if ((null != this.m_map) && (this.m_map == clone.m_map))
121 if (null == m_map)
155 if (null == m_map)
191 m_map[m_firstFree] = DTM.NULL;
207 m_map[m_firstFree] = DTM.NULL;
209 return (m_firstFree == 0) ? DTM.NULL : m_map[m_firstFree - 1];
220 m_map[m_firstFree] = DTM.NULL;
228 * @return Node at the top of the stack or null if stack is empty.
232 return ((null != m_map) && (m_firstFree > 0))
233 ? m_map[m_firstFree - 1] : DTM.NULL;
    [all...]
PrefixResolverDefault.java 58 * @return Namespace that prefix resolves to, or null if prefix
73 * @return Namespace that prefix resolves to, or null if prefix
81 String namespace = null;
91 while ((null != parent) && (null == namespace)
132 * @return null
136 return null;
StylesheetPIHandler.java 62 * or null.
71 * or null.
126 return null;
133 * @param data The processing instruction data, or null if
146 String href = null; // CDATA #REQUIRED
147 String type = null; // CDATA #REQUIRED
148 String title = null; // CDATA #IMPLIED
149 String media = null; // CDATA #IMPLIED
150 String charset = null; // CDATA #IMPLIED
154 Source source = null;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AxesWalker.java 48 * @param locPathIterator non-null reference to the parent iterator.
105 * @param cloneOwner non-null reference to the cloned location path
107 * @param cloneList non-null vector of sources in odd elements, and the
110 * @return non-null clone, which may be a new clone, or may be a clone
117 if(null != clone)
121 if(null != cloneList)
130 if(null != m_nextWalker)
135 if(null != cloneList)
137 if(null != m_prevWalker)
142 if(null != m_nextWalker
    [all...]

Completed in 1048 milliseconds

<<141142143144145146147148149150>>