HomeSort by relevance Sort by last modified time
    Searched refs:hasContent (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/jdiff/src/jdiff/
Modifiers.java 63 boolean hasContent = false;
70 hasContent = true;
73 if (hasContent)
80 hasContent = true;
83 if (hasContent)
89 hasContent = true;
94 if (hasContent)
98 hasContent = true;
ClassDiff.java 88 boolean hasContent = false;
92 hasContent = true;
122 if (hasContent)
128 hasContent = true;
131 if (hasContent)
137 hasContent = true;
HTMLReportGenerator.java     [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
Voicemail.java 94 public boolean hasContent();
VoicemailImpl.java 47 boolean hasContent) {
56 mHasContent = hasContent;
147 public Builder setHasContent(boolean hasContent) {
148 mBuilderHasContent = hasContent;
242 public boolean hasContent() {
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailArchivePlaybackPresenter.java 70 public void onPostExecute(Boolean hasContent) {
71 callback.onContentChecked(hasContent);
VoicemailPlaybackPresenter.java 110 void onContentChecked(boolean hasContent);
287 public void onContentChecked(boolean hasContent) {
288 if (hasContent) {
415 public void onPostExecute(Boolean hasContent) {
416 callback.onContentChecked(hasContent);
536 public void onPostExecute(Boolean hasContent) {
537 if (hasContent && mContext != null && mIsWaitingForResult.getAndSet(false)) {
697 public void onContentChecked(boolean hasContent) {
698 if (!hasContent) {
    [all...]
VoicemailAsyncTaskUtil.java 114 if (hasContent(cursor)) {
229 if (hasContent(cursor)) {
249 if (hasContent(callLogInfo) && hasContent(contentInfo)) {
312 private boolean hasContent(@Nullable Cursor cursor) {
  /packages/apps/Dialer/tests/src/com/android/dialer/voicemail/
VoicemailPlaybackTest.java 104 assertTrue(hasContent(cursor));
113 if (hasContent(cursor)) {
142 private boolean hasContent(Cursor cursor) {
VoicemailArchiveTest.java 55 public void onContentChecked(boolean hasContent) {
73 public void onContentChecked(boolean hasContent) {
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
SslConnection.java 298 if (_unwrapBuf!=null && _unwrapBuf.hasContent())
309 else if (_unwrapBuf!=null && _unwrapBuf.hasContent())
337 if (_outbound.hasContent() && (flushed=_endp.flush(_outbound))>0)
359 if (toFill.space()>0 && _inbound.hasContent() && unwrap(toFill))
363 if (toFlush.hasContent() && _outbound.space()>0 && wrap(toFlush))
396 else if (!_inbound.hasContent()&&filled==-1)
408 if (_endp.isOpen() && _endp.isInputShutdown() && !_inbound.hasContent())
411 if (_endp.isOpen() && _engine.isOutboundDone() && !_outbound.hasContent())
419 if (toFill==_unwrapBuf && _unwrapBuf.hasContent() && !_connection.isSuspended())
518 if (!_inbound.hasContent())
    [all...]
SelectChannelEndPoint.java 381 if (l==0 && ( header!=null && header.hasContent() || buffer!=null && buffer.hasContent() || trailer!=null && trailer.hasContent()))
407 if (l==0 && buffer!=null && buffer.hasContent())
  /frameworks/base/telecomm/java/android/telecom/
Voicemail.java 43 Boolean hasContent, String transcription) {
53 mHasContent = hasContent;
144 public Builder setHasContent(boolean hasContent) {
145 mBuilderHasContent = hasContent;
237 public boolean hasContent() {
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleBackground.java 68 boolean hasContent = false;
76 hasContent = true;
79 return hasContent;
RippleForeground.java 112 boolean hasContent = false;
123 hasContent = true;
126 return hasContent;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ImageCardView.java 173 boolean hasContent = (cardType & CARD_TYPE_FLAG_CONTENT) == CARD_TYPE_FLAG_CONTENT;
196 if (hasContent) {
212 if (hasTitle && !hasContent && mBadgeImage != null) {
225 if (hasContent) {
243 if (hasContent) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
DialogFragment.java 207 boolean hasContent = fm.findFragmentByTag(BaseDialogFragment.TAG_CONTENT) != null;
210 if (hasContent) {
  /external/jetty/src/java/org/eclipse/jetty/io/
Buffer.java 151 boolean hasContent();
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpParser.java 182 return ( _header!=null && _header.hasContent() ||
183 _body!=null && _body.hasContent());
238 while (!isComplete() && _buffer!=null && _buffer.length()>0 && !_contentView.hasContent())
626 if (_eol==HttpTokens.CARRIAGE_RETURN && _buffer.hasContent() && _buffer.peek()==HttpTokens.LINE_FEED)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketGeneratorD00.java 141 if (_buffer!=null && _buffer.hasContent())
  /external/jetty/src/java/org/eclipse/jetty/servlets/
ProxyServlet.java 575 boolean hasContent = false;
587 hasContent = true;
598 hasContent = true;
604 hasContent = true;
633 if (hasContent)
  /external/jetty/src/java/org/eclipse/jetty/io/bio/
StreamEndPoint.java 134 if (buffer.hasContent())
  /frameworks/base/core/java/android/hardware/display/
DisplayManagerInternal.java 124 * @param hasContent True if the logical display has content. This is used to control automatic
133 public abstract void setDisplayProperties(int displayId, boolean hasContent,
  /frameworks/base/services/core/java/com/android/server/display/
LogicalDisplay.java 373 * @param hasContent True if the display has unique content.
375 public void setHasContentLocked(boolean hasContent) {
376 mHasContent = hasContent;
DisplayManagerService.java     [all...]

Completed in 401 milliseconds

1 2 3 4