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

1 2 3

  /toolchain/binutils/binutils-2.25/gas/config/
xtensa-relax.h 94 typedef enum op_type OpType;
122 OpType typ; /* CONSTANT: op_data is a constant.
134 OpType typ;
177 extern bfd_boolean xg_has_userdef_op_fn (OpType);
178 extern long xg_apply_userdef_op_fn (OpType, long);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCWin64EH.h 29 typedef Win64EH::UnwindOpcodes OpType;
31 OpType Operation;
36 MCWin64EHInstruction(OpType Op, MCSymbol *L, unsigned Reg)
43 MCWin64EHInstruction(OpType Op, MCSymbol *L, unsigned Reg, unsigned Off)
51 MCWin64EHInstruction(OpType Op, MCSymbol *L, bool Code)
55 OpType getOperation() const { return Operation; }
MCDwarf.h 232 enum OpType { SameValue, Remember, Restore, Move, RelMove };
234 OpType Operation;
240 MCCFIInstruction(OpType Op, MCSymbol *L)
244 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned Register)
252 MCCFIInstruction(OpType Op, MCSymbol *L, const MachineLocation &D,
257 OpType getOperation() const { return Operation; }
  /external/llvm/utils/TableGen/
AsmWriterInst.h 28 enum OpType {
53 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
56 OpType op = isLiteralTextOperand)
62 OpType op = isMachineInstrOperand)
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterInst.h 28 enum OpType {
57 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
60 OpType op = isLiteralTextOperand)
67 OpType op = isMachineInstrOperand)
  /packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
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...]
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...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitcodeDecoders.h 44 /// operates on OpType. Returns true if the conversion
47 bool DecodeBinaryOpcode(uint64_t NaClOpcode, Type *OpType,
  /system/update_engine/scripts/update_payload/
checker_unittest.py 32 'REPLACE': common.OpType.REPLACE,
33 'REPLACE_BZ': common.OpType.REPLACE_BZ,
34 'MOVE': common.OpType.MOVE,
35 'BSDIFF': common.OpType.BSDIFF,
36 'SOURCE_COPY': common.OpType.SOURCE_COPY,
37 'SOURCE_BSDIFF': common.OpType.SOURCE_BSDIFF,
38 'ZERO': common.OpType.ZERO,
39 'DISCARD': common.OpType.DISCARD,
40 'REPLACE_XZ': common.OpType.REPLACE_XZ,
41 'IMGDIFF': common.OpType.IMGDIFF
    [all...]
applier.py 236 if op.type == common.OpType.REPLACE_BZ:
376 op.type != common.OpType.IMGDIFF):
414 if op.type == common.OpType.IMGDIFF:
462 if op.type in (common.OpType.REPLACE, common.OpType.REPLACE_BZ):
464 elif op.type == common.OpType.MOVE:
466 elif op.type == common.OpType.BSDIFF:
468 elif op.type == common.OpType.SOURCE_COPY:
471 elif op.type in (common.OpType.SOURCE_BSDIFF, common.OpType.IMGDIFF)
    [all...]
checker.py 723 if op.type == common.OpType.REPLACE:
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
OperationDialogFragment.java 33 import com.android.documentsui.services.FileOperationService.OpType;
66 @OpType int operationType) {
88 final @OpType int operationType =
  /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...]
  /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...]
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);
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);
  /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)
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCDwarf.h 335 enum OpType {
354 OpType Operation;
363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V)
369 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2)
469 OpType getOperation() const { return Operation; }

Completed in 1358 milliseconds

1 2 3