HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 876 - 900 of 19200) sorted by null

<<31323334353637383940>>

  /external/apache-http/src/org/apache/http/client/params/
HttpClientParams.java 51 if (params == null) {
52 throw new IllegalArgumentException("HTTP parameters may not be null");
59 if (params == null) {
60 throw new IllegalArgumentException("HTTP parameters may not be null");
67 if (params == null) {
68 throw new IllegalArgumentException("HTTP parameters may not be null");
75 if (params == null) {
76 throw new IllegalArgumentException("HTTP parameters may not be null");
83 if (params == null) {
84 throw new IllegalArgumentException("HTTP parameters may not be null");
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerParams.java 63 if (params == null) {
64 throw new IllegalArgumentException("HTTP parameters may not be null");
77 if (params == null) {
78 throw new IllegalArgumentException("HTTP parameters may not be null");
103 if (params == null) {
105 ("HTTP parameters must not be null.");
120 if (params == null) {
122 ("HTTP parameters must not be null.");
125 if (connPerRoute == null) {
143 if (params == null) {
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 73 if (name == null) {
74 throw new IllegalArgumentException("Name may not be null");
76 if (factory == null) {
77 throw new IllegalArgumentException("Cookie spec factory may not be null");
88 if (id == null) {
89 throw new IllegalArgumentException("Id may not be null");
108 if (name == null) {
109 throw new IllegalArgumentException("Name may not be null");
112 if (factory != null) {
130 return getCookieSpec(name, null);
    [all...]
  /external/apache-http/src/org/apache/http/entity/
BufferedHttpEntity.java 64 this.buffer = null;
69 if (this.buffer != null) {
77 if (this.buffer != null) {
90 return (buffer == null) && wrappedEntity.isChunked();
104 if (outstream == null) {
105 throw new IllegalArgumentException("Output stream may not be null");
107 if (this.buffer != null) {
117 return (buffer == null) && wrappedEntity.isStreaming();
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 42 private transient Vector m_key_tables = null;
62 XNodeSet nl = null;
65 if ((null != template)
66 && null != template.getStylesheetRoot().getKeysComposed())
70 if (null == m_key_tables)
86 if (nl != null)
96 if ((null == nl) &&!foundDoc /* && m_needToBuildKeysTable */)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorImpl.java 43 private String fMessage = null;
49 private Exception fException = null;
169 fException = null;
170 fMessage = null;
171 fType = null;
172 fRelatedData = null;
173 fLocation = null;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
Clipboard.java 64 * a string is possible; otherwise, <code>null</code>
70 if (clip != null && clip.getItemCount() > 0) {
72 if (sequence != null) {
76 return null;
82 * @return a Java string with the html text if any, or null if there is no html
89 if (clip != null && clip.getItemCount() > 0) {
93 return null;
107 mClipboardManager.setPrimaryClip(ClipData.newPlainText(null, text));
122 ClipData.newHtmlText(null, text, html));
  /external/guava/guava/src/com/google/common/primitives/
AndroidInteger.java 49 return null;
53 return null;
66 return null;
69 return null;
73 return null;
80 return null;
85 return null;
  /external/guava/guava-tests/test/com/google/common/collect/
BstPathTest.java 36 SimpleNode root = new SimpleNode('a', null, null);
37 SimplePath rootPath = new SimplePath(root, null);
47 SimpleNode node = new SimpleNode('a', null, null);
48 SimpleNode root = new SimpleNode('b', node, null);
49 SimplePath rootPath = new SimplePath(root, null);
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 17 this.rs = null;
18 this.batch = null;
87 SQLite.TableResult tr = null;
88 if (rs != null) {
90 rs = null;
93 if (conn == null || conn.db == null) {
101 conn.db.exec("BEGIN TRANSACTION", null);
104 if (args == null) {
106 conn.db.exec(sql, null);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 120 return scales == null ? null : scales.toObjectArray();
171 if (scales != null) {
192 if (affectedBones != null && !affectedBones.get(targetBoneIndex)) {
209 if (scales != null) {
215 if (scales != null) {
233 if (scales != null) {
238 if (scales != null) {
247 target.blendAnimTransforms(tempV, tempQ, scales != null ? tempS : null, weight)
    [all...]
  /external/libvorbis/
autogen.sh 17 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
40 if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then
52 ($am --version < /dev/null > /dev/null 2>&1) || continue
53 ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
66 ($ac --version < /dev/null > /dev/null 2>&1) || continue
67 ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
110 if (password != null)
121 this.password = null;
156 if (user != null
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 45 this.requestToken = null;
46 this.accessToken = null;
47 this.tokenSecret = null;
66 * the HTTP request method. If this is null, use the default
67 * method; that is getProperty("httpMethod") or (if that's null)
68 * consumer.getProperty("httpMethod") or (if that's null)
74 if (method == null) {
76 if (method == null) {
78 if (method == null) {
86 if (accepted != null) {
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
AbstractHttpInputStream.java 47 OutputStream cacheBody = cacheRequest != null ? cacheRequest.getBody() : null;
49 // some apps return a null body; for compatibility we treat that like a null cache request
50 if (cacheBody == null) {
51 cacheRequest = null;
73 if (cacheBody != null) {
83 if (cacheRequest != null) {
102 if (cacheRequest != null) {
  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 68 this(previousUsageMark, reason, cost, clazz, null);
153 if (clazz != null &&
154 member == null)
166 if (clazz != null &&
167 member != null)
180 (clazz != null ? clazz.getName() : "(none)") + ": " +
181 (member != null ? member.getName(clazz) : "(none)");
  /external/replicaisland/src/com/replica/replicaisland/
PhasedObjectManager.java 74 BaseObject result = null;
90 if (object1 != null && object2 != null) {
92 } else if (object1 == null && object2 != null) {
94 } else if (object2 == null && object1 != null) {
  /external/smack/src/org/xbill/DNS/
Address.java 39 return null;
42 return null;
48 return null;
52 return null;
55 return null;
60 return null;
64 return null;
67 return null;
89 return null;
99 return null;
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
dump.java 52 if (dumpFileName != null) {
60 if (dumpFileName != null) {
62 FileWriter writer = null;
72 if (writer != null) {
84 if (outputDexFileName != null) {
90 FileOutputStream fileOutputStream = null;
98 if (fileOutputStream != null) {
  /frameworks/base/core/java/android/content/
ContentProviderResult.java 32 if (uri == null) throw new IllegalArgumentException("uri must not be null");
34 this.count = null;
39 this.uri = null;
46 uri = null;
48 count = null;
54 if (uri == null) {
79 if (uri != null) {
  /frameworks/base/core/java/android/database/
ContentObserver.java 35 * @param handler The handler to run {@link #onChange} on, or null if none.
48 if (mTransport == null) {
64 if (oldTransport != null) {
66 mTransport = null;
114 * onChange(selfChange, null);
126 * @param uri The Uri of the changed content, or null if unknown.
146 dispatchChange(selfChange, null);
159 * @param uri The Uri of the changed content, or null if unknown.
162 if (mHandler == null) {
194 if (contentObserver != null) {
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 31 super(db, sql, bindArgs, null);
44 getSession().execute(getSql(), getBindArgs(), getConnectionFlags(), null); local
65 getSql(), getBindArgs(), getConnectionFlags(), null);
87 getSql(), getBindArgs(), getConnectionFlags(), null);
108 getSql(), getBindArgs(), getConnectionFlags(), null);
129 getSql(), getBindArgs(), getConnectionFlags(), null);
141 * @return A read-only file descriptor for a copy of the blob value, or {@code null}
142 * if the value is null or could not be read for some reason.
150 getSql(), getBindArgs(), getConnectionFlags(), null);
  /frameworks/base/core/java/android/os/
Messenger.java 68 if (otherObj == null) {
95 return target != null ? new Messenger(target) : null;
104 * Convenience function for writing either a Messenger or null pointer to
108 * @param messenger The Messenger to write, or null.
113 out.writeStrongBinder(messenger != null ? messenger.mTarget.asBinder()
114 : null);
118 * Convenience function for reading either a Messenger or null pointer from
124 * @return Returns the Messenger read from the Parcel, or null if null ha
    [all...]
  /frameworks/base/core/java/android/webkit/
UrlInterceptRegistry.java 42 if(mHandlerList == null)
115 * UrlInterceptHandler interested, or null if none are.
127 return null;
133 if (result != null) {
137 return null;
142 * UrlInterceptHandler interested, or null if none are or if
155 return null;
161 if (data != null) {
165 return null;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeBuffer.java 45 NativeBuffer result = null;
72 if (mAttachedFrame != null) {
83 if (mAttachedFrame != null) {
84 doDealloc = (mAttachedFrame.release() == null);
93 return null;
100 return (mAttachedFrame != null) ? mAttachedFrame.isReadOnly() : false;
115 || (mAttachedFrame != null && !mAttachedFrame.hasNativeAllocation())) {
116 throw new NullPointerException("Attempting to read from null data frame!");

Completed in 832 milliseconds

<<31323334353637383940>>