Home
last modified time | relevance | path

Searched refs:ContentCaptureManager (Results 1 – 25 of 32) sorted by relevance

12

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureHelper.java18 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOGGING_LEVE…
19 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_DEBUG;
20 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_OFF;
21 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_VERBOSE;
28 import android.view.contentcapture.ContentCaptureManager.LoggingLevel;
DDataShareWriteAdapter.java21 import android.view.contentcapture.ContentCaptureManager.DataShareError;
DContentCaptureManager.java208 public final class ContentCaptureManager { class
210 private static final String TAG = ContentCaptureManager.class.getSimpleName();
393 public ContentCaptureManager(@NonNull Context context, in ContentCaptureManager() method in ContentCaptureManager
DMainContentCaptureSession.java32 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
100 private final ContentCaptureManager mManager;
190 @NonNull ContentCaptureManager manager, @NonNull Handler handler, in MainContentCaptureSession()
DContentCaptureContext.java18 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
DContentCaptureSession.java20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
DContentCaptureEvent.java19 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
/frameworks/base/core/java/android/content/
DContentCaptureOptions.java26 import android.view.contentcapture.ContentCaptureManager;
27 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
107 this(ContentCaptureManager.LOGGING_LEVEL_VERBOSE, in ContentCaptureOptions()
108 ContentCaptureManager.DEFAULT_MAX_BUFFER_SIZE, in ContentCaptureOptions()
109 ContentCaptureManager.DEFAULT_IDLE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions()
110 ContentCaptureManager.DEFAULT_TEXT_CHANGE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions()
111 ContentCaptureManager.DEFAULT_LOG_HISTORY_SIZE, whitelistedComponents); in ContentCaptureOptions()
DLocusId.java21 import android.view.contentcapture.ContentCaptureManager;
DContext.java76 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureManagerService.java23 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
24 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_OK;
25 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_SECURITY_EXCEPTION;
26 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE;
80 import android.view.contentcapture.ContentCaptureManager;
311 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED: in onDeviceConfigChange()
314 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOGGING_LEVEL: in onDeviceConfigChange()
317 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_MAX_BUFFER_SIZE: in onDeviceConfigChange()
318 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_IDLE_FLUSH_FREQUENCY: in onDeviceConfigChange()
319 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOG_HISTORY_SIZE: in onDeviceConfigChange()
[all …]
DContentCaptureServerSession.java19 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
20 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
21 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE;
DContentCapturePerUserService.java20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureManagerTest.java44 () -> new ContentCaptureManager(mMockContext, /* service= */ null, /* options= */ in testConstructor_invalidParametersThrowsException()
52 final ContentCaptureManager manager = in testRemoveData_invalidParametersThrowsException()
53 new ContentCaptureManager(mMockContext, mockService, options); in testRemoveData_invalidParametersThrowsException()
/frameworks/base/core/java/com/android/internal/policy/
DDecorContext.java25 import android.view.contentcapture.ContentCaptureManager;
42 private ContentCaptureManager mContentCaptureManager;
71 mContentCaptureManager = (ContentCaptureManager) context.getSystemService(name); in getSystemService()
/frameworks/base/core/java/android/app/
DService.java37 import android.view.contentcapture.ContentCaptureManager;
311 ContentCaptureManager.ContentCaptureClient {
866 public final ContentCaptureManager.ContentCaptureClient getContentCaptureClient() {
DSystemServiceRegistry.java198 import android.view.contentcapture.ContentCaptureManager;
1118 registerService(Context.CONTENT_CAPTURE_MANAGER_SERVICE, ContentCaptureManager.class, in registerService()
1119 new CachedServiceFetcher<ContentCaptureManager>() { in registerService()
1121 public ContentCaptureManager createService(ContextImpl ctx) in registerService()
1133 return new ContentCaptureManager(outerContext, service, options); in registerService()
DActivity.java133 import android.view.contentcapture.ContentCaptureManager;
134 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
735 AutofillManager.AutofillClient, ContentCaptureManager.ContentCaptureClient {
849 @Nullable private ContentCaptureManager mContentCaptureManager;
1142 @Nullable private ContentCaptureManager getContentCaptureManager() { in getContentCaptureManager()
1146 mContentCaptureManager = getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
1188 final ContentCaptureManager cm = getContentCaptureManager(); in notifyContentCaptureManagerIfNeeded()
1219 final ContentCaptureManager cm = getContentCaptureManager(); in setLocusContextToContentCapture()
7191 final ContentCaptureManager cm = getContentCaptureManager(); in dumpContentCaptureManager()
/frameworks/base/core/java/android/service/contentcapture/
DDataShareReadAdapter.java23 import android.view.contentcapture.ContentCaptureManager.DataShareError;
DContentCaptureService.java21 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
48 import android.view.contentcapture.ContentCaptureManager;
/frameworks/base/core/tests/coretests/src/android/content/
DContentCaptureOptionsTest.java26 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
/frameworks/base/services/java/com/android/server/
DSystemServer.java81 import android.view.contentcapture.ContentCaptureManager;
2491 ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED); in startContentCaptureService()
/frameworks/base/core/java/android/view/
DView.java134 import android.view.contentcapture.ContentCaptureManager;
9812 final ContentCaptureManager ccm = mContext
9813 .getSystemService(ContentCaptureManager.class);
10015 ContentCaptureManager ccm = ai.mContentCaptureManager;
29177 ContentCaptureManager mContentCaptureManager;
29221 ContentCaptureManager getContentCaptureManager(@NonNull Context context) { in getContentCaptureManager()
29225 mContentCaptureManager = context.getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
DViewRootImpl.java156 import android.view.contentcapture.ContentCaptureManager;
3920 final ContentCaptureManager ccm = mAttachInfo.getContentCaptureManager(mContext); in isContentCaptureReallyEnabled()
3958 final ContentCaptureManager ccm = mAttachInfo.mContentCaptureManager; in handleContentCaptureFlush()
/frameworks/base/core/java/android/widget/
DTextView.java167 import android.view.contentcapture.ContentCaptureManager;
10715 final ContentCaptureManager cm = mContext.getSystemService(ContentCaptureManager.class); in notifyListeningManagersAfterTextChanged()

12