HomeSort by relevance Sort by last modified time
    Searched full:componentname (Results 151 - 175 of 2584) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowUtils.java 19 import android.content.ComponentName;
39 private static ComponentName sDeviceOwnerComponentName;
83 public static void setDeviceOwnerComponent(ComponentName componentName) {
84 sDeviceOwnerComponentName = componentName;
88 public static ComponentName getDeviceOwnerComponent(Context context) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/autofill/
AutofillHelper.java 20 import android.content.ComponentName;
61 candidates.add(new DefaultAppInfo(context, pm, myUserId, new ComponentName(
69 * Get flattened ComponentName of current autofill service
78 * Get flattened ComponentName of current autofill service
81 public static ComponentName getCurrentAutofillAsComponentName(@NonNull Context context) {
84 ? null : ComponentName.unflattenFromString(flattenedName);
93 final ComponentName name = getCurrentAutofillAsComponentName(context);
96 if ((name == null && appInfo.componentName == null)
97 || (name != null && name.equals(appInfo.componentName))) {
110 if (appInfo == null || appInfo.componentName == null)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/dream/
DreamBackend.java 20 import android.content.ComponentName;
58 public ComponentName componentName;
59 public ComponentName settingsComponentName;
67 sb.append(',').append(componentName);
114 ComponentName activeDream = getActiveDream();
126 dreamInfo.componentName = getDreamComponentName(resolveInfo);
127 dreamInfo.isActive = dreamInfo.componentName.equals(activeDream);
135 public ComponentName getDefaultDream() {
147 ComponentName cn = getActiveDream()
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/drawer/
CategoryManagerTest.java 21 import android.content.ComponentName;
128 new Intent().setComponent(new ComponentName(testPackage, "class1"));
132 new Intent().setComponent(new ComponentName(testPackage, "class2"));
136 new Intent().setComponent(new ComponentName(testPackage, "class3"));
161 new Intent().setComponent(new ComponentName(testPackage2, "class1"));
165 new Intent().setComponent(new ComponentName(testPackage1, "class2"));
169 new Intent().setComponent(new ComponentName(testPackage1, "class3"));
194 new Intent().setComponent(new ComponentName(testPackage, "class1"));
198 new Intent().setComponent(new ComponentName(testPackage, "class2"));
202 new Intent().setComponent(new ComponentName(testPackage, "class3"))
    [all...]
  /cts/tests/framework/base/activitymanager/app27/src/android/server/am/app27/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName SDK_27_LAUNCHING_ACTIVITY =
  /cts/tests/framework/base/activitymanager/appDebuggable/src/android/server/am/debuggable/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName DEBUGGABLE_APP_ACTIVITY =
  /cts/tests/framework/base/activitymanager/appThirdUid/src/android/server/am/third/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName THIRD_ACTIVITY = component(Components.class, "ThirdActivity");
  /cts/tests/framework/base/activitymanager/translucentapp/src/android/server/am/translucentapp/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName TRANSLUCENT_LANDSCAPE_ACTIVITY =
  /cts/tests/framework/base/activitymanager/translucentappsdk26/src/android/server/am/translucentapp26/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName SDK26_TRANSLUCENT_LANDSCAPE_ACTIVITY = component(
  /cts/tests/framework/base/windowmanager/alertwindowapp/src/android/server/wm/alertwindowapp/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName ALERT_WINDOW_TEST_ACTIVITY =
  /cts/tests/framework/base/windowmanager/alertwindowappsdk25/src/android/server/wm/alertwindowappsdk25/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName SDK25_ALERT_WINDOW_TEST_ACTIVITY =
  /cts/tests/framework/base/windowmanager/alertwindowservice/src/android/server/wm/alertwindowservice/
Components.java 19 import android.content.ComponentName;
24 public static final ComponentName ALERT_WINDOW_SERVICE =
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/ComponentName/
ComponentName.c 14 ComponentName.c
25 #include EFI_PROTOCOL_DEFINITION (ComponentName)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 3 import android.content.ComponentName;
31 private ComponentName componentName;
40 componentName = new ComponentName(packageContext, cls);
57 componentName = other.componentName;
151 componentName = new ComponentName(packageName, className);
162 componentName = new ComponentName(packageContext.getPackageName(), className)
    [all...]
  /frameworks/base/core/java/android/app/
IServiceConnection.aidl 20 import android.content.ComponentName;
24 void connected(in ComponentName name, IBinder service, boolean dead);
  /frameworks/base/core/java/android/print/
IPrintSpoolerClient.aidl 19 import android.content.ComponentName;
30 void onAllPrintJobsForServiceHandled(in ComponentName printService);
  /frameworks/base/core/java/android/provider/
SettingsStringUtil.java 20 import android.content.ComponentName;
117 public static class ComponentNameSet extends ColonDelimitedSet<ComponentName> {
123 protected ComponentName itemFromString(String s) {
124 return ComponentName.unflattenFromString(s);
128 protected String itemToString(ComponentName item) {
132 public static String add(String delimitedElements, ComponentName element) {
141 public static String remove(String delimitedElements, ComponentName element) {
150 public static boolean contains(String delimitedElements, ComponentName element) {
  /frameworks/base/core/java/android/service/chooser/
IChooserTargetService.aidl 19 import android.content.ComponentName;
28 void getChooserTargets(in ComponentName targetComponentName,
  /frameworks/base/core/java/android/service/vr/
IVrListener.aidl 19 import android.content.ComponentName;
23 void focusedActivityChanged(in ComponentName component, boolean running2dInVr, int pid);
  /frameworks/base/telecomm/java/com/android/internal/telecom/
RemoteServiceCallback.aidl 19 import android.content.ComponentName;
28 void onResult(in List<ComponentName> components, in List<IBinder> callServices);
  /packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/
TestInputControlUtils.java 18 import android.content.ComponentName;
27 new ComponentName(
  /frameworks/support/compat/src/main/java/androidx/core/app/
NavUtils.java 20 import android.content.ComponentName;
141 final ComponentName target = new ComponentName(sourceActivity, parentName);
162 * @throws NameNotFoundException if the ComponentName for sourceActivityClass is invalid
169 new ComponentName(context, sourceActivityClass));
173 final ComponentName target = new ComponentName(context, parentActivity);
187 * @param componentName ComponentName for the source Activity
189 * @throws NameNotFoundException if the ComponentName for sourceActivityClass is invali
    [all...]
  /cts/tests/tests/appcomponentfactory/src/android/app/componentfactory/cts/
AppComponentFactoryTest.java 19 import android.content.ComponentName;
41 .setComponent(new ComponentName(mContext.getPackageName(),
49 .setComponent(new ComponentName(mContext.getPackageName(),
56 .setComponent(new ComponentName(mContext.getPackageName(),
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyActivityEvent.java 20 import android.content.ComponentName;
30 private ComponentName mApp;
33 public MonkeyActivityEvent(ComponentName app) {
38 public MonkeyActivityEvent(ComponentName app, long arg) {
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
Shims.java 5 import android.content.ComponentName;
31 ComponentName mActivityToLaunch;
41 ComponentName name;
57 Node(ComponentName data) {}

Completed in 1023 milliseconds

1 2 3 4 5 67 8 91011>>