Home
last modified time | relevance | path

Searched refs:propKey (Results 1 – 8 of 8) sorted by relevance

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DBuildResultsProperties.java77 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
78 if (propKey.equals(P_ID_SMALL_VALUE)) { in getPropertyValue()
83 if (propKey.equals(P_ID_NO_BASELINE)) { in getPropertyValue()
88 if (propKey.equals(P_ID_SINGLE_RUN)) { in getPropertyValue()
93 if (propKey.equals(P_ID_BIG_ERROR)) { in getPropertyValue()
98 if (propKey.equals(P_ID_STUDENT_TTEST)) { in getPropertyValue()
103 if (propKey.equals(P_ID_NOT_STABLE)) { in getPropertyValue()
108 if (propKey.equals(P_ID_NOT_RELIABLE)) { in getPropertyValue()
113 if (propKey.equals(P_ID_BIG_DELTA)) { in getPropertyValue()
DBuildResultsElement.java207 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
212 if (propKey.equals(P_ID_BUILD_DATE)) in getPropertyValue()
214 if (propKey.equals(P_ID_BUILD_COMMENT)) in getPropertyValue()
216 if (propKey.equals(P_ID_BUILD_SUMMARY_KIND)) { in getPropertyValue()
226 if (propKey.equals(P_ID_BUILD_IS_BASELINE)) in getPropertyValue()
228 if (propKey.equals(P_ID_BUILD_FAILURE)) in getPropertyValue()
231 if (propKey.equals(P_ID_BUILD_BASELINE)) { in getPropertyValue()
238 if (propKey.equals(P_ID_BUILD_DELTA) || propKey.equals(P_ID_BUILD_ERROR)) { in getPropertyValue()
241 } else if (propKey.equals(P_ID_BUILD_DELTA)) { in getPropertyValue()
247 if (propKey.equals(P_ID_BUILD_TTEST)) { in getPropertyValue()
[all …]
DDimResultsElement.java115 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
117 if (propKey.equals(P_ID_DIMENSION)) { in getPropertyValue()
120 if (propKey.equals(P_ID_COUNT)) { in getPropertyValue()
124 if (propKey.equals(P_ID_AVERAGE)) in getPropertyValue()
126 if (propKey.equals(P_ID_STDDEV)) in getPropertyValue()
128 if (propKey.equals(P_ID_ERROR)) in getPropertyValue()
130 if (propKey.equals(P_ID_HAD_VALUES)) in getPropertyValue()
132 return super.getPropertyValue(propKey); in getPropertyValue()
DConfigResultsElement.java212 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
214 if (propKey.equals(P_ID_CONFIG_NAME)) { in getPropertyValue()
217 if (propKey.equals(P_ID_CONFIG_DESCRIPTION)) { in getPropertyValue()
220 if (propKey.equals(P_ID_CONFIG_CURRENT_BUILD)) { in getPropertyValue()
223 if (propKey.equals(P_ID_CONFIG_BASELINE_BUILD)) { in getPropertyValue()
226 if (propKey.equals(P_ID_CONFIG_BASELINED)) { in getPropertyValue()
229 if (propKey.equals(P_ID_CONFIG_VALID)) { in getPropertyValue()
232 if (propKey.equals(P_ID_CONFIG_DELTA)) { in getPropertyValue()
235 if (propKey.equals(P_ID_CONFIG_ERROR)) { in getPropertyValue()
238 if (propKey.equals(P_ID_STATUS_ERROR)) { in getPropertyValue()
[all …]
DScenarioResultsElement.java95 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
97 if (propKey.equals(P_ID_SCENARIO_LABEL)) in getPropertyValue()
99 if (propKey.equals(P_ID_SCENARIO_FILE_NAME)) in getPropertyValue()
101 if (propKey.equals(P_ID_SCENARIO_SHORT_NAME)) in getPropertyValue()
103 return super.getPropertyValue(propKey); in getPropertyValue()
DComponentResultsElement.java126 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
127 if (propKey.equals(P_ID_NAME)) { in getPropertyValue()
130 if (propKey.equals(P_ID_CURRENT_BUILD)) { in getPropertyValue()
138 if (propKey.equals(P_ID_BASELINE_BUILD)) { in getPropertyValue()
145 return super.getPropertyValue(propKey); in getPropertyValue()
DResultsElement.java325 public Object getPropertyValue(Object propKey) { in getPropertyValue() argument
326 if (propKey.equals(P_ID_STATUS_INFO)) { in getPropertyValue()
331 if (propKey.equals(P_ID_STATUS_WARNING)) { in getPropertyValue()
336 if (propKey.equals(P_ID_STATUS_ERROR)) { in getPropertyValue()
341 if (propKey.equals(P_ID_STATUS_COMMENT)) { in getPropertyValue()
/external/testng/src/main/java/org/testng/
DTestNGAntTask.java677 for (Object propKey : getProject().getUserProperties().keySet()) { in delegateCommandSystemProperties()
678 String propName = (String) propKey; in delegateCommandSystemProperties()
1122 String propKey = (String) propKeyObj; in addConfiguredPropertySet() local
1124 sysProp.setKey(propKey); in addConfiguredPropertySet()
1125 if (properties.get(propKey) instanceof String) { in addConfiguredPropertySet()
1126 String propVal = (String) properties.get(propKey); in addConfiguredPropertySet()
1129 log("Added system property " + propKey + " with value " + propVal, Project.MSG_VERBOSE); in addConfiguredPropertySet()
1131 log("Ignoring non-String property " + propKey, Project.MSG_WARN); in addConfiguredPropertySet()