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

12 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 68 throw new NullPointerException("code == null");
75 } catch (NullPointerException ex) {
77 throw new NullPointerException("catches == null");
84 } catch (NullPointerException ex) {
86 throw new NullPointerException("attributes == null");
BaseAnnotations.java 49 } catch (NullPointerException ex) {
51 throw new NullPointerException("annotations == null");
BaseParameterAnnotations.java 50 } catch (NullPointerException ex) {
52 throw new NullPointerException("parameterAnnotations == null");
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/tests/003-omnibus-opcodes/src/
Throw.java 22 throw new NullPointerException("npe!");
55 } catch (NullPointerException npe) {
77 } catch (NullPointerException npe) {
100 if (ex instanceof NullPointerException) {
102 throw (NullPointerException) ex;
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 24 import java.lang.NullPointerException;
41 * NullPointerException is thrown in the case of null input
47 fail("Should raise an NullPointerException "
49 } catch(NullPointerException e) {
61 * NullPointerException is thrown in the case of null input
72 } catch(NullPointerException e) {
73 fail("Unexpected NullPointerException was thrown");
83 } catch(NullPointerException e) {
84 fail("Unexpected NullPointerException was thrown");
94 } catch(NullPointerException e)
    [all...]
  /libcore/luni/src/main/java/java/text/
RuleBasedCollator.java 279 * @throws NullPointerException
287 throw new NullPointerException("rules == null");
317 throw new NullPointerException("source == null");
331 throw new NullPointerException("source == null");
389 throw new NullPointerException("source == null");
391 throw new NullPointerException("target == null");
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 25 import java.lang.NullPointerException;
41 * NullPointerException is thrown in the case of null input
47 fail("Should raise an NullPointerException "
49 } catch(NullPointerException e) {
61 * NullPointerException is thrown in the case of null input
72 } catch(NullPointerException e) {
73 fail("Unexpected NullPointerException was thrown");
83 } catch(NullPointerException e) {
84 fail("Unexpected NullPointerException was thrown");
94 } catch(NullPointerException e)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ButtonTest.java 41 fail("Should throw NullPointerException.");
42 } catch (NullPointerException e) {
48 fail("Should throw NullPointerException.");
49 } catch (NullPointerException e) {
55 fail("Should throw NullPointerException.");
56 } catch (NullPointerException e) {
CheckBoxTest.java 40 fail("Should throw NullPointerException.");
41 } catch (NullPointerException e) {
47 fail("Should throw NullPointerException.");
48 } catch (NullPointerException e) {
54 fail("Should throw NullPointerException.");
55 } catch (NullPointerException e) {
ImageButtonTest.java 43 fail("should throw NullPointerException.");
44 } catch (NullPointerException e) {
49 fail("should throw NullPointerException.");
50 } catch (NullPointerException e) {
55 fail("should throw NullPointerException.");
56 } catch (NullPointerException e) {
  /libcore/luni/src/main/java/java/security/spec/
ECParameterSpec.java 57 // throw NullPointerException if curve, generator or order is null
59 throw new NullPointerException("curve == null");
62 throw new NullPointerException("generator == null");
65 throw new NullPointerException("order == null");
  /libcore/luni/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 70 * @throws NullPointerException
77 throw new NullPointerException("mdName == null");
79 throw new NullPointerException("mgfName == null");
81 throw new NullPointerException("pSrc == null");
PSource.java 38 * @throws NullPointerException
43 throw new NullPointerException("pSrcName == null");
82 * @throws NullPointerException
88 throw new NullPointerException("p == null");
  /external/jsilver/src/org/clearsilver/jni/
JniCs.java 88 throw new NullPointerException("CS is closed.");
95 throw new NullPointerException("CS is closed.");
102 throw new NullPointerException("CS is closed.");
111 throw new NullPointerException("CS is closed.");
115 throw new NullPointerException("No fileLoader specified.");
119 throw new NullPointerException("CSFileLoader.load() returned null");
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...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ExceptionInInitializerErrorTest.java 45 NullPointerException npe = new NullPointerException("fixture");
  /libcore/luni/src/main/java/javax/net/ssl/
KeyStoreBuilderParameters.java 45 throw new NullPointerException("builder == null");
61 throw new NullPointerException("parameters == null");
  /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) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
StaticInnerHandlerWrapper.java 29 if (outerInstance == null) throw new NullPointerException("outerInstance is null");
35 if (outerInstance == null) throw new NullPointerException("outerInstance is null");
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 190 } catch (NullPointerException ex) {
207 } catch (NullPointerException ex) {
230 } catch (NullPointerException ex) {
248 } catch (NullPointerException ex) {
265 } catch (NullPointerException ex) {
282 } catch (NullPointerException ex) {
320 } catch (NullPointerException ex) {
593 } catch (NullPointerException ex) {
719 } catch (NullPointerException ex) {
800 } catch (NullPointerException ex)
    [all...]
  /cts/tests/src/android/app/cts/
ActivityManagerStubCrashActivity.java 35 throw new NullPointerException("Expected NPE.");

Completed in 579 milliseconds

12 3 4 5 6 7 8 91011>>