HomeSort by relevance Sort by last modified time
    Searched full:componentname (Results 426 - 450 of 1611) sorted by null

<<11121314151617181920>>

  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
ComplicationSimpleConfigActivity.java 19 import android.content.ComponentName;
87 ComponentName watchFace = new ComponentName(
119 ComponentName watchFace;
125 public ComplicationItem(ComponentName watchFace, int complicationId, int[] supportedTypes,
  /frameworks/base/cmds/dpm/src/com/android/commands/dpm/
Dpm.java 23 import android.content.ComponentName;
52 private ComponentName mComponent = null;
193 private ComponentName parseComponentName(String component) {
194 ComponentName cn = ComponentName.unflattenFromString(component);
  /frameworks/base/core/java/android/content/pm/
LauncherActivityInfo.java 19 import android.content.ComponentName;
41 private ComponentName mComponentName;
54 mComponentName = new ComponentName(info.packageName, info.name);
65 * @return ComponentName of the activity
67 public ComponentName getComponentName() {
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
TileLifecycleManagerTests.java 20 import android.content.ComponentName;
59 ComponentName component = new ComponentName(mContext, FakeTileService.class);
172 pm.setComponentEnabledSetting(new ComponentName(getContext(), FakeTileService.class),
178 pm.setComponentEnabledSetting(new ComponentName(getContext(), FakeTileService.class),
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeConditions.java 19 import android.content.ComponentName;
39 private final ArrayMap<Uri, ComponentName> mSubscriptions = new ArrayMap<>();
78 final ComponentName component = mSubscriptions.valueAt(i);
100 public void onServiceAdded(ComponentName component) {
161 private boolean isAutomaticActive(ComponentName component) {
  /frameworks/base/services/print/java/com/android/server/print/
RemotePrintServiceRecommendationService.java 21 import android.content.ComponentName;
96 ComponentName serviceName = new ComponentName(
198 public void onServiceConnected(ComponentName name, IBinder service) {
227 public void onServiceDisconnected(ComponentName name) {
  /frameworks/base/services/restrictions/java/com/android/server/restrictions/
RestrictionsManagerService.java 21 import android.content.ComponentName;
102 ComponentName restrictionsProvider =
135 ComponentName restrictionsProvider =
148 intent.setComponent(new ComponentName(ri.activityInfo.packageName,
168 ComponentName permProvider = mDpm.getRestrictionsProvider(userHandle);
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 20 import android.content.ComponentName;
49 @Override public void onServiceConnected(ComponentName name, IBinder service) {
56 @Override public void onServiceDisconnected(ComponentName name) {
64 @Override public void onServiceConnected(ComponentName name, IBinder service) {
71 @Override public void onServiceDisconnected(ComponentName name) {
  /packages/apps/Music/src/com/android/music/
MediaAppWidgetProvider.java 22 import android.content.ComponentName;
83 gm.updateAppWidget(new ComponentName(context, this.getClass()), views);
93 new ComponentName(context, this.getClass()));
177 final ComponentName serviceName = new ComponentName(context, MediaPlaybackService.class);
  /packages/apps/Settings/src/com/android/settings/applications/
ManageAssist.java 20 import android.content.ComponentName;
128 ComponentName assistant = mDefaultAssitPref.getCurrentAssist();
142 final ComponentName currentAssist = mDefaultAssitPref.getCurrentAssist();
171 ComponentName currentAssist = mDefaultAssitPref.getCurrentAssist();
172 ComponentName activeService = mVoiceInputPref.getCurrentService();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DaydreamFragment.java 20 import android.content.ComponentName;
126 final ComponentName currentDreamComponent = mBackend.getActiveDream();
138 final String componentNameString = info.componentName.toShortString();
171 if (!Objects.equals(mBackend.getActiveDream(), dreamInfo.componentName)) {
172 mBackend.setActiveDream(dreamInfo.componentName);
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionService.java 27 import android.content.ComponentName;
350 private void enforceMediaPermissions(ComponentName compName, int pid, int uid,
390 private boolean isEnabledNotificationListener(ComponentName compName, int userId,
406 final ComponentName component =
407 ComponentName.unflattenFromString(components[i]);
522 ComponentName component = receiver.getIntent().getComponent();
540 private ComponentName mRestoredMediaButtonReceiver;
585 ComponentName eventReceiver = ComponentName.unflattenFromString(receiverName);
597 private final ComponentName mComponentName
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DisallowAppsControlActivity.java 21 import android.content.ComponentName;
63 protected ComponentName getAdminComponent() {
71 final ComponentName adminComponent = getAdminComponent();
KeyguardDisabledFeaturesActivity.java 21 import android.content.ComponentName;
74 protected ComponentName getAdminComponent() {
86 final ComponentName adminComponent = getAdminComponent();
VpnTestActivity.java 21 import android.content.ComponentName;
55 private ComponentName mAdminReceiverComponent;
66 mAdminReceiverComponent = new ComponentName(this, DeviceAdminTestReceiver.class.getName());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectionActivity.java 20 import android.content.ComponentName;
58 public void onServiceConnected(ComponentName name, IBinder binder) {
78 public void onServiceDisconnected(ComponentName name) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
OpenCVLibrary.java 18 import android.content.ComponentName;
111 public void onServiceConnected(ComponentName className, IBinder service) {
115 public void onServiceDisconnected(ComponentName className) {
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
TrustAgentInfoTest.java 20 import android.content.ComponentName;
36 private static final ComponentName TRUST_AGENT_COMPONENT =
37 new ComponentName("com.trustagent", "com.trustagent.xxx");
  /cts/hostsidetests/numberblocking/app/src/com/android/cts/numberblocking/hostside/
CallBlockingTest.java 19 import android.content.ComponentName;
92 final String connectionServiceComponentName = new ComponentName(mContext,
109 new ComponentName(
  /cts/hostsidetests/shortcuts/deviceside/common/src/android/content/pm/cts/shortcut/device/common/
ShortcutManagerDeviceTestBase.java 22 import android.content.ComponentName;
111 public ComponentName getActivity(String className) {
112 return new ComponentName(getContext(), getContext().getPackageName() + "." + className);
  /cts/hostsidetests/shortcuts/deviceside/multiuser/src/android/content/pm/cts/shortcut/multiuser/
ShortcutManagerManagedUserTest.java 21 import android.content.ComponentName;
51 new ComponentName(getContext(), MainActivity.class))).build())));
59 new ComponentName(getContext(), MainActivity.class))).build())));
  /cts/tests/tests/content/src/android/content/cts/
ReadableUriExtraToClipDataTest.java 19 import android.content.ComponentName;
84 intent.setComponent(new ComponentName(getContext(), ReadableFileReceiverActivity.class));
96 intent.setComponent(new ComponentName(getContext(), ReadableFileReceiverActivity.class));
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerConnectionTest.java 22 import android.content.ComponentName;
130 public void onServiceConnected(ComponentName className, IBinder service) {
136 public void onServiceDisconnected(ComponentName className) {
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 20 import android.content.ComponentName;
45 public void onServiceConnected(ComponentName className, IBinder service) {
53 public void onServiceDisconnected(ComponentName className) {
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
ServiceRunnerActivity.java 21 import android.content.ComponentName;
81 public void onServiceConnected(ComponentName className, IBinder service) {
96 public void onServiceDisconnected(ComponentName className) {

Completed in 1520 milliseconds

<<11121314151617181920>>