Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/cluster/
DTradefedConfigObject.java54 TradefedConfigObject(Type type, String className, MultiMap<String, String> optionValues) { in TradefedConfigObject() argument
57 mOptionValues = optionValues; in TradefedConfigObject()
73 MultiMap<String, String> optionValues = new MultiMap<>(); in fromJson() local
81 optionValues.put(key, null); in fromJson()
84 optionValues.put(key, valueArr.getString(j)); in fromJson()
90 return new TradefedConfigObject(type, json.getString("class_name"), optionValues); in fromJson()
DClusterCommandConfigBuilder.java141 MultiMap<String, String> optionValues = configObjDef.getOptionValues(); in createConfigObject() local
143 for (String name : optionValues.keySet()) { in createConfigObject()
144 List<String> values = optionValues.get(name); in createConfigObject()