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

1 2 3 4 5 6 7 891011>>

  /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/proguard/src/proguard/
ClassPathEntry.java 182 this.filter = filter == null || filter.size() == 0 ? null : filter;
199 this.jarFilter = filter == null || filter.size() == 0 ? null : filter;
216 this.warFilter = filter == null || filter.size() == 0 ? null : filter;
233 this.earFilter = filter == null || filter.size() == 0 ? null : filter;
250 this.zipFilter = filter == null || filter.size() == 0 ? null : filter
    [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/rs/java/android/renderscript/
ScriptIntrinsicYuvToRGB.java 69 forEach(0, (Allocation) null, aout, null);
78 return createKernelID(0, 2, null, null);
87 return createFieldID(0, null);
  /libcore/libart/src/main/java/java/lang/ref/
Reference.java 124 * If non-null, the queue on which this reference will be enqueued
161 * Makes the referent {@code null}. This does not force the reference
165 referent = null;
177 if (queue != null && queueNext == null) {
179 queue = null;
199 * @return the referent to which reference refers, or {@code null} if the
209 * @return the referent to which reference refers, or {@code null} if the
223 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/apps/UnifiedEmail/src/com/android/mail/
ContactInfo.java 29 this(contactUri, null, null);
33 this(contactUri, photoBytes, null);
37 this(contactUri, null, photo);
48 return "{photo=" + (photo != null ? photo : photoBytes) + "}";
  /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/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...]
  /frameworks/base/core/java/android/os/
Registrant.java 38 refH = null;
39 userObj = null;
45 internalNotifyRegistrant (null, null);
51 internalNotifyRegistrant (result, null);
57 internalNotifyRegistrant (null, exception);
74 if (h == null) {
88 * NOTE: May return null if weak reference has been collected
96 if (h == null) {
99 return null;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
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...]
  /cts/libs/vogar-expect/src/vogar/util/
Log.java 23 private static LogOutput sLogoutput = null;
30 if (sLogoutput != null) {
36 if (sLogoutput != null) {
45 if (sLogoutput != null) {
51 if (sLogoutput != null) {
57 if (sLogoutput != null) {
63 if (sLogoutput != null) {
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
RenderScriptSingleton.java 42 * @param context a non-{@code null} Context.
49 } else if (sContext != null) {
69 if (sContext != null) {
71 sCache = null;
74 sRS = null;
75 sContext = null;
82 * @return A non-{@code null} {@link RenderScript} object.
87 if (sRS == null) {
96 * @return A non-{@code null} {@link AllocationCache} object.
101 if (sCache == null) {
    [all...]

Completed in 733 milliseconds

1 2 3 4 5 6 7 891011>>