HomeSort by relevance Sort by last modified time
    Searched defs:activityType (Results 1 - 25 of 30) sorted by null

1 2

  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
WaitForValidActivityState.java 44 public final int activityType;
55 this.activityType = ACTIVITY_TYPE_UNDEFINED;
63 this.activityType = builder.mActivityType;
72 if (activityType != ACTIVITY_TYPE_UNDEFINED) {
73 sb.append(" type=").append(activityTypeName(activityType));
100 private static String activityTypeName(int activityType) {
101 switch (activityType) {
108 throw new IllegalArgumentException("Unknown ACTIVITY_TYPE_: " + activityType);
143 public Builder setActivityType(int activityType) {
144 mActivityType = activityType;
    [all...]
ActivityAndWindowManagersState.java 288 void waitForFocusedStack(int windowingMode, int activityType) {
290 (activityType == ACTIVITY_TYPE_UNDEFINED
291 || state.getFocusedStackActivityType() == activityType)
389 final int activityType = state.activityType;
412 if (activityType != ACTIVITY_TYPE_UNDEFINED
413 && ws.getActivityType() != activityType) {
511 void assertContainsStack(String msg, int windowingMode, int activityType) {
512 assertTrue(msg, mAmState.containsStack(windowingMode, activityType));
513 assertTrue(msg, mWmState.containsStack(windowingMode, activityType));
    [all...]
  /cts/tests/tests/keystore/src/android/server/am/
WaitForValidActivityState.java 44 public final int activityType;
55 this.activityType = ACTIVITY_TYPE_UNDEFINED;
63 this.activityType = builder.mActivityType;
72 if (activityType != ACTIVITY_TYPE_UNDEFINED) {
73 sb.append(" type=").append(activityTypeName(activityType));
100 private static String activityTypeName(int activityType) {
101 switch (activityType) {
108 throw new IllegalArgumentException("Unknown ACTIVITY_TYPE_: " + activityType);
138 public Builder setActivityType(int activityType) {
139 mActivityType = activityType;
    [all...]
ActivityAndWindowManagersState.java 239 final int activityType = state.activityType;
261 if (activityType != ACTIVITY_TYPE_UNDEFINED
262 && ws.getActivityType() != activityType) {
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
RemoteAnimationTargetCompat.java 38 public final int activityType;
61 activityType = app.windowConfiguration.getActivityType();
  /frameworks/base/core/java/android/hardware/location/
ActivityRecognitionHardware.java 100 int activityType = getActivityType(activity);
101 return activityType != INVALID_ACTIVITY_TYPE;
120 int activityType = getActivityType(activity);
121 if (activityType == INVALID_ACTIVITY_TYPE) {
125 int result = nativeEnableActivityEvent(activityType, eventType, reportLatencyNs);
127 mSupportedActivitiesEnabledEvents[activityType][eventType] = EVENT_TYPE_ENABLED;
137 int activityType = getActivityType(activity);
138 if (activityType == INVALID_ACTIVITY_TYPE) {
142 int result = nativeDisableActivityEvent(activityType, eventType);
144 mSupportedActivitiesEnabledEvents[activityType][eventType] = EVENT_TYPE_DISABLED
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java 213 final int activityType = winConfig.getActivityType();
215 if (homeStackInfo == null && activityType == ACTIVITY_TYPE_HOME) {
217 } else if (fullscreenStackInfo == null && activityType == ACTIVITY_TYPE_STANDARD
221 } else if (recentsStackInfo == null && activityType == ACTIVITY_TYPE_RECENTS) {
  /frameworks/base/services/core/java/com/android/server/wm/
ConfigurationContainer.java 357 /*@WindowConfiguration.ActivityType*/
363 public void setActivityType(/*@WindowConfiguration.ActivityType*/ int activityType) {
365 if (currentActivityType == activityType) {
370 + " activityType=" + activityTypeToString(activityType));
373 mTmpConfig.windowConfiguration.setActivityType(activityType);
394 /*@WindowConfiguration.ActivityType*/ final int activityType = getActivityType();
395 return activityType == ACTIVITY_TYPE_STANDARD || activityType == ACTIVITY_TYPE_UNDEFINED
    [all...]
TaskStack.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
Recents.java 484 final int activityType = runningTask != null
489 activityType == ACTIVITY_TYPE_HOME || activityType == ACTIVITY_TYPE_RECENTS;
    [all...]
RecentsImpl.java 626 final int activityType = runningTask.configuration.windowConfiguration.getActivityType();
629 if (activityType == ACTIVITY_TYPE_HOME || activityType == ACTIVITY_TYPE_RECENTS) return;
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityDisplay.java 201 <T extends ActivityStack> T getStack(int windowingMode, int activityType) {
202 if (activityType == ACTIVITY_TYPE_HOME) {
204 } else if (activityType == ACTIVITY_TYPE_RECENTS) {
215 if (stack.isCompatible(windowingMode, activityType)) {
222 private boolean alwaysCreateStack(int windowingMode, int activityType) {
225 return activityType == ACTIVITY_TYPE_STANDARD
237 <T extends ActivityStack> T getOrCreateStack(int windowingMode, int activityType,
239 if (!alwaysCreateStack(windowingMode, activityType)) {
240 T stack = getStack(windowingMode, activityType);
245 return createStack(windowingMode, activityType, onTop)
    [all...]
RecentTasks.java     [all...]
ActivityStarter.java     [all...]
ActivityRecord.java     [all...]
ActivityStack.java 112 import android.app.WindowConfiguration.ActivityType;
454 int windowingMode, int activityType, boolean onTop) {
465 setActivityType(activityType);
659 public boolean isCompatible(int windowingMode, int activityType) {
661 if (activityType == ACTIVITY_TYPE_UNDEFINED) {
664 activityType = ACTIVITY_TYPE_STANDARD;
667 if (display != null && activityType == ACTIVITY_TYPE_STANDAR
    [all...]
ActivityStackSupervisor.java 119 import android.app.WindowConfiguration.ActivityType;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 704 IType activityType = javaProject.findType(CLASS_ACTIVITY);
705 if (activityType != null) {
707 activityType.newTypeHierarchy(javaProject, new NullProgressMonitor());
708 activityTypes = hierarchy.getAllSubtypes(activityType);
811 IType activityType = javaProject.findType(CLASS_ACTIVITY);
812 if (activityType != null) {
813 IMethod method = activityType.getMethod(
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogAdapter.java 131 private final int activityType;
383 if (activityType == ACTIVITY_TYPE_DIALTACTS) {
529 int activityType) {
541 this.activityType = activityType;
    [all...]
CallLogFragment.java 326 int activityType =
353 activityType);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 668 IType activityType = null;
671 activityType = javaProject.findType(CLASS_ACTIVITY);
672 if (activityType != null) {
673 scope = SearchEngine.createHierarchyScope(activityType);
690 if (!ok && activityType != null) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 793 IType activityType = null;
796 activityType = javaProject.findType(CLASS_ACTIVITY);
798 if (activityType == null) {
801 activityType = p.findType(CLASS_ACTIVITY);
802 if (activityType != null) {
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-swf-libraries/1.11.18/
aws-java-sdk-swf-libraries-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-simpleworkflow/1.11.18/
aws-java-sdk-simpleworkflow-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-android-extensions/1.0.0/
kotlin-android-extensions-1.0.0.jar 

Completed in 2666 milliseconds

1 2