/external/vogar/src/vogar/ |
D | ExpectationStore.java | 111 ModeId mode, in parse() 123 public void parse(File expectationsFile, ModeId mode, Variant variant) throws IOException { in parse() 146 private void readExpectation(JsonReader reader, ModeId mode, Variant variant) in readExpectation() 153 Map<ModeId, Set<Variant>> modeVariants = null; in readExpectation() 154 Set<ModeId> modes = null; in readExpectation() 225 private Set<ModeId> readModes(JsonReader reader) throws IOException { in readModes() 226 Set<ModeId> result = EnumSet.noneOf(ModeId.class); in readModes() 229 result.add(ModeId.valueOf(reader.nextString().toUpperCase())); in readModes() 238 private Map<ModeId, Set<Variant>> readModesAndVariants(JsonReader reader) throws IOException { in readModesAndVariants() 239 Map<ModeId, Set<Variant>> result = new EnumMap<ModeId, Set<Variant>>(ModeId.class); in readModesAndVariants() [all …]
|
D | ModeId.java | 23 public enum ModeId { enum 96 return isHost() || this == ModeId.JVM; in isLocal() 106 return this == ModeId.DEVICE || this == ModeId.APP_PROCESS; in isDevice() 126 return this == ModeId.DEVICE; in supportsChroot()
|
D | Vogar.java | 81 ModeId modeId = ModeId.DEVICE; 545 if (modeId == ModeId.ACTIVITY && debugPort != null) { in parseArgs() 550 if (debugApp && modeId != ModeId.ACTIVITY) { in parseArgs() 669 if (modeId == ModeId.ACTIVITY) { in run() 686 if (modeId == ModeId.ACTIVITY) { in run()
|
D | Run.java | 139 this.maxConcurrentActions = (vogar.stream || vogar.modeId == ModeId.ACTIVITY) in Run() 189 private Mode createMode(ModeId modeId, Variant variant) { in createMode()
|
/external/vogar/test/vogar/android/ |
D | DeviceRuntimeAdbTargetTest.java | 29 import vogar.ModeId; 57 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testAdbTarget() 89 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testAdbTarget_Benchmark()
|
D | HostRuntimeLocalTargetTest.java | 33 import vogar.ModeId; 61 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32); in testLocalTarget() 123 Mode hostRuntime = new HostRuntime(run, ModeId.HOST, Variant.X32); in testLocalTarget_Benchmark()
|
D | DeviceRuntimeSshTargetTest.java | 26 import vogar.ModeId; 51 Mode deviceRuntime = new DeviceRuntime(run, ModeId.DEVICE, Variant.X32, in testSshTarget()
|
/external/vogar/src/vogar/android/ |
D | DeviceRuntime.java | 32 import vogar.ModeId; 43 private final ModeId modeId; 46 public DeviceRuntime(Run run, ModeId modeId, Variant variant, in DeviceRuntime() 98 if (modeId == ModeId.APP_PROCESS) { in newVmCommandBuilder()
|
D | HostRuntime.java | 31 import vogar.ModeId; 45 private final ModeId modeId; 48 public HostRuntime(Run run, ModeId modeId, Variant variant) { in HostRuntime()
|
D | AndroidSdk.java | 38 import vogar.ModeId; 73 Log log, Mkdir mkdir, ModeId modeId, Language language) { in createAndroidSdk()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenHwModes.cpp | 41 unsigned ModeId = CGH.getHwModeId(Modes[i]->getName()); in HwModeSelect() local 42 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUInstPrinter.cpp | 1078 for (unsigned ModeId = ID_MIN; ModeId <= ID_MAX; ++ModeId) { in printVGPRIndexMode() local 1079 if (Val & (1 << ModeId)) { in printVGPRIndexMode() 1082 O << IdSymbolic[ModeId]; in printVGPRIndexMode()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
D | AMDGPUInstPrinter.cpp | 1177 for (unsigned ModeId = ID_MIN; ModeId <= ID_MAX; ++ModeId) { in printVGPRIndexMode() local 1178 if (Val & (1 << ModeId)) { in printVGPRIndexMode() 1181 O << IdSymbolic[ModeId]; in printVGPRIndexMode()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/ |
D | AMDGPUAsmParser.cpp | 5713 for (unsigned ModeId = ID_MIN; ModeId <= ID_MAX; ++ModeId) { in parseGPRIdxMacro() local 5714 if (trySkipId(IdSymbolic[ModeId])) { in parseGPRIdxMacro() 5715 Mode = 1 << ModeId; in parseGPRIdxMacro()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
D | AMDGPUAsmParser.cpp | 6506 for (unsigned ModeId = ID_MIN; ModeId <= ID_MAX; ++ModeId) { in parseGPRIdxMacro() local 6507 if (trySkipId(IdSymbolic[ModeId])) { in parseGPRIdxMacro() 6508 Mode = 1 << ModeId; in parseGPRIdxMacro()
|