HomeSort by relevance Sort by last modified time
    Searched refs:NullPointerException (Results 826 - 850 of 1783) sorted by null

<<31323334353637383940>>

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStore1Test.java 185 fail("NullPointerException must be thrown");
186 } catch (NullPointerException e) {
193 * throws NullPointerException when type is null
202 fail("NullPointerException or NoSuchAlgorithmException must be thrown when type is null");
203 } catch (NullPointerException e) {
282 * throws NullPointerException when type is null
300 fail("NullPointerException or NoSuchAlgorithmException must be thrown when type is null");
301 } catch (NullPointerException e) {
347 * throws NullPointerException when type is null
358 fail("NullPointerException or NoSuchAlgorithmException must be thrown when type is null")
    [all...]
CertificateFactory2Test.java 167 fail("NullPointerException must be thrown");
171 } catch (NullPointerException e) {
173 fail("Unexpected NullPointerException was thrown");
187 * throws NullPointerException when type is null
194 fail("NullPointerException or CertificateException must be thrown when type is null");
196 } catch (NullPointerException e) {
218 * throws NullPointerException when type is null
228 fail("NullPointerException or CertificateException must be thrown when type is null");
230 } catch (NullPointerException e) {
283 * throws NullPointerException when type is null
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
ECFieldFpTest.java 98 * Assertion: NullPointerException if <code>p</code> is null
105 } catch (NullPointerException e) {
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 125 throw new NullPointerException("certificates is null");
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
KeyManagerFactory1Test.java 145 * throws NullPointerException when algorithm is null;
151 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
153 } catch (NullPointerException e) {
195 * throws NullPointerException when algorithm is null;
205 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
207 } catch (NullPointerException e) {
292 * throws NullPointerException when algorithm is null;
302 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
304 } catch (NullPointerException e) {
366 } catch (NullPointerException e)
    [all...]
TrustManagerFactory1Test.java 142 * throws NullPointerException when algorithm is null;
148 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
150 } catch (NullPointerException e) {
193 * throws NullPointerException when algorithm is null;
203 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
205 } catch (NullPointerException e) {
291 * throws NullPointerException when algorithm is null;
301 fail("NoSuchAlgorithmException or NullPointerException should be thrown (algorithm is null");
303 } catch (NullPointerException e) {
365 fail("NullPointerException must be thrown")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OctetString.java 86 throw new NullPointerException("string cannot be null");
DERIA5String.java 90 throw new NullPointerException("string cannot be null");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParametersSpi.java 28 throw new NullPointerException("argument to getParameterSpec must not be null");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParametersSpi.java 29 throw new NullPointerException("argument to getParameterSpec must not be null");
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
PositionList.java 126 * do that, this will throw {@code NullPointerException}.
167 throw new NullPointerException("position == null");
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 71 throw new NullPointerException("file == null");
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstArray.java 36 throw new NullPointerException("list == null");
140 * do that, this will throw {@code NullPointerException}.
  /external/dexmaker/src/dx/java/com/android/dx/util/
LabeledList.java 124 * @throws NullPointerException thrown if there are any {@code null}
134 throw new NullPointerException("null at index " + i);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionAddTester.java 85 } catch (NullPointerException expected) {
MapGetTester.java 59 } catch (NullPointerException tolerated) {
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 75 fail("expected NullPointerException");
76 } catch (NullPointerException expected) {
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterBoxShape.java 51 throw new NullPointerException();
EmitterSphereShape.java 52 throw new NullPointerException();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Node.java 234 * @throws NullPointerException If child is null.
238 throw new NullPointerException();
272 * @throws NullPointerException if child is null.
276 throw new NullPointerException();
305 throw new NullPointerException();
329 throw new NullPointerException();
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
UniqueStack.java 82 * @param object to be added. If it is {@code null} a {@code NullPointerException} will be thrown.
87 throw new NullPointerException();
  /frameworks/base/core/java/android/app/backup/
FileBackupHelperBase.java 73 throw new NullPointerException();
  /frameworks/base/core/java/android/view/textservice/
SentenceSuggestionsInfo.java 48 throw new NullPointerException();
  /frameworks/base/graphics/java/android/graphics/
Picture.java 131 throw new NullPointerException();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterContext.java 45 throw new NullPointerException("Attempting to set null FrameManager!");

Completed in 1569 milliseconds

<<31323334353637383940>>