HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 1001 - 1025 of 19200) sorted by null

<<41424344454647484950>>

  /development/samples/browseable/StorageProvider/src/com.example.android.common/logger/
LogWrapper.java 54 // if that's the case, just convert null to the empty string and move on.
56 if (useMsg == null) {
62 if (tr != null) {
71 if (mNext != null) {
  /development/samples/browseable/TextLinkify/src/com.example.android.common.logger/
LogWrapper.java 54 // if that's the case, just convert null to the empty string and move on.
56 if (useMsg == null) {
62 if (tr != null) {
71 if (mNext != null) {
  /development/samples/browseable/TextSwitcher/src/com.example.android.common.logger/
LogWrapper.java 54 // if that's the case, just convert null to the empty string and move on.
56 if (useMsg == null) {
62 if (tr != null) {
71 if (mNext != null) {
  /development/samples/browseable/repeatingAlarm/src/com.example.android.common/logger/
LogWrapper.java 54 // if that's the case, just convert null to the empty string and move on.
56 if (useMsg == null) {
62 if (tr != null) {
71 if (mNext != null) {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as 47 /** Who is the parent node of this node; if null, implies node is root */
53 public function CommonTree(node:CommonTree = null) {
54 if (node != null) {
77 return _token==null;
81 if ( _token==null ) {
88 if ( _token==null ) {
89 return null;
95 if ( _token==null || _token.line==0 ) {
105 if ( _token==null || _token.charPositionInLine==-1 ) {
115 if ( startIndex==-1 && _token!=null ) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */
72 if (node == null)
91 if ( Token == null || Token.CharPositionInLine == -1 )
124 return Token == null;
132 if ( Token == null || Token.Line == 0 )
166 if ( Token == null )
167 return null;
194 if ( startIndex == -1 && Token != null )
210 if ( stopIndex == -1 && Token != null )
227 if ( Token == null )
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/
AuthenticationExceptionTest.java 41 String msg = null;
46 new AuthenticationException(msg, null),
47 new AuthenticationException(msgs[0], null),
SaslExceptionTest.java 41 String msg = null;
46 new SaslException(msg, null),
47 new SaslException(msgs[0], null),
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
SecretKeyFactorySpiTest.java 57 SecretKey sk = null;
58 assertNull("Not null result", skfSpi.engineTranslateKey(sk));
60 KeySpec kspec = null;
61 assertNull("Not null result", skfSpi.engineGenerateSecret(kspec));
63 assertNull("Not null result", skfSpi.engineGetKeySpec(sk, null));
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MySecretKeyFactorySpi.java 41 return null;
48 return null;
54 return null;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
UndeclaredThrowableExceptionTest.java 31 (Exception) null);
42 UndeclaredThrowableException e = new UndeclaredThrowableException(null,
53 UndeclaredThrowableException e = new UndeclaredThrowableException(null);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookiePolicyTest.java 38 CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(null, cookie);
45 CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(uri, null);
52 CookiePolicy.ACCEPT_ORIGINAL_SERVER.shouldAccept(null, null);
59 boolean accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, cookie);
62 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(null, null);
65 accept = CookiePolicy.ACCEPT_ALL.shouldAccept(uri, null);
69 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, cookie);
72 accept = CookiePolicy.ACCEPT_NONE.shouldAccept(null, null)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMapTest.java 42 // tests with null keys and values
46 // null key and null value
47 result = map.put(null, null);
48 assertTrue("testA can not find null key", map.containsKey(null));
49 assertTrue("testA can not find null value", map.containsValue(null));
50 assertNull("testA can not get null value for null key"
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionExceptionTest.java 37 new PrivilegedActionException(null);
46 assertNull(new PrivilegedActionException(null).getException());
55 assertNotNull(new PrivilegedActionException(null).toString());
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXBuilderParametersTest.java 60 if (taSet == null) {
63 // both parameters are valid and non-null
79 if (taSet == null) {
82 // both parameters are valid but CertSelector is null
83 PKIXParameters p = new PKIXBuilderParameters(taSet, null);
98 if (taSet == null) {
105 new PKIXBuilderParameters(originalSetCopy, null);
118 * if the specified <code>Set</code> is null
122 // pass null
123 new PKIXBuilderParameters((Set)null, null)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
ProviderService_ImplTest.java 42 "className", null, null);
53 null, hm);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyPairGeneratorSpi.java 43 if (random == null) {
49 return null;
54 if (random == null) {
56 "Not supported for null random");
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertPathValidatorSpi.java 43 if (certPath == null) {
45 throw new CertPathValidatorException("certPath null");
48 if (params == null) {
50 throw new InvalidAlgorithmParameterException("params null");
53 return null;
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AnnotationTest.java 30 assertNotNull(new Annotation(null));
38 Annotation a = new Annotation(null);
51 assertNotNull(new Annotation(null).toString());
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 70 static protected Constructor logImplctor = null;
79 if (null != Class.forName("org.apache.log4j.Logger")) {
90 if ((null != Class.forName("java.util.logging.Logger")) &&
91 (null != Class.forName("org.apache.commons.logging.impl.Jdk14Logger"))) {
101 String name = null;
104 if (name == null) {
109 if (name != null) {
173 logImplctor = null;
196 if (null == log) {
236 Log log = null;
    [all...]
  /external/apache-http/src/org/apache/http/auth/params/
AuthParams.java 67 if (params == null) {
68 throw new IllegalArgumentException("HTTP parameters may not be null");
74 if (charset == null) {
88 if (params == null) {
89 throw new IllegalArgumentException("HTTP parameters may not be null");
  /external/apache-http/src/org/apache/http/impl/
SocketHttpClientConnection.java 61 private Socket socket = null;
96 if (socket == null) {
97 throw new IllegalArgumentException("Socket may not be null");
99 if (params == null) {
100 throw new IllegalArgumentException("HTTP parameters may not be null");
123 if (this.socket != null) {
126 return null;
131 if (this.socket != null) {
139 if (this.socket != null) {
142 return null;
    [all...]
SocketHttpServerConnection.java 61 private Socket socket = null;
94 if (socket == null) {
95 throw new IllegalArgumentException("Socket may not be null");
97 if (params == null) {
98 throw new IllegalArgumentException("HTTP parameters may not be null");
121 if (this.socket != null) {
124 return null;
129 if (this.socket != null) {
137 if (this.socket != null) {
140 return null;
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicExpiresHandler.java 43 if (datepatterns == null) {
44 throw new IllegalArgumentException("Array of date patterns may not be null");
51 if (cookie == null) {
52 throw new IllegalArgumentException("Cookie may not be null");
54 if (value == null) {
BasicSecureHandler.java 46 if (cookie == null) {
47 throw new IllegalArgumentException("Cookie may not be null");
54 if (cookie == null) {
55 throw new IllegalArgumentException("Cookie may not be null");
57 if (origin == null) {
58 throw new IllegalArgumentException("Cookie origin may not be null");

Completed in 368 milliseconds

<<41424344454647484950>>