Searched refs:getProperty (Results 51 - 75 of 359) sorted by relevance

1234567891011>>

/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPDeallocateCalledBeforeNPShutdown.cpp58 bool getProperty(NPIdentifier propertyName, NPVariant* result) function in class:NPDeallocateCalledBeforeNPShutdown::ScriptableObject
/external/nist-sip/java/javax/sip/
H A DSipFactory.java37 String name = properties.getProperty(IP_ADDRESS_PROP);
39 name = properties.getProperty(STACK_NAME_PROP);
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAXParserImpl.java94 public Object getProperty(String name) method in class:SAXParserImpl
97 return parser.getProperty(name);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DPropertyBoxParserImpl.java170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
175 constructor = mapping.getProperty("uuid");
178 constructor = mapping.getProperty((parent) + "-" + (type));
180 constructor = mapping.getProperty((type));
184 constructor = mapping.getProperty("default");
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java153 public String getProperty(QName key) method in class:OutputProperties
155 return m_properties.getProperty(key.toNamespacedString());
167 public String getProperty(String key) method in class:OutputProperties
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/emma/core/java12/com/vladium/util/
H A DProperty.java82 final String v = overrides.getProperty (n);
189 return System.getProperty (key);
201 return System.getProperty (key, def);
331 // (getProperty() uses a non-virtual call to get(), while propertyNames()
332 // uses a virtual call to the same instead of delegating to getProperty())
335 public String getProperty (final String key) method in class:Property.FilePropertyLookup
339 return m_contents.getProperty (key);
410 // (getProperty() uses a non-virtual call to get(), while propertyNames()
411 // uses a virtual call to the same instead of delegating to getProperty())
414 public String getProperty (fina method in class:Property.SystemPropertyLookup
495 public String getProperty (final String key) method in class:Property.SystemRedirectsLookup
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogManagerTest.java69 static final String clearPath = System.getProperty("clearpath");
400 // assertNull(m.getProperty(".level"));
401 assertNull(m.getProperty("java.util.logging.FileHandler.limit"));
402 assertNull(m.getProperty("java.util.logging.ConsoleHandler.formatter"));
403 // assertNull(m.getProperty("handlers"));
404 assertNull(m.getProperty("java.util.logging.FileHandler.count"));
405 assertNull(m.getProperty("com.xyz.foo.level"));
406 assertNull(m.getProperty("java.util.logging.FileHandler.formatter"));
407 assertNull(m.getProperty("java.util.logging.ConsoleHandler.level"));
408 assertNull(m.getProperty("jav
[all...]
H A DStreamHandlerTest.java93 assertNull(LogManager.getLogManager().getProperty(
95 assertNull(LogManager.getLogManager().getProperty(
97 assertNull(LogManager.getLogManager().getProperty(
99 assertNull(LogManager.getLogManager().getProperty(
124 assertEquals("FINE", LogManager.getLogManager().getProperty(
126 assertEquals("iso-8859-1", LogManager.getLogManager().getProperty(
149 assertEquals(INVALID_LEVEL, LogManager.getLogManager().getProperty(
151 assertEquals("XXXX", LogManager.getLogManager().getProperty(
168 assertNull(LogManager.getLogManager().getProperty(
170 assertNull(LogManager.getLogManager().getProperty(
[all...]
H A DConsoleHandlerTest.java79 assertNull(LogManager.getLogManager().getProperty(
81 assertNull(LogManager.getLogManager().getProperty(
83 assertNull(LogManager.getLogManager().getProperty(
85 assertNull(LogManager.getLogManager().getProperty(
109 assertEquals(LogManager.getLogManager().getProperty(
111 assertEquals(LogManager.getLogManager().getProperty(
133 assertEquals(LogManager.getLogManager().getProperty(
135 assertEquals(LogManager.getLogManager().getProperty(
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java39 String executable = System.getProperty("java.home");
46 String testVMArgs = System.getProperty("hy.test.vmargs");
169 String executable = System.getProperty("java.home");
184 execArgs.add(System.getProperty("java.class.path") +
194 String testVMArgs = System.getProperty("hy.test.vmargs");
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppBoundClass.cpp131 static bool getProperty(NPObject*, NPIdentifier, NPVariant* result);
150 CppNPObject::getProperty,
189 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result) function in class:CppNPObject
192 return obj->boundClass->getProperty(ident, result);
252 bool CppBoundClass::getProperty(NPIdentifier ident, NPVariant* result) const function in class:CppBoundClass
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java92 out = project.getProperty(RUN_EXEC_TASK_RESULT);
99 out = project.getProperty(RUN_EXEC_TASK_OUTPUT);
104 out = project.getProperty(RUN_EXEC_TASK_ERROR);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest5.java97 if (System.getProperty("java.vendor").startsWith("IBM"))
98 classPath = System.getProperty("org.apache.harmony.boot.class.path");
100 classPath = System.getProperty("sun.boot.class.path");
156 String slash = System.getProperty("file.separator");
289 String slash = System.getProperty("file.separator");
290 String javaHome = System.getProperty("java.home");
H A DFilterInputStreamTest.java139 fileName = System.getProperty("user.dir");
140 String separator = System.getProperty("file.separator");
/external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/
H A DGSSManagerTest.java38 String oldProvider = Security.getProperty(GSSManager.MANAGER);
55 String oldProvider = Security.getProperty(GSSManager.MANAGER);
/external/apache-http/src/org/apache/commons/logging/
H A DLogSource.java103 name = System.getProperty("org.apache.commons.logging.log");
105 name = System.getProperty("org.apache.commons.logging.Log");
/external/okhttp/src/main/java/libcore/net/http/
H A DHttpConnectionPool.java50 String keepAlive = System.getProperty("http.keepAlive");
56 String maxConnectionsString = System.getProperty("http.maxConnections");
/external/skia/src/animator/
H A DSkDisplayTypes.h82 virtual bool getProperty(int index, SkScriptValue* ) const;
94 virtual bool getProperty(int index, SkScriptValue* ) const;
/external/webkit/Source/WebCore/inspector/
H A DInspectorFrontendClientLocal.cpp56 String InspectorFrontendClientLocal::Settings::getProperty(const String&) function in class:WebCore::InspectorFrontendClientLocal::Settings
149 String value = m_settings->getProperty(inspectorAttachedHeightSetting);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java38 public static final String newline = System.getProperty("line.separator");
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DIdentityScopeTest.java84 String name = Security.getProperty("system.scope");
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
H A DKeyManagerFactoryImplTest.java44 String def_keystore = System.getProperty("javax.net.ssl.keyStore");
H A DTrustManagerFactoryImplTest.java44 String def_keystore = System.getProperty("javax.net.ssl.trustStore");
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DSSLServerSocketFactoryTest.java45 String defaultName = Security.getProperty("ssl.ServerSocketFactory.provider");
H A DSSLSocketFactoryTest.java45 String defaultName = Security.getProperty("ssl.SocketFactory.provider");

Completed in 381 milliseconds

1234567891011>>