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

<<121122123124125126127128129130>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
DirectLongBufferTest.java 30 buf = null;
31 baseBuf = null;
DirectShortBufferTest.java 29 buf = null;
30 baseBuf = null;
HeapByteBufferTest.java 32 buf = null;
33 baseBuf = null;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockServerSocketChannel.java 33 return null;
37 return null;
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
ASCCharsetDecoderTest.java 47 return null;
65 // return null;
69 return null;
GBCharsetDecoderTest.java 49 return null;
61 return null;
  /libcore/libart/src/main/java/java/lang/
DexCache.java 84 if (result == null) {
87 if (result == null) {
  /libcore/libdvm/src/main/java/dalvik/system/
VMStack.java 29 * @return the requested class loader, or {@code null} if this is the
37 * @return the requested class, or {@code null}.
70 if (loader != null && loader != bootstrap && loader != system) {
74 return null;
82 * @return an array of stack trace elements, or null if the thread
95 * desired. Unused elements will be filled with null values.
  /libcore/luni/src/main/java/java/io/
File.java 121 * if {@code name} is {@code null}.
124 this(dir == null ? null : dir.getPath(), name);
146 * if {@code name == null}.
149 if (name == null) {
150 throw new NullPointerException("name == null");
152 if (dirPath == null || dirPath.isEmpty()) {
228 if (rawPath == null || rawPath.isEmpty()) {
231 if (uri.getRawAuthority() != null) {
234 if (uri.getRawQuery() != null) {
    [all...]
  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 71 while ((reference = referenceQueue.poll()) != null) {
121 ProcessReference processReference = null;
126 if (processReference != null) {
128 if (process != null) {
170 if (taintedCommand == null) {
171 throw new NullPointerException("taintedCommand == null");
179 String[] environment = taintedEnvironment != null ? taintedEnvironment.clone() : null;
181 // Check we're not passing null Strings to the native exec.
183 if (command[i] == null) {
    [all...]
  /libcore/luni/src/main/java/java/security/
AlgorithmParameters.java 90 * if {@code algorithm} is {@code null}.
94 if (algorithm == null) {
95 throw new NullPointerException("algorithm == null");
97 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
115 * @throws IllegalArgumentException if {@code provider == null || provider.isEmpty()}
117 * if {@code algorithm} is {@code null}.
122 if (provider == null || provider.isEmpty()) {
123 throw new IllegalArgumentException("provider == null || provider.isEmpty()");
126 if (p == null) {
145 * if {@code algorithm} is {@code null}
    [all...]
GuardedObject.java 43 * maybe {@code null}.
60 if (guard != null) {
71 if (guard != null) {
KeyPairGenerator.java 78 * if {@code algorithm} is {@code null}
82 if (algorithm == null) {
83 throw new NullPointerException("algorithm == null");
85 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
110 * if {@code algorithm} is {@code null}
111 * @throws IllegalArgumentException if {@code provider == null || provider.isEmpty()}
115 if (provider == null || provider.isEmpty()) {
119 if (impProvider == null) {
137 * if {@code algorithm} is {@code null}
138 * @throws IllegalArgumentException if {@code provider == null}
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CollectionCertStoreParameters.java 58 * if {@code collection is null}.
61 if (collection == null) {
62 throw new NullPointerException("collection == null");
77 return null;
  /libcore/luni/src/main/java/java/security/spec/
ECFieldF2m.java 57 this.rp = null;
58 this.ks = null;
83 if (this.rp == null) {
84 throw new NullPointerException("rp == null");
130 // NPE as specified if ks is null
134 // no need to check for null already
187 if (this.rp == null) {
188 if (o.rp == null) {
228 * {@code null} for a normal basis.
233 // was: return ks == null ? null : (int[])ks.clone()
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 45 * @throws NullPointerException if pool is null
94 * to an unrecoverable error, or {@code null} if completed normally
105 Throwable exception = null;
115 if (exception == null)
  /libcore/luni/src/main/java/java/util/logging/
ErrorManager.java 82 * the error message, which may be {@code null}.
85 * {@code null}.
98 if (message != null) {
101 if (exception != null) {
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 23 Node result = null;
28 return null;
  /libcore/luni/src/main/java/javax/crypto/spec/
PSource.java 39 * if pSrcName is null.
42 if (pSrcName == null) {
43 throw new NullPointerException("pSrcName == null");
83 * if <code>p</code> is null.
87 if (p == null) {
88 throw new NullPointerException("p == null");
  /libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactory.java 56 return (algorithm != null ? algorithm : DEFAULT_PROPERTY);
69 * if {@code algorithm} is {@code null} (instead of
74 if (algorithm == null) {
75 throw new NullPointerException("algorithm == null");
77 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
97 * if {@code algorithm} is {@code null} (instead of
102 if ((provider == null) || (provider.length() == 0)) {
103 throw new IllegalArgumentException("Provider is null or empty");
106 if (impProvider == null) {
125 * if {@code algorithm} is {@code null} (instead o
    [all...]
KeyStoreBuilderParameters.java 44 if (builder == null) {
45 throw new NullPointerException("builder == null");
60 if (parameters == null) {
61 throw new NullPointerException("parameters == null");
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 55 debug = val != null && (! "false".equals(val));
92 * If this parameter is null, the default system class loader
123 * @return <code>null</code> if the callee fails to create one.
126 * If the parameter is null.
129 if (uri == null) {
130 throw new NullPointerException("uri == null");
134 if (f != null) {
156 if (r != null && r.length() > 0) {
159 if(xpf!=null) return xpf;
171 String factoryClassName = null ;
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
FtpHandler.java 50 * if any argument is null or the type of proxy is wrong.
56 if (url == null || proxy == null) {
57 throw new IllegalArgumentException("url == null || proxy == null");
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtensionValue.java 45 if (encoding == null) {
48 if (encoding == null) {
49 sb.append("NULL\n");
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 62 data = null;
104 * available, or null if the index is out of range.
112 return null;
122 * none is available, or null if the index if out of range.
130 return null;
140 * none is available, or null if the index is out of bounds.
148 return null;
157 * @return The attribute's type, "CDATA" if the type is unknown, or null
166 return null;
175 * @return The attribute's value or null if the index is out of bounds
    [all...]

Completed in 816 milliseconds

<<121122123124125126127128129130>>