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

<<41424344454647484950>>

  /external/apache-http/src/org/apache/http/impl/
SocketHttpClientConnection.java 61 private Socket socket = null;
96 if (socket == null) {
97 throw new IllegalArgumentException("Socket may not be null");
99 if (params == null) {
100 throw new IllegalArgumentException("HTTP parameters may not be null");
123 if (this.socket != null) {
126 return null;
131 if (this.socket != null) {
139 if (this.socket != null) {
142 return null;
    [all...]
SocketHttpServerConnection.java 61 private Socket socket = null;
94 if (socket == null) {
95 throw new IllegalArgumentException("Socket may not be null");
97 if (params == null) {
98 throw new IllegalArgumentException("HTTP parameters may not be null");
121 if (this.socket != null) {
124 return null;
129 if (this.socket != null) {
137 if (this.socket != null) {
140 return null;
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicExpiresHandler.java 43 if (datepatterns == null) {
44 throw new IllegalArgumentException("Array of date patterns may not be null");
51 if (cookie == null) {
52 throw new IllegalArgumentException("Cookie may not be null");
54 if (value == null) {
BasicSecureHandler.java 46 if (cookie == null) {
47 throw new IllegalArgumentException("Cookie may not be null");
54 if (cookie == null) {
55 throw new IllegalArgumentException("Cookie may not be null");
57 if (origin == null) {
58 throw new IllegalArgumentException("Cookie origin may not be null");
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpProcessor.java 58 protected List requestInterceptors = null;
59 protected List responseInterceptors = null;
65 if (itcp == null) {
68 if (this.requestInterceptors == null) {
80 if (itcp == null) {
84 if (this.requestInterceptors == null) {
99 if (itcp == null) {
103 if (this.responseInterceptors == null) {
115 if (this.requestInterceptors == null) {
129 if (this.responseInterceptors == null) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 48 * @param transformer Non-null transformer instance
59 if (null == transformer)
62 if (((null == ns) || (ns.length() == 0))
68 if (null != transformer.getOutputPropertyNoDefault(OutputKeys.METHOD))
86 Serializer oldSerializer = null;
88 if (null != oldSerializer)
95 if (null != writer)
101 if (null != os)
126 * @return The value of the property, or null if not found.
155 if (((null == ns) || (ns.length() == 0)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 114 private String m_scheme = null;
116 /** If specified, stores the userinfo for this URI; otherwise null.
118 private String m_userinfo = null;
120 /** If specified, stores the host for this URI; otherwise null.
122 private String m_host = null;
128 /** If specified, stores the path for this URI; otherwise null.
130 private String m_path = null;
134 * null.
137 private String m_queryString = null;
139 /** If specified, stores the fragment for this URI; otherwise null
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralSubtree.java 100 * If minimum is <code>null</code>, zero is assumed, if
101 * maximum is <code>null</code>, maximum is absent.
117 if (maximum != null)
121 if (minimum == null)
123 this.minimum = null;
133 this(base, null, null);
146 if (obj == null)
148 return null;
166 if (minimum == null)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHKeyParameters.java 33 if (params == null)
35 return dhKey.getParameters() == null;
47 if (params != null)
  /external/chromium/chrome/browser/ui/cocoa/
install.sh 84 chgrp -Rh admin "${DEST}" >& /dev/null ; then
88 chown -Rh root:wheel "${DEST}" >& /dev/null
91 chmod -R "${CHMOD_MODE}" "${DEST}" >& /dev/null
96 find "${DEST}" -type l -exec chmod -h "${CHMOD_MODE}" {} + >& /dev/null
116 xattr -d -r "${QUARANTINE_ATTR}" "${DEST}" >& /dev/null
119 find "${DEST}" -exec xattr -d "${QUARANTINE_ATTR}" {} + >& /dev/null
  /external/chromium_org/chrome/browser/mac/
install.sh 87 chgrp -Rh admin "${DEST}" >& /dev/null ; then
91 chown -Rh root:wheel "${DEST}" >& /dev/null
94 chmod -R "${CHMOD_MODE}" "${DEST}" >& /dev/null
99 find "${DEST}" -type l -exec chmod -h "${CHMOD_MODE}" {} + >& /dev/null
119 xattr -d -r "${QUARANTINE_ATTR}" "${DEST}" >& /dev/null
122 find "${DEST}" -exec xattr -d "${QUARANTINE_ATTR}" {} + >& /dev/null
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewStatics.java 19 * @return the address, or if no address is found, return null.
22 if (addr == null) {
23 throw new NullPointerException("addr is null");
26 return result == null || result.isEmpty() ? null : result;
  /external/emma/core/java12/com/vladium/util/
IProperties.java 52 * @param prefix [may not be null]
67 * @param mapper [may be null]
68 * @return an empty property set [never null]
72 return new PropertiesImpl (null, mapper);
81 * @param properties [may not be null]
82 * @param mapper [may be null]
83 * @return a property set based on 'properties' [never null]
107 * @param overrides [may be null]
108 * @param base [may be null]
109 * @return [never null; an empty property set with a null mapper is create
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 46 private String nameFormat = null;
47 private Boolean daemon = null;
48 private Integer priority = null;
49 private UncaughtExceptionHandler uncaughtExceptionHandler = null;
50 private ThreadFactory backingThreadFactory = null;
68 String.format(nameFormat, 0); // fail fast if the format is bad or null
153 (builder.backingThreadFactory != null)
156 final AtomicLong count = (nameFormat != null) ? new AtomicLong(0) : null;
160 if (nameFormat != null) {
    [all...]
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 24 public SymbolTable() { this(null); }
35 if (found == null && parent != null)
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderVariable.java 50 protected String name = null;
59 oc.write(name, "name", null);
64 name = ic.readString("name", null);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MediaBox.java 39 return null;
48 return null;
57 return null;
  /external/nist-sip/java/gov/nist/core/
Debug.java 47 if ((parserDebug || debug )&& stackLogger != null )
51 if ((parserDebug || debug ) && stackLogger != null) {
57 if ((parserDebug || debug) && stackLogger != null ) {
Host.java 95 if (hostName == null)
96 throw new IllegalArgumentException("null host name");
140 if ( obj == null ) return false;
169 String rawIpAddress = null;
170 if (hostname == null)
171 return null;
174 if (inetAddress == null)
208 //set inetAddress to null so that it would be reinited
210 inetAddress = null;
217 // Null check bug fix sent in by jpaulo@ipb.p
    [all...]
  /external/proguard/src/proguard/classfile/
LibraryClass.java 142 if (subClasses == null)
177 return superClass != null &&
189 if (superClass != null &&
195 if (interfaceClasses != null)
200 if (interfaceClass != null &&
217 if (field != null &&
218 (name == null || field.getName(this).equals(name)) &&
219 (descriptor == null || field.getDescriptor(this).equals(descriptor)))
225 return null;
234 if (method != null &
    [all...]
  /external/proguard/src/proguard/io/
ParentDataEntryWriter.java 52 return getOutputStream(dataEntry) != null;
58 return getOutputStream(dataEntry, null);
73 dataEntryWriter = null;
  /external/proguard/src/proguard/optimize/peephole/
ClassFinalizer.java 46 this(null);
73 programClass.subClasses == null)
78 if (extraClassVisitor != null)
  /external/proguard/src/proguard/util/
ListMatcher.java 39 this(matchers, null);
60 return negate == null ||
65 return negate != null &&
  /frameworks/base/core/java/android/app/
QueuedWork.java 41 private static ExecutorService sSingleThreadExecutor = null; // lazy, guarded by class
49 if (sSingleThreadExecutor == null) {
87 while ((toFinish = sPendingWorkFinishers.poll()) != null) {
  /frameworks/base/media/java/android/media/
SubtitleController.java 135 if (mSelectedTrack == null) {
136 return null;
153 if (track != null && !mTracks.contains(track)) {
167 if (mSelectedTrack != null) {
169 mSelectedTrack.setTimeProvider(null);
173 if (mAnchor != null) {
177 if (mSelectedTrack != null) {
182 if (mListener != null) {
188 * @return the default subtitle track based on system preferences, or null,
203 * current language, return null
    [all...]

Completed in 1387 milliseconds

<<41424344454647484950>>