HomeSort by relevance Sort by last modified time
    Searched refs:NullPointerException (Results 51 - 75 of 2392) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
UndoOwner.java 37 throw new NullPointerException("tag can't be null");
40 throw new NullPointerException("manager can't be null");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ExceptionInInitializerErrorTest.java 45 NullPointerException npe = new NullPointerException("fixture");
Character_SubsetTest.java 33 fail("No expected NullPointerException");
34 } catch (NullPointerException e) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 79 throw new NullPointerException("uri == null");
82 throw new NullPointerException("localName == null");
93 throw new NullPointerException("qName == null");
104 throw new NullPointerException("uri == null");
107 throw new NullPointerException("localName == null");
118 throw new NullPointerException("uri == null");
121 throw new NullPointerException("localName == null");
132 throw new NullPointerException("qName == null");
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 53 } catch (NullPointerException expected) {
61 } catch (NullPointerException expected) {
82 } catch (NullPointerException expected) {
87 } catch (NullPointerException expected) {
92 } catch (NullPointerException expected) {
125 } catch (NullPointerException expected) {
131 } catch (NullPointerException expected) {
137 } catch (NullPointerException expected) {
  /libcore/luni/src/test/java/libcore/java/util/
ArraysTest.java 41 } catch (NullPointerException expected) {
47 } catch (NullPointerException expected) {
68 } catch (NullPointerException expected) {
74 } catch (NullPointerException expected) {
95 } catch (NullPointerException expected) {
101 } catch (NullPointerException expected) {
122 } catch (NullPointerException expected) {
128 } catch (NullPointerException expected) {
149 } catch (NullPointerException expected) {
155 } catch (NullPointerException expected)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/function/
BinaryOperatorTest.java 35 } catch (NullPointerException expected) {}
47 } catch (NullPointerException expected) {}
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduBody.java 37 * @throws NullPointerException when part is null
41 throw new NullPointerException();
52 * @throws NullPointerException when part is null
56 throw new NullPointerException();
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 102 throw new NullPointerException("HDF is closed.");
109 throw new NullPointerException("HDF is closed.");
113 throw new NullPointerException("No fileLoader specified.");
117 throw new NullPointerException("CSFileLoader.load() returned null");
146 throw new NullPointerException("HDF is closed.");
156 throw new NullPointerException("HDF is closed.");
165 throw new NullPointerException("HDF is closed.");
175 throw new NullPointerException("HDF is closed.");
184 throw new NullPointerException("HDF is closed.");
192 throw new NullPointerException("HDF is closed.")
    [all...]
  /art/test/128-reg-spilling-on-implicit-nullcheck/src/
Main.java 30 catch (NullPointerException wpw) {
  /art/test/587-inline-class-error/src/
Main.java 32 if (!(e.getCause() instanceof NullPointerException)) {
33 throw new Error("Expected NullPointerException, got " + e.getCause());
  /cts/tests/app/app/src/android/app/stubs/
ActivityManagerStubCrashActivity.java 35 throw new NullPointerException("Expected NPE.");
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
Preconditions.java 83 * @throws NullPointerException if arg was {@code null}
87 throw new NullPointerException("Argument '" + argName + "' must not be null");
103 * @throws NullPointerException if arg was {@code null}
136 * @throws NullPointerException if the {@code value} or any of its elements were {@code null}
141 throw new NullPointerException(valueName + " must not be null");
147 throw new NullPointerException(
164 * @throws NullPointerException if the {@code value} was {@code null}
170 throw new NullPointerException(valueName + " must not be null");
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttSignature.java 40 throw new NullPointerException("signature == null");
AttSourceFile.java 40 throw new NullPointerException("sourceFile == null");
BaseAttribute.java 36 throw new NullPointerException("name == null");
  /dalvik/dx/tests/080-dex-exception-tables/
Blort.java 62 } catch (NullPointerException ex) {
84 } catch (NullPointerException ex) {
105 } catch (NullPointerException ex) {
123 } catch (NullPointerException ex) {
  /external/dagger2/core/src/main/java/dagger/internal/
InstanceFactory.java 33 throw new NullPointerException();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/
BytesResource.java 13 throw new NullPointerException("Bytes must not be null");
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
TagTuple.java 24 throw new NullPointerException("Suffix must be provided.");
  /frameworks/base/core/java/android/security/net/config/
TrustAnchor.java 28 throw new NullPointerException("certificate");
  /frameworks/base/core/java/com/android/internal/os/
AndroidPrintStream.java 39 throw new NullPointerException("tag");
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
Preconditions.java 87 * @throws NullPointerException if arg was {@code null}
91 throw new NullPointerException("Argument '" + argName + "' must not be null");
107 * @throws NullPointerException if arg was {@code null}
140 * @throws NullPointerException if the {@code value} or any of its elements were {@code null}
145 throw new NullPointerException(valueName + " must not be null");
151 throw new NullPointerException(
168 * @throws NullPointerException if the {@code value} was {@code null}
174 throw new NullPointerException(valueName + " must not be null");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamTest.java 31 fail("should throw NullPointerException.");
32 } catch (NullPointerException e) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URISyntaxExceptionTest.java 31 fail("Expected NullPointerException");
32 } catch (NullPointerException npe) {
38 fail("Expected NullPointerException");
39 } catch (NullPointerException npe) {
63 fail("Expected NullPointerException");
64 } catch (NullPointerException npe) {
70 fail("Expected NullPointerException");
71 } catch (NullPointerException npe) {

Completed in 2087 milliseconds

1 23 4 5 6 7 8 91011>>