Home
last modified time | relevance | path

Searched refs:getOpType (Results 1 – 7 of 7) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/
DTestValidateOperations.cpp56 ANeuralNetworksOperandType getOpType(int32_t opcode, uint32_t dimCount = 0, in getOpType() function
1042 ANeuralNetworksOperandType input0 = getOpType(inputOperandType, 4, inputDimensions); in argMinMaxTest()
1078 ANeuralNetworksOperandType input = getOpType(inputOperandType, 4, inputDimensions); in dequantizeOpTest()
1079 ANeuralNetworksOperandType output = getOpType(outputOperandType, 4, inputDimensions); in dequantizeOpTest()
1101 ANeuralNetworksOperandType input0 = getOpType(inputOperandType, 4, inputDimensions); in expandDimsTest()
1108 ANeuralNetworksOperandType output = getOpType(inputOperandType, 5, outputDimensions); in expandDimsTest()
1124 ANeuralNetworksOperandType input0 = getOpType(inputOperandType, 4, inputDimensions); in gatherTest()
1136 ANeuralNetworksOperandType output = getOpType(inputOperandType, 7, outputDimensions); in gatherTest()
1230 ANeuralNetworksOperandType input0 = getOpType(inputOperandType, 4, inputDimensions); in splitTest()
1242 ANeuralNetworksOperandType output0 = getOpType(inputOperandType, 2, outputDimensions); in splitTest()
[all …]
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
DRuntimeDocumentClipper.java270 @OpType int opType = getOpType(bundle); in copyFromClipData()
274 FileOperations.Callback.STATUS_REJECTED, getOpType(clipData), 0); in copyFromClipData()
315 private @OpType int getOpType(ClipData data) { in getOpType() method in RuntimeDocumentClipper
317 return getOpType(bundle); in getOpType()
320 private @OpType int getOpType(PersistableBundle bundle) { in getOpType() method in RuntimeDocumentClipper
/packages/apps/DocumentsUI/src/com/android/documentsui/ui/
DDialogController.java125 assert(operation.getOpType() != FileOperationService.OPERATION_UNKNOWN); in showProgressDialog()
127 if (!shouldShowProgressDialogForOperation(operation.getOpType())) { in showProgressDialog()
DOperationProgressDialog.java91 switch (operation.getOpType()) { in create()
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperation.java77 public @OpType int getOpType() { in getOpType() method in FileOperation
260 switch(getOpType()) { in createJob()
269 throw new UnsupportedOperationException("Unsupported op type: " + getOpType()); in createJob()
DFileOperations.java68 callback.onOperationResult(Callback.STATUS_ACCEPTED, operation.getOpType(), in start()
DFileOperationService.java257 Future<?> future = getExecutorService(operation.getOpType()).submit(job); in handleOperation()