HomeSort by relevance Sort by last modified time
    Searched refs:containerType (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /packages/apps/Launcher3/src/com/android/launcher3/logging/
DumpTargetWrapper.java 25 import com.android.launcher3.model.nano.LauncherDumpProto.ContainerType;
44 public DumpTargetWrapper(int containerType, int id) {
46 node = newContainerTarget(containerType, id);
97 dt.containerType = type;
110 String str = LoggerUtils.getFieldName(t.containerType, ContainerType.class);
111 if (t.containerType == ContainerType.WORKSPACE) {
113 } else if (t.containerType == ContainerType.FOLDER)
    [all...]
LoggerUtils.java 29 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
97 str = getFieldName(t.containerType, ContainerType.class);
98 if (t.containerType == ContainerType.WORKSPACE ||
99 t.containerType == ContainerType.HOTSEAT) {
101 } else if (t.containerType == ContainerType.FOLDER) {
208 public static Target newContainerTarget(int containerType) {
    [all...]
UserEventDispatcher.java 48 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
260 event.srcTarget[0].containerType = srcContainerType;
297 event.srcTarget[1].containerType = parentContainerType;
312 public void logActionBounceTip(int containerType) {
314 newContainerTarget(containerType));
319 public void logActionOnContainer(int action, int dir, int containerType) {
320 logActionOnContainer(action, dir, containerType, 0);
323 public void logActionOnContainer(int action, int dir, int containerType, int pageIndex) {
325 newContainerTarget(containerType));
386 newContainerTarget(ContainerType.WORKSPACE)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherState.java 33 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
80 public static final LauncherState NORMAL = new LauncherState(0, ContainerType.WORKSPACE, 0,
97 * Used for containerType in {@link com.android.launcher3.logging.UserEventDispatcher}
99 public final int containerType;
155 public LauncherState(int id, int containerType, int transitionDuration, int flags) {
156 this.containerType = containerType;
ShortcutAndWidgetContainer.java 28 import com.android.launcher3.CellLayout.ContainerType;
38 @ContainerType private final int mContainerType;
49 public ShortcutAndWidgetContainer(Context context, @ContainerType int containerType) {
53 mContainerType = containerType;
  /external/deqp/modules/glshared/
glsLifetimeTests.hpp 224 Type& elementType, Type& containerType)
227 , m_containerType (containerType) {}
285 Type& elementType, Type& containerType)
286 : Attacher (ctx, elementType, containerType) {}
310 TextureFboAttacher (const Context& ctx, Type& elementType, Type& containerType)
311 : FboAttacher (ctx, elementType, containerType) {}
322 RboFboAttacher (const Context& ctx, Type& elementType, Type& containerType)
323 : FboAttacher (ctx, elementType, containerType) {}
335 Type& elementType, Type& containerType)
336 : Attacher (ctx, elementType, containerType) {}
    [all...]
  /cts/tests/tests/nativemedia/sl/src/
SLObjectCreationTest.cpp 139 formatMimeSrc.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
151 formatMimeSrc.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
233 formatMimeSrc.containerType = SL_CONTAINERTYPE_MPEG_TS;
270 formatMimeSrc.containerType = SL_CONTAINERTYPE_RAW;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedTypeDeclaration.java 73 Optional<ResolvedReferenceTypeDeclaration> containerType();
ResolvedReferenceTypeDeclaration.java 241 if (this.containerType().isPresent()) {
242 return this.containerType().get().findTypeParameter(name);
ResolvedTypeParameterDeclaration.java 94 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
JavaParserTypeVariableDeclaration.java 184 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
185 return asTypeParameter().containerType();
JavaParserAnnotationDeclaration.java 92 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
93 throw new UnsupportedOperationException("containerType is not supported for " + this.getClass().getCanonicalName());
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
DiscoveryBounce.java 21 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.HOTSEAT;
22 import static com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType.PREDICTION;
116 private void show(int containerType) {
119 mLauncher.getUserEventDispatcher().logActionBounceTip(containerType);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistTypeParameter.java 108 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
JavassistTypeDeclarationAdapter.java 84 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionTypeParameter.java 124 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
ReflectionEnumDeclaration.java 81 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
82 return reflectionClassAdapter.containerType();
ReflectionInterfaceDeclaration.java 277 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
278 return reflectionClassAdapter.containerType();
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
UserEventDispatcherExtension.java 47 dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER);
59 target.containerType = LauncherLogProto.ContainerType.TIP;
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1DerEncoder.java 61 Asn1Type containerType = containerAnnotation.type();
62 switch (containerType) {
68 throw new Asn1EncodingException("Unsupported container type: " + containerType);
  /cts/tests/tests/media/libaudiojni/
appendix-b-1-2-recording.cpp 151 mime.containerType = SL_CONTAINERTYPE_WAV;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DefaultPackageTest.java 122 public Optional<ResolvedReferenceTypeDeclaration> containerType() {
  /frameworks/wilhelm/tests/listening/
seekTorture.c 67 mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
  /frameworks/wilhelm/tests/sandbox/
urimime.c 63 format_mime.containerType = SL_CONTAINERTYPE_UNSPECIFIED;
xa.c 85 fmtMime.containerType = XA_CONTAINERTYPE_UNSPECIFIED;

Completed in 1258 milliseconds

1 2 3 4