HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 201 - 225 of 19628) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/java/android/view/textservice/
TextServicesManager.java 72 if (sService == null) {
84 if (sInstance != null) {
94 * @param locale the locale for the spell checker. If {@code locale} is null and
96 * returned. If {@code locale} is not null and referToSpellCheckerLanguageSettings is true,
108 if (listener == null) {
111 if (!referToSpellCheckerLanguageSettings && locale == null) {
112 throw new IllegalArgumentException("Locale should not be null if you don't refer"
117 return null;
122 sci = sService.getCurrentSpellChecker(null);
124 return null;
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRSAPrivateKey.java 63 if (modulus == null) {
64 throw new InvalidKeySpecException("modulus == null");
65 } else if (privateExponent == null) {
66 throw new InvalidKeySpecException("privateExponent == null");
72 null,
74 null,
75 null,
76 null,
77 null,
78 null));
    [all...]
  /cts/tools/dasm/src/java_cup/
production_part.java 29 /** Optional label for referring to the part within an action (null for
34 /** Optional label for referring to the part within an action (null for
53 if (other == null) return false;
56 if (label() != null)
59 return other.label() == null;
78 return label()==null ? 0 : label().hashCode();
86 if (label() != null)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeAdaptor.cs 61 if (t == null)
62 return null;
117 if (t == null)
123 if (startToken != null)
126 if (stopToken != null)
134 if (t == null)
141 if (t == null)
148 if (t == null)
149 return null;
155 if (t == null)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeAdaptor.java 51 if ( t==null ) return null;
95 if ( t==null ) return;
98 if ( startToken!=null ) start = startToken.getTokenIndex();
99 if ( stopToken!=null ) stop = stopToken.getTokenIndex();
105 if ( t==null ) return -1;
110 if ( t==null ) return -1;
115 if ( t==null ) return null;
120 if ( t==null ) return Token.INVALID_TOKEN_TYPE
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 30 private ServerSocket instance = null;
43 return null;
45 if (instance == null) {
46 return null;
76 if (instance != null) {
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JsResultHandler.java 20 confirm(null);
28 if (mBridge != null)
30 mBridge = null;
40 if (mBridge != null)
42 mBridge = null;
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 25 if ((value != null) && (value.length () > 0))
27 if (m_value == null)
41 return m_value != null ? m_value.toString () : null;
49 if (task == null) throw new IllegalArgumentException ("null input: task");
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AEachCommand.java 59 if(this._position_ != null)
61 this._position_.parent(null);
64 if(node != null)
66 if(node.parent() != null)
84 if(this._variable_ != null)
86 this._variable_.parent(null);
89 if(node != null)
91 if(node.parent() != null)
109 if(this._expression_ != null)
111 this._expression_.parent(null);
    [all...]
AIfCommand.java 59 if(this._position_ != null)
61 this._position_.parent(null);
64 if(node != null)
66 if(node.parent() != null)
84 if(this._expression_ != null)
86 this._expression_.parent(null);
89 if(node != null)
91 if(node.parent() != null)
109 if(this._block_ != null)
111 this._block_.parent(null);
    [all...]
ALoopToCommand.java 59 if(this._position_ != null)
61 this._position_.parent(null);
64 if(node != null)
66 if(node.parent() != null)
84 if(this._variable_ != null)
86 this._variable_.parent(null);
89 if(node != null)
91 if(node.parent() != null)
109 if(this._expression_ != null)
111 this._expression_.parent(null);
    [all...]
AWithCommand.java 59 if(this._position_ != null)
61 this._position_.parent(null);
64 if(node != null)
66 if(node.parent() != null)
84 if(this._variable_ != null)
86 this._variable_.parent(null);
89 if(node != null)
91 if(node.parent() != null)
109 if(this._expression_ != null)
111 this._expression_.parent(null);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Utf8.java 26 if (s != null) {
29 return null;
38 if (b != null) {
41 return null;
50 if (utf8 != null) {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TrackBox.java 41 return null;
47 * @return the SampleTableBox or <code>null</code>
51 if (mdia != null) {
53 if (minf != null) {
57 return null;
68 return null;
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 63 if (userInfo != null) {
79 if (other == null) return false;
87 if (this.userInfo != null && otherAuth.userInfo != null) {
116 if (userInfo == null)
117 return null;
124 * @return String user or null if not set.
127 return userInfo != null ? userInfo.user : null;
132 * @return Host (null if not set
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
FrameRateWatcherComponent.java 32 mRenderComponent = null;
33 mDrawable = null;
38 if (mRenderComponent != null && mDrawable != null) {
42 mRenderComponent.setDrawable(null);
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicYuvToRGB.java 69 forEach(0, null, aout, null);
78 return createKernelID(0, 2, null, null);
87 return createFieldID(0, null);
  /libcore/luni/src/main/java/java/lang/ref/
Reference.java 108 * If non-null, the queue on which this reference will be enqueued
145 * Makes the referent {@code null}. This does not force the reference
149 referent = null;
161 if (queue != null && queueNext == null) {
163 queue = null;
183 * @return the referent to which reference refers, or {@code null} if the
197 return queueNext != null;
  /libcore/luni/src/main/java/org/xml/sax/
SAXException.java 45 this.exception = null;
56 this.exception = null;
104 if (message == null && exception != null) {
115 * @return The embedded exception, or null if there is none.
130 if (exception != null) {
146 * @serial The embedded exception if tunnelling, or null.
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailCleanupServiceTest.java 51 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_CHANGED, null);
55 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_REPLACED, null);
63 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_REMOVED, null);
75 if (replacingExtra != null) {
96 Voicemails.buildSourceUri(sourcePackage), null, null, null, null);
99 Status.buildSourceUri(sourcePackage), null, null, null, null)
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl3Test.java 62 if (provs != null) {
83 if (mProv != null) {
88 if (provs != null) {
99 * method Assertions: throws NullPointerException when mechanisms is null;
117 Sasl.createSaslClient(null, null, null, null, null, cbH);
118 fail("NullPointerException should be thrown when mechanisms is null");
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactUtil.java 36 resolver.update(uri, values, null, null);
41 resolver.delete(uri, null, null);
49 Cursor cursor = resolver.query(uri, projection, null, null, null);
62 Cursor cursor = resolver.query(uri, projection, null, null, null);
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 88 mockKeyStore.load(null);
93 mockKeyStore.store(null);
100 mockKeyStore.load(null, null);
101 mockKeyStore.store(null);
105 mockKeyStore.load(null, null);
107 mockKeyStore.setKeyEntry(null, null, null, null);
    [all...]
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
SoundHandleJme.java 49 if (ar == null || node == null)
62 if (ar == null || am == null)
66 if (fileName == null)
73 if (fileName != null){
74 if (node != null){
88 if (node != null){
90 node = null;
95 if (node != null) {
    [all...]
  /frameworks/base/core/java/android/os/
Registrant.java 39 refH = null;
40 userObj = null;
46 internalNotifyRegistrant (null, null);
52 internalNotifyRegistrant (result, null);
58 internalNotifyRegistrant (null, exception);
75 if (h == null) {
89 * NOTE: May return null if weak reference has been collected
97 if (h == null) {
100 return null;
    [all...]

Completed in 1302 milliseconds

1 2 3 4 5 6 7 891011>>