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

1 2 3

  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
RuntimeDocumentClipper.java 38 import com.android.documentsui.services.FileOperationService.OpType;
56 private static final String OP_TYPE_KEY = "clipper:opType";
93 Function<String, Uri> uriBuilder, Selection selection, @OpType int opType) {
106 return getClipDataForDocuments(uris, opType);
111 List<Uri> uris, @OpType int opType, DocumentInfo parent) {
112 ClipData clipData = getClipDataForDocuments(uris, opType);
119 public ClipData getClipDataForDocuments(List<Uri> uris, @OpType int opType) {
    [all...]
DocumentClipper.java 29 import com.android.documentsui.services.FileOperationService.OpType;
51 @OpType int opType);
56 ClipData getClipDataForDocuments(List<Uri> uris, @OpType int opType, DocumentInfo parent);
61 ClipData getClipDataForDocuments(List<Uri> uris, @OpType int opType);
120 * @param opType the operation type
126 @OpType int opType,
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentClipper.java 28 import com.android.documentsui.services.FileOperationService.OpType;
44 public final TestEventListener<Integer> opType = new TestEventListener<>();
53 int opType) {
59 @FileOperationService.OpType int opType) {
65 @FileOperationService.OpType int opType, DocumentInfo parent) {
103 @OpType int opType, Callback callback) {
105 this.opType.accept(opType)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
DspBufferMath.java 60 int opType = estimateOperandsType(a, b);
62 if (opType == OPERANDS_TYPE_MIXED) {
69 if (opType == OPERANDS_TYPE_UNKNOWN) {
74 switch (opType) {
99 switch (opType) {
132 int opType = estimateOperandsType(a, b);
134 if (opType == OPERANDS_TYPE_MIXED) {
141 if (opType == OPERANDS_TYPE_UNKNOWN) {
146 switch (opType) {
176 switch (opType) {
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/ui/
DialogController.java 32 import com.android.documentsui.services.FileOperationService.OpType;
44 void showFileOperationStatus(int status, int opType, int docCount);
111 public void showFileOperationStatus(@Status int status, @OpType int opType,
127 if (shouldShowProgressDialogForOperation(opType)) {
133 switch (opType) {
150 throw new UnsupportedOperationException("Unsupported Operation: " + opType);
154 private boolean shouldShowProgressDialogForOperation(@OpType int opType) {
156 if (opType == FileOperationService.OPERATION_DELETE)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DragAndDropManager.java 38 import com.android.documentsui.services.FileOperationService.OpType;
333 final @OpType int opType = calculateOpType(mClipData, destRoot);
334 switch (opType) {
343 throw new IllegalStateException("Unknown opType: " + opType);
384 final @OpType int opType = calculateOpType(clipData, destRoot);
389 dropOnRootDocument(clipData, localState, destRoot, doc, opType, callback);
400 @OpType int opType
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
FileOperation.java 39 import com.android.documentsui.services.FileOperationService.OpType;
50 private final @OpType int mOpType;
59 FileOperation(@OpType int opType, UrisSupplier srcs, DocumentStack destination) {
60 assert(opType != OPERATION_UNKNOWN);
63 mOpType = opType;
73 public @OpType int getOpType() {
100 builder.append("opType=").append(mOpType);
244 private MoveDeleteOperation(@OpType int opType, UrisSupplier srcs
    [all...]
ResolvedResourcesJob.java 31 import com.android.documentsui.services.FileOperationService.OpType;
49 ResolvedResourcesJob(Context service, Listener listener, String id, @OpType int opType,
51 super(service, listener, id, opType, destination, srcs, features);
Job.java 53 import com.android.documentsui.services.FileOperationService.OpType;
92 final @OpType int operationType;
121 @OpType int opType, DocumentStack stack, UrisSupplier srcs, Features features) {
123 assert(opType != OPERATION_UNKNOWN);
128 this.operationType = opType;
FileOperations.java 32 import com.android.documentsui.services.FileOperationService.OpType;
138 * @param opType file operation type {@link OpType}.
141 void onOperationResult(@Status int status, @OpType int opType, int docCount);
CopyJob.java 73 import com.android.documentsui.services.FileOperationService.OpType;
115 CopyJob(Context service, Listener listener, String id, @OpType int opType,
117 super(service, listener, id, opType, destination, srcs, features);
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestJob.java 31 import com.android.documentsui.services.FileOperationService.OpType;
42 TestJob(Context service, Listener listener, String id, @OpType int opType, DocumentStack stack,
44 super(service, listener, id, opType, stack, srcs, features);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/services/
AbstractJobTest.java 38 import com.android.documentsui.services.FileOperationService.OpType;
97 final T createJob(@OpType int opType, List<Uri> srcs, Uri srcParent, Uri destination)
104 .withOpType(opType)
AbstractCopyJobTest.java 26 import com.android.documentsui.services.FileOperationService.OpType;
33 private final @OpType int mOpType;
35 AbstractCopyJobTest(@OpType int opType) {
36 mOpType = opType;
FileOperationServiceTest.java 40 import com.android.documentsui.services.FileOperationService.OpType;
382 private final @OpType int mOpType;
387 @OpType int opType, UrisSupplier srcs, DocumentStack destination) {
388 super(opType, srcs, destination);
389 mOpType = opType;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/ui/
TestDialogController.java 50 public void showFileOperationStatus(int status, int opType, int docCount) {
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
DragAndDropManagerTests.java 88 @FileOperationService.OpType int opType, int docCount) {
667 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_COPY);
693 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_MOVE);
726 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_COPY);
767 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_COPY);
789 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_MOVE);
811 mClipper.opType.assertLastArgument(FileOperationService.OPERATION_COPY);
    [all...]
  /external/icu/icu4c/source/i18n/
regexcmp.cpp     [all...]
rematch.cpp     [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/files/
FilesActivity.java 260 final int opType = intent.getIntExtra(
273 opType);
  /frameworks/base/core/java/com/android/internal/app/procstats/
ServiceState.java 351 public long getDuration(int opType, int curState, long startTime, int memFactor,
353 int state = opType + (memFactor*SERVICE_COUNT);
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
JarSourceCode.java     [all...]
  /external/skia/tools/debugger/
SkDrawCommand.h 27 enum OpType {
71 SkDrawCommand(OpType opType);
110 OpType getType() const { return fOpType; }
122 static const char* GetCommandString(OpType type);
149 OpType fOpType;
  /external/conscrypt/common/src/jni/main/cpp/
NativeCrypto.cpp     [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 527 milliseconds

1 2 3