Home
last modified time | relevance | path

Searched refs:objectTypeName (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationXmlParser.java110 final String objectTypeName = attributes.getValue("type"); in startElement() local
111 if (objectTypeName == null) { in startElement()
115 if (GlobalConfiguration.isBuiltInObjType(objectTypeName) || in startElement()
116 Configuration.isBuiltInObjType(objectTypeName)) { in startElement()
118 + "cannot be type '%s' this is a reserved type.", objectTypeName))); in startElement()
120 addObject(objectTypeName, attributes); in startElement()
304 void addObject(String objectTypeName, Attributes attributes) throws SAXException { in addObject() argument
305 if (Configuration.DEVICE_NAME.equals(objectTypeName)) { in addObject()
315 mConfigDef.addConfigObjectDef(objectTypeName, in addObject()
326 objectTypeName)); in addObject()
[all …]
DConfigurationDef.java445 private Object createObject(String objectTypeName, String className) in createObject() argument
448 Class<?> objectClass = getClassForObject(objectTypeName, className); in createObject()
450 checkObjectValid(objectTypeName, configObject); in createObject()
455 objectTypeName), e); in createObject()
459 objectTypeName), e); in createObject()
472 private Class<?> getClassForObject(String objectTypeName, String className) in getClassForObject() argument
481 className, objectTypeName), in getClassForObject()
484 objectTypeName); in getClassForObject()
499 private void checkObjectValid(String objectTypeName, Object configObject) in checkObjectValid() argument
501 if (Configuration.RESULT_REPORTER_TYPE_NAME.equals(objectTypeName) in checkObjectValid()
DConfiguration.java1227 private String printOptionsForObject(boolean importantOnly, String objectTypeName, in printOptionsForObject() argument
/tools/tradefederation/core/global_configuration/com/android/tradefed/config/
DGlobalConfiguration.java752 private String printOptionsForObject(boolean importantOnly, String objectTypeName, in printOptionsForObject() argument