Home
last modified time | relevance | path

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

/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;
DContentCaptureManager.java150 public final class ContentCaptureManager { class
152 private static final String TAG = ContentCaptureManager.class.getSimpleName();
307 public ContentCaptureManager(@NonNull Context context, in ContentCaptureManager() method in ContentCaptureManager
DMainContentCaptureSession.java31 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
97 private final ContentCaptureManager mManager;
150 @NonNull ContentCaptureManager manager, @NonNull Handler handler, in MainContentCaptureSession()
/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.java75 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureManagerService.java22 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
23 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_OK;
24 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_SECURITY_EXCEPTION;
25 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE;
63 import android.view.contentcapture.ContentCaptureManager;
262 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED: in onDeviceConfigChange()
265 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOGGING_LEVEL: in onDeviceConfigChange()
268 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_MAX_BUFFER_SIZE: in onDeviceConfigChange()
269 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_IDLE_FLUSH_FREQUENCY: in onDeviceConfigChange()
270 case ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOG_HISTORY_SIZE: in onDeviceConfigChange()
[all …]
DContentCaptureServerSession.java19 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
20 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE;
/frameworks/base/core/java/com/android/internal/policy/
DDecorContext.java27 import android.view.contentcapture.ContentCaptureManager;
45 private ContentCaptureManager mContentCaptureManager;
75 mContentCaptureManager = (ContentCaptureManager) activityContext in getSystemService()
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureManagerTest.java40 private ContentCaptureManager mManager;
44 mManager = new ContentCaptureManager(mMockContext, /* service= */ null, in before()
/frameworks/base/core/tests/coretests/src/android/content/
DContentCaptureOptionsTest.java26 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
/frameworks/base/core/java/android/app/
DSystemServiceRegistry.java194 import android.view.contentcapture.ContentCaptureManager;
1192 registerService(Context.CONTENT_CAPTURE_MANAGER_SERVICE, ContentCaptureManager.class, in registerService()
1193 new CachedServiceFetcher<ContentCaptureManager>() { in registerService()
1195 public ContentCaptureManager createService(ContextImpl ctx) in registerService()
1207 return new ContentCaptureManager(outerContext, service, options); in registerService()
DActivity.java128 import android.view.contentcapture.ContentCaptureManager;
129 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
730 AutofillManager.AutofillClient, ContentCaptureManager.ContentCaptureClient {
843 @Nullable private ContentCaptureManager mContentCaptureManager;
1045 @Nullable private ContentCaptureManager getContentCaptureManager() { in getContentCaptureManager()
1049 mContentCaptureManager = getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
1091 final ContentCaptureManager cm = getContentCaptureManager(); in notifyContentCaptureManagerIfNeeded()
7046 final ContentCaptureManager cm = getContentCaptureManager(); in dumpContentCaptureManager()
/frameworks/base/core/java/android/service/contentcapture/
DContentCaptureService.java48 import android.view.contentcapture.ContentCaptureManager;
/frameworks/base/services/java/com/android/server/
DSystemServer.java74 import android.view.contentcapture.ContentCaptureManager;
2340 ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED); in startContentCaptureService()
/frameworks/base/core/java/android/view/
DView.java127 import android.view.contentcapture.ContentCaptureManager;
9466 final ContentCaptureManager ccm = ai != null ? ai.getContentCaptureManager(mContext)
9467 : mContext.getSystemService(ContentCaptureManager.class);
9599 final ContentCaptureManager ccm = mContext
9600 .getSystemService(ContentCaptureManager.class);
9802 ContentCaptureManager ccm = ai.mContentCaptureManager;
28774 ContentCaptureManager mContentCaptureManager;
28812 ContentCaptureManager getContentCaptureManager(@NonNull Context context) { in getContentCaptureManager()
28816 mContentCaptureManager = context.getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
DViewRootImpl.java110 import android.view.contentcapture.ContentCaptureManager;
3581 final ContentCaptureManager ccm = mAttachInfo.getContentCaptureManager(mContext); in isContentCaptureReallyEnabled()
3619 final ContentCaptureManager ccm = mAttachInfo.mContentCaptureManager; in handleContentCaptureFlush()
/frameworks/base/core/java/android/widget/
DTextView.java165 import android.view.contentcapture.ContentCaptureManager;
10600 final ContentCaptureManager cm = mContext.getSystemService(ContentCaptureManager.class); in notifyListeningManagersAfterTextChanged()
/frameworks/base/config/
Dpreloaded-classes4091 android.view.contentcapture.ContentCaptureManager$ContentCaptureClient
4092 android.view.contentcapture.ContentCaptureManager
Dboot-image-profile.txt2173 …y$102;->createService(Landroid/app/ContextImpl;)Landroid/view/contentcapture/ContentCaptureManager;
36807 Landroid/view/contentcapture/ContentCaptureManager$ContentCaptureClient;
36808 Landroid/view/contentcapture/ContentCaptureManager;
/frameworks/base/api/
Dtest-current.txt4463 public final class ContentCaptureManager {
Dsystem-current.txt10473 public final class ContentCaptureManager {
Dcurrent.txt54353 public final class ContentCaptureManager {
/frameworks/base/non-updatable-api/
Dsystem-current.txt10371 public final class ContentCaptureManager {
Dcurrent.txt54209 public final class ContentCaptureManager {