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

1 2 3 4 5 67 8 91011>>

  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPart.java 182 * @throws NullPointerException if the value is null.
241 * @throws NullPointerException if the value is null.
245 throw new NullPointerException("null content-location");
270 * @throws NullPointerException if the value is null.
274 throw new NullPointerException("null content-disposition");
293 * @throws NullPointerException if the value is null.
297 throw new NullPointerException("null content-type");
316 * @throws NullPointerException if the value is null.
320 throw new NullPointerException("null content-transfer-encoding");
339 * @throws NullPointerException if the value is null
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
Channels.java 153 throw new NullPointerException("charsetName == null");
196 throw new NullPointerException("charsetName == null");
210 throw new NullPointerException("channel == null");
250 throw new NullPointerException("channel == null");
292 throw new NullPointerException("inputStream == null");
331 throw new NullPointerException("outputStream == null");
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("field == null");
124 throw new NullPointerException("ref == null");
MethodIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("method == null");
124 throw new NullPointerException("ref == null");
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("field == null");
124 throw new NullPointerException("ref == null");
MethodIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("method == null");
124 throw new NullPointerException("ref == null");
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
WrappedCharBufferTest2.java 67 } catch (NullPointerException e) {
90 fail("Should throw NullPointerException"); //$NON-NLS-1$
92 } catch (NullPointerException expected) {
118 fail("Should throw NullPointerException"); //$NON-NLS-1$
119 } catch (NullPointerException e) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("field == null");
124 throw new NullPointerException("ref == null");
MethodIdsSection.java 58 throw new NullPointerException("cst == null");
100 throw new NullPointerException("method == null");
124 throw new NullPointerException("ref == null");
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 57 throw new NullPointerException();
71 throw new NullPointerException();
83 throw new NullPointerException();
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 64 if ( callId == null) throw new NullPointerException("Call ID is null!");
65 if ( authorization == null) throw new NullPointerException("Null authorization domain");
104 throw new NullPointerException("Null arg!");
  /libcore/luni/src/main/java/java/util/
StringTokenizer.java 67 * throw a {@code NullPointerException}.
83 * calls to some methods might throw a {@code NullPointerException}.
95 throw new NullPointerException("string == null");
146 throw new NullPointerException("delimiters == null");
183 throw new NullPointerException("delimiters == null");
  /libcore/luni/src/main/java/libcore/net/
RawSocket.java 83 throw new NullPointerException("packet == null");
105 throw new NullPointerException("destMac == null");
109 throw new NullPointerException("packet == null");
  /libcore/luni/src/test/java/tests/security/spec/
ECParameterSpecTest.java 54 * case 2: NullPointerException - if curve is null
55 * case 3: NullPointerException - if g is null
56 * case 4: NullPointerException - if n is null
70 // case 2: NullPointerException - if curve is null.
73 fail("NullPointerException exception has not been thrown");
74 } catch (NullPointerException e) {
78 // case 3: NullPointerException - if g is null.
81 fail("NullPointerException exception has not been thrown");
82 } catch (NullPointerException e) {
86 // case 4: NullPointerException - if n is null
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java 67 } catch (NullPointerException ex) {
69 throw new NullPointerException("insns == null");
95 } catch (NullPointerException ex) {
97 throw new NullPointerException("successors == null");
CstInsn.java 43 throw new NullPointerException("cst == null");
LocalVariableInfo.java 57 throw new NullPointerException("method == null");
83 throw new NullPointerException("specs == null");
190 throw new NullPointerException("insn == null");
194 throw new NullPointerException("spec == null");
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttEnclosingMethod.java 47 throw new NullPointerException("type == null");
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 34 throw new NullPointerException("array == null");
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java 67 } catch (NullPointerException ex) {
69 throw new NullPointerException("insns == null");
95 } catch (NullPointerException ex) {
97 throw new NullPointerException("successors == null");
CstInsn.java 43 throw new NullPointerException("cst == null");
LocalVariableInfo.java 57 throw new NullPointerException("method == null");
83 throw new NullPointerException("specs == null");
194 throw new NullPointerException("insn == null");
198 throw new NullPointerException("spec == null");
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 59 throw new NullPointerException("method == null");
84 throw new NullPointerException("specs == null");
191 throw new NullPointerException("insn == null");
195 throw new NullPointerException("spec == null");
  /external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
IncompleteAnnotationExceptionTest.java 36 fail("NullPointerException must be thrown");
37 } catch (NullPointerException e) {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
LanguageCallbackTest.java 56 } catch (NullPointerException e ){}

Completed in 1130 milliseconds

1 2 3 4 5 67 8 91011>>