HomeSort by relevance Sort by last modified time
    Searched full:getproperty (Results 201 - 225 of 702) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 135 return System.getProperty("java.class.path");
140 String classpath = System.getProperty(propertyName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
PdtPlugin.java 54 if (PrefPage.PREFS_DEVTREE_DIR.equals(event.getProperty())) {
134 String os = System.getProperty("os.name"); //$NON-NLS-1$
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
AbstractCheckTest.java 108 File base = new File(System.getProperty("java.io.tmpdir")); //$NON-NLS-1$
109 String os = System.getProperty("os.name"); //$NON-NLS-1$
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
ScriptRunner.java 164 sb.append(System.getProperty("java.class.path"));
180 String frameworkDir = System.getProperty("java.ext.dirs");
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
KeystoreHelper.java 64 String os = System.getProperty("os.name");
73 String javaHome = System.getProperty("java.home");
  /external/nist-sip/java/gov/nist/core/
LogWriter.java 363 // .getProperty("gov.nist.javax.sip.TRACE_LEVEL");
366 // .getProperty("gov.nist.javax.sip.DEBUG_LOG");
369 // .getProperty("javax.sip.STACK_NAME");
375 // .getProperty("gov.nist.javax.sip.LOG4J_LOGGER_NAME", this.stackName);
440 // configurationProperties.getProperty(
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 110 System.setProperty("user.dir", System.getProperty("java.io.tmpdir"));
452 tempFileName = System.getProperty("java.io.tmpdir");
453 String separator = System.getProperty("file.separator");
489 tempFileName = System.getProperty("java.io.tmpdir");
490 String separator = System.getProperty("file.separator");
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 153 public String getProperty(QName key)
155 return m_properties.getProperty(key.toNamespacedString());
167 public String getProperty(String key)
172 return m_properties.getProperty(key);
309 String defaultMethod = m_properties.getProperty(OutputKeys.METHOD);
388 String s = props.getProperty(key);
485 String s = props.getProperty(key);
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
ObjectFactory.java 87 * <li>query the system property using <code>System.getProperty</code>
110 * <li>query the system property using <code>System.getProperty</code>
157 * <li>query the system property using <code>System.getProperty</code>
185 * <li>query the system property using <code>System.getProperty</code>
239 * <li>query the system property using <code>System.getProperty</code>
343 factoryClassName = fXalanProperties.getProperty(factoryId);
351 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
ObjectFactory.java 87 * <li>query the system property using <code>System.getProperty</code>
110 * <li>query the system property using <code>System.getProperty</code>
157 * <li>query the system property using <code>System.getProperty</code>
185 * <li>query the system property using <code>System.getProperty</code>
239 * <li>query the system property using <code>System.getProperty</code>
343 factoryClassName = fXalanProperties.getProperty(factoryId);
351 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ObjectFactory.java 86 * <li>query the system property using <code>System.getProperty</code>
109 * <li>query the system property using <code>System.getProperty</code>
156 * <li>query the system property using <code>System.getProperty</code>
184 * <li>query the system property using <code>System.getProperty</code>
238 * <li>query the system property using <code>System.getProperty</code>
342 factoryClassName = fXalanProperties.getProperty(factoryId);
350 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectFactory.java 87 * <li>query the system property using <code>System.getProperty</code>
110 * <li>query the system property using <code>System.getProperty</code>
157 * <li>query the system property using <code>System.getProperty</code>
185 * <li>query the system property using <code>System.getProperty</code>
239 * <li>query the system property using <code>System.getProperty</code>
343 factoryClassName = fXalanProperties.getProperty(factoryId);
351 factoryClassName = props.getProperty(factoryId);
TreeWalker.java 94 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
113 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
132 m_locator.setSystemId(System.getProperty("user.dir") + File.separator + "dummy.xsl");
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
ObjectFactory.java 87 * <li>query the system property using <code>System.getProperty</code>
110 * <li>query the system property using <code>System.getProperty</code>
157 * <li>query the system property using <code>System.getProperty</code>
185 * <li>query the system property using <code>System.getProperty</code>
239 * <li>query the system property using <code>System.getProperty</code>
343 factoryClassName = fXalanProperties.getProperty(factoryId);
351 factoryClassName = props.getProperty(factoryId);
  /libcore/luni/src/main/java/java/lang/
System.java 90 lineSeparator = System.getProperty("line.separator");
254 * subsequent calls to getProperty and getProperties.
276 // to be present for System.getProperty. For java.class.version, we use the maximum
405 public static String getProperty(String propertyName) {
406 return getProperty(propertyName, null);
421 public static String getProperty(String prop, String defaultValue) {
425 return getProperties().getProperty(prop, defaultValue);
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.java 87 String osName = System.getProperty("os.name");
371 testDir = new File(System.getProperty("java.io.tmpdir") + "/temp");
375 root = System.getProperty("user.name").equals("root");
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetProviderTest.java 52 CONFIG_FILE1 = System.getProperty("user.dir") + "/resources";
54 String sep = System.getProperty("file.separator");
67 String sep = System.getProperty("file.separator");
  /external/v8/src/
handles.h 241 Handle<Object> GetProperty(Handle<JSObject> obj,
244 Handle<Object> GetProperty(Handle<Object> obj,
247 Handle<Object> GetProperty(Handle<JSObject> obj,
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 371 if (!thisObj->m_npObject->_class->getProperty)
377 // Calling NPClass::getProperty will call into plug-in code, and there's no telling what the plug-in can do.
386 returnValue = thisObj->m_npObject->_class->getProperty(thisObj->m_npObject, npIdentifier, &result);
  /libcore/luni/src/test/java/libcore/java/util/jar/
DalvikExecTest.java 50 builder.command().add("-Xbootclasspath:" + System.getProperty("java.boot.class.path"));
61 String tmp = System.getProperty("java.io.tmpdir");
77 if (System.getProperty("java.vendor").contains("Android")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfoTest.java 281 public String getProperty(String name) {
285 public Integer getProperty(String name, Integer defaultValue) {
289 public Boolean getProperty(String name, Boolean defaultValue) {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
IAndroidTarget.java 207 String getProperty(String name);
218 Integer getProperty(String name, Integer defaultValue);
231 Boolean getProperty(String name, Boolean defaultValue);