Searched refs:ModeId (Results 1 – 11 of 11) sorted by relevance
/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.DEVICE_TESTDEX || this == ModeId.APP_PROCESS; in isDevice() 126 return this == ModeId.DEVICE || this == ModeId.DEVICE_TESTDEX; in supportsChroot()
|
D | Vogar.java | 65 ModeId modeId = ModeId.DEVICE; 530 if (modeId == ModeId.ACTIVITY && debugPort != null) { in parseArgs() 535 if (debugApp && modeId != ModeId.ACTIVITY) { in parseArgs() 654 if (modeId == ModeId.ACTIVITY) { in run() 671 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() 120 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/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | CodeGenHwModes.cpp | 42 unsigned ModeId = CGH.getHwModeId(Modes[i]->getName()); in HwModeSelect() local 43 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect()
|