Home
last modified time | relevance | path

Searched refs:getFlagValueAsPath (Results 1 – 2 of 2) sorted by relevance

/tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/
DBuildModuleCommand.java87 flagParser.getFlagValueAsPath(MANIFEST_FLAG).ifPresent(builder::setManifestPath); in fromFlags()
88 flagParser.getFlagValueAsPath(MANIFEST_DIR_FLAG).ifPresent(builder::setManifestDirPath); in fromFlags()
89 flagParser.getFlagValueAsPath(DEX_FLAG).ifPresent(builder::setDexPath); in fromFlags()
90 flagParser.getFlagValueAsPath(DEX_DIR_FLAG).ifPresent(builder::setDexDirPath); in fromFlags()
91 flagParser.getFlagValueAsPath(RESOURCES_DIR_FLAG).ifPresent(builder::setResourcesDirPath); in fromFlags()
92 flagParser.getFlagValueAsPath(ASSETS_DIR_FLAG).ifPresent(builder::setAssetsDirPath); in fromFlags()
93 flagParser.getFlagValueAsPath(NATIVE_DIR_FLAG).ifPresent(builder::setNativeDirPath); in fromFlags()
/tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/utils/
DFlagParser.java114 public Optional<Path> getFlagValueAsPath(String flagName) { in getFlagValueAsPath() method in FlagParser