/frameworks/base/core/java/android/view/contentcapture/ |
D | ContentCaptureContext.java | 47 public final class ContentCaptureContext implements Parcelable { class 123 public ContentCaptureContext(@Nullable ContentCaptureContext clientContext, in ContentCaptureContext() method in ContentCaptureContext 142 private ContentCaptureContext(@NonNull Builder builder) { in ContentCaptureContext() method in ContentCaptureContext 155 public ContentCaptureContext(@Nullable ContentCaptureContext original, int extraFlags) { in ContentCaptureContext() method in ContentCaptureContext 277 public static ContentCaptureContext forLocusId(@NonNull String id) { in forLocusId() 335 public ContentCaptureContext build() { in build() 338 return new ContentCaptureContext(this); in build() 420 …public static final @android.annotation.NonNull Parcelable.Creator<ContentCaptureContext> CREATOR = 421 new Parcelable.Creator<ContentCaptureContext>() { 425 public ContentCaptureContext createFromParcel(Parcel parcel) { [all …]
|
D | ChildContentCaptureSession.java | 43 @NonNull ContentCaptureContext clientContext) { in ChildContentCaptureSession() 70 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild() 82 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext() 93 @NonNull ContentCaptureContext clientContext) { in internalNotifyChildSessionStarted() 104 void internalNotifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in internalNotifyContextUpdated()
|
D | ContentCaptureSession.java | 253 private ContentCaptureContext mClientContext; 275 ContentCaptureSession(@NonNull ContentCaptureContext initialContext) { in ContentCaptureSession() 320 @NonNull ContentCaptureContext context) { in createContentCaptureSession() 335 abstract ContentCaptureSession newChild(@NonNull ContentCaptureContext context); in newChild() 347 public final void setContentCaptureContext(@Nullable ContentCaptureContext context) { in setContentCaptureContext() 354 abstract void updateContentCaptureContext(@Nullable ContentCaptureContext context); in updateContentCaptureContext() 364 public final ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext() 582 @NonNull ContentCaptureContext clientContext); in internalNotifyChildSessionStarted() 587 int sessionId, @Nullable ContentCaptureContext context); in internalNotifyContextUpdated()
|
D | ContentCaptureContext.aidl | 19 parcelable ContentCaptureContext;
|
D | ContentCaptureManager.java | 815 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled() 817 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled() 841 alreadyDisabledByApp = (mFlags & ContentCaptureContext.FLAG_DISABLED_BY_APP) != 0; in updateWindowAttributes() 843 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes() 845 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes() 869 mFlags |= ContentCaptureContext.FLAG_DISABLED_FLUSH_FOR_VIEW_TREE_APPEARING; in setFlushViewTreeAppearingEventDisabled() 871 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_FLUSH_FOR_VIEW_TREE_APPEARING; in setFlushViewTreeAppearingEventDisabled() 883 return (mFlags & ContentCaptureContext.FLAG_DISABLED_FLUSH_FOR_VIEW_TREE_APPEARING) in getFlushViewTreeAppearingEventDisabled()
|
D | ContentCaptureEvent.java | 167 private @Nullable ContentCaptureContext mClientContext; 238 public ContentCaptureEvent setClientContext(@NonNull ContentCaptureContext clientContext) { in setClientContext() 266 public ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext() 649 …lientContext(parcel.readParcelable(null, android.view.contentcapture.ContentCaptureContext.class));
|
D | IContentCaptureManager.aidl | 21 import android.view.contentcapture.ContentCaptureContext;
|
D | MainContentCaptureSession.java | 239 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild() 666 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext() 833 @NonNull ContentCaptureContext clientContext) { in internalNotifyChildSessionStarted() 850 void internalNotifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in internalNotifyContextUpdated()
|
D | MainContentCaptureSessionV2.java | 258 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild() 693 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext() 865 @NonNull ContentCaptureContext clientContext) { in internalNotifyChildSessionStarted() 882 void internalNotifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in internalNotifyContextUpdated()
|
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/ |
D | ContentCaptureContextTest.java | 43 final ContentCaptureContext ctx = new ContentCaptureContext(/* clientContext= */ null, in testConstructorAdditionalFlags() 46 final ContentCaptureContext newCtx = new ContentCaptureContext(ctx, /* extraFlags= */ 2); in testConstructorAdditionalFlags()
|
D | ContentCaptureSessionTest.java | 222 ContentCaptureSession newChild(ContentCaptureContext context) { in newChild() 270 @NonNull ContentCaptureContext clientContext) { in internalNotifyChildSessionStarted() 280 void internalNotifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in internalNotifyContextUpdated() 301 public void updateContentCaptureContext(ContentCaptureContext context) { in updateContentCaptureContext()
|
D | ContentCaptureEventTest.java | 55 private final ContentCaptureContext mClientContext = 56 new ContentCaptureContext.Builder(ID).build(); 184 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertSessionStartedEvent() 310 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertContextUpdatedEvent()
|
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/ |
D | ContentCaptureServerSession.java | 37 import android.view.contentcapture.ContentCaptureContext; 56 private final ContentCaptureContext mContentCaptureContext; 89 mContentCaptureContext = new ContentCaptureContext(/* clientContext= */ null, in ContentCaptureServerSession() 201 remoteService.onSessionStarted(new ContentCaptureContext(mContentCaptureContext, in resurrectLocked() 202 ContentCaptureContext.FLAG_RECONNECTED), mId, mUid, mSessionStateReceiver, in resurrectLocked()
|
D | RemoteContentCaptureService.java | 36 import android.view.contentcapture.ContentCaptureContext; 124 public void onSessionStarted(@Nullable ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
|
/frameworks/base/core/java/android/service/contentcapture/ |
D | IContentCaptureService.aidl | 24 import android.view.contentcapture.ContentCaptureContext; 40 void onSessionStarted(in ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
|
D | ContentCaptureService.java | 49 import android.view.contentcapture.ContentCaptureContext; 176 public void onSessionStarted(ContentCaptureContext context, int sessionId, int uid, 383 public void onCreateContentCaptureSession(@NonNull ContentCaptureContext context, in onCreateContentCaptureSession() 518 private void handleOnCreateSession(@NonNull ContentCaptureContext context, in handleOnCreateSession() 525 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE) != 0) { in handleOnCreateSession() 528 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_APP) != 0) { in handleOnCreateSession() 569 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in handleSendEvents()
|
/frameworks/base/core/java/android/app/assist/ |
D | ActivityId.java | 27 import android.view.contentcapture.ContentCaptureContext;
|
/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/ |
D | MyContentCaptureService.java | 103 public void onCreateContentCaptureSession(ContentCaptureContext context, in onCreateContentCaptureSession()
|
/frameworks/base/core/java/android/app/ |
D | Activity.java | 155 import android.view.contentcapture.ContentCaptureContext; 1416 ContentCaptureContext.Builder contentCaptureContextBuilder = in setLocusContextToContentCapture() 1417 new ContentCaptureContext.Builder(locusId); in setLocusContextToContentCapture()
|
D | Notification.java | 108 import android.view.contentcapture.ContentCaptureContext;
|
/frameworks/base/core/java/android/content/pm/ |
D | ShortcutInfo.java | 48 import android.view.contentcapture.ContentCaptureContext;
|
/frameworks/base/config/ |
D | dirty-image-objects | 1504 Landroid/view/contentcapture/ContentCaptureContext; 416
|
D | preloaded-classes | 9383 android.view.contentcapture.ContentCaptureContext$1 9384 android.view.contentcapture.ContentCaptureContext$Builder 9385 android.view.contentcapture.ContentCaptureContext
|
/frameworks/base/boot/ |
D | preloaded-classes | 9352 android.view.contentcapture.ContentCaptureContext$1 9353 android.view.contentcapture.ContentCaptureContext$Builder 9354 android.view.contentcapture.ContentCaptureContext
|
/frameworks/base/core/java/android/view/ |
D | View.java | 189 import android.view.contentcapture.ContentCaptureContext;
|