Home
last modified time | relevance | path

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

/external/emma/core/java12/com/vladium/util/
DProperty.java124 public static Properties getSystemProperties (final String systemPrefix) in getSystemProperties() argument
131 result = new SystemPropertyLookup (systemPrefix); in getSystemProperties()
474 SystemPropertyLookup (String systemPrefix) in SystemPropertyLookup() argument
476 if ((systemPrefix != null) && ! systemPrefix.endsWith (".")) in SystemPropertyLookup()
477 systemPrefix = systemPrefix.concat ("."); in SystemPropertyLookup()
479 m_systemPrefix = systemPrefix; in SystemPropertyLookup()
/external/apache-http/src/org/apache/commons/logging/impl/
DSimpleLog.java81 static protected final String systemPrefix = field in SimpleLog
164 showLogName = getBooleanProperty( systemPrefix + "showlogname", showLogName);
165 showShortName = getBooleanProperty( systemPrefix + "showShortLogname", showShortName);
166 showDateTime = getBooleanProperty( systemPrefix + "showdatetime", showDateTime);
169 dateTimeFormat = getStringProperty(systemPrefix + "dateTimeFormat",
209 String lvl = getStringProperty(systemPrefix + "log." + logName); in SimpleLog()
213 lvl = getStringProperty(systemPrefix + "log." + name); in SimpleLog()
218 lvl = getStringProperty(systemPrefix + "defaultlog"); in SimpleLog()