Searched defs:getProperty (Results 1 - 25 of 103) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DJSystem.cs66 public static string getProperty( string name ) method in class:Antlr.Runtime.JavaExtensions.JSystem
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DJSystem.cs65 public static string getProperty( string name ) method in class:Antlr.Runtime.JavaExtensions.JSystem
/external/easymock/src/org/easymock/internal/
H A DEasyMockProperties.java95 public String getProperty(String key, String defaultValue) { method in class:EasyMockProperties
96 return properties.getProperty(key, defaultValue);
107 public String getProperty(String key) { method in class:EasyMockProperties
108 return properties.getProperty(key);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DKvmSerializable.java40 Object getProperty(int index); method in interface:KvmSerializable
H A DSoapObject.java149 public Object getProperty(int index) { method in class:SoapObject
175 public Object getProperty(String name) { method in class:SoapObject
178 return getProperty(index.intValue());
194 return getProperty(index.intValue()).toString();
220 return getProperty(i.intValue());
236 Object foo = getProperty(i.intValue());
260 return getProperty(i.intValue());
281 Object property = getProperty(i.intValue());
604 .append(getProperty(i))
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthConsumer.java50 public Object getProperty(String name) { method in class:OAuthConsumer
H A DOAuthAccessor.java52 public Object getProperty(String name) { method in class:OAuthAccessor
67 * method; that is getProperty("httpMethod") or (if that's null)
68 * consumer.getProperty("httpMethod") or (if that's null)
75 method = (String) this.getProperty("httpMethod");
77 method = (String) this.consumer.getProperty("httpMethod");
85 Object accepted = consumer.getProperty(OAuthConsumer.ACCEPT_ENCODING);
/external/opencv/otherlibs/highgui/
H A D_highgui.h72 virtual double getProperty(int) { return 0; } function in struct:CvCapture
H A Dcvcap_socket.cpp89 virtual double getProperty(int);
282 double CVCapture_Socket::getProperty(int id) function in class:CVCapture_Socket
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DPropertyUtils.java119 public Property getProperty(Class<? extends Object> type, String name) method in class:PropertyUtils
121 return getProperty(type, name, beanAccess);
124 public Property getProperty(Class<? extends Object> type, String name, BeanAccess bAccess) method in class:PropertyUtils
/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/testng/src/main/java/org/testng/internal/
H A DConstants.java48 private static TestNGProperty getProperty(String propertyName) { method in class:Constants
56 TestNGProperty r= getProperty(propertyName);
59 String result = p.getProperty(r.getName());
65 TestNGProperty p = getProperty(propertyName);
66 String r = properties.getProperty(propertyName, p.getDefault());
73 TestNGProperty p = getProperty(propertyName);
74 String r = properties.getProperty(propertyName, p.getDefault());
81 TestNGProperty p = getProperty(propertyName);
/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 DIProperties.java44 String getProperty (String key); method in interface:IProperties
45 String getProperty (String key, String dflt); method in interface:IProperties
94 final String v = properties.getProperty (n);
132 public String getProperty (final String key) method in class:IProperties.Factory.PropertiesImpl
134 return getProperty (key, null);
137 public String getProperty (final String key, final String dflt) method in class:IProperties.Factory.PropertiesImpl
153 value = m_delegate.getProperty (key, null);
220 final String v = getProperty (n);
246 final String value = getProperty (name, "");
265 final String v = getProperty (
[all...]
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/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
H A DHasPropertyWithValueTest.java98 public String getProperty() { method in class:HasPropertyWithValueTest.BeanWithoutInfo
/external/libxml2/python/
H A Ddrv_libxml2.py356 def getProperty(self, name): member in class:LibXml2Reader
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
H A DConstructor.java241 Property property = getProperty(beanType, key);
321 protected Property getProperty(Class<? extends Object> type, String name) method in class:Constructor.ConstructMapping
323 return getPropertyUtils().getProperty(type, name);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DTestOptions.java125 return getProperty("jpda.settings.debuggeeJavaHome", getProperty("java.home", null));
134 return getProperty("jpda.settings.debuggeeJavaExec", "java");
144 return getProperty("jpda.settings.debuggeeJavaPath",
155 return getProperty("jpda.settings.transportWrapperClass",
165 return getProperty("jpda.settings.transportAddress", null);
183 return getProperty("jpda.settings.debuggeeAgentName", "jdwp");
192 return getProperty("jpda.settings.debuggeeAgentExtraOptions", "");
218 return getProperty("jpda.settings.debuggeeAgentOptions",
230 return getProperty("jpd
473 protected String getProperty(String name, String defaultValue) { method in class:TestOptions
[all...]
/external/python/cpython2/Lib/xml/sax/
H A Dexpatreader.py168 def getProperty(self, name): member in class:ExpatParser
H A Dsaxutils.py294 def getProperty(self, name): member in class:XMLFilterBase
295 return self._parent.getProperty(name)
H A Dxmlreader.py83 def getProperty(self, name): member in class:XMLReader
/external/svox/pico/compat/jni/
H A Dtts.h264 android_tts_result_t (*getProperty) member in struct:android_tts_engine_funcs_t
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPMeta.java61 XMPProperty getProperty(String schemaNS, String propName) throws XMPException; method in interface:XMPMeta
68 * @param schemaNS The namespace URI for the array. Has the same usage as in getProperty.
71 * propName in <code>getProperty()</code>.
85 * @param schemaNS The namespace URI for the array. Has the same usage as in getProperty.
88 * propName in <code>getProperty()</code>.
104 * @param schemaNS The namespace URI for the struct. Has the same usage as in getProperty.
107 * propName in <code>getProperty()</code>.
138 * @param schemaNS The namespace URI for the struct. Has the same usage as in getProperty.
141 * namespace prefix usage as in <code>getProperty()</code>.
184 * @param schemaNS The namespace URI for the property. Has the same usage as in getProperty
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestFmwk.java175 protected static String getProperty(String key) { method in class:TestFmwk
176 return getParams().getProperty(key);
335 policyFileName = getProperty(SECURITY_POLICY);
337 String originalPolicyFileName = System.getProperty("java.security.policy");
346 public String getProperty(String key) { method in class:TestFmwk.TestParams
349 val = props.getProperty(key);
359 String s = getProperty(key);
374 String s = getProperty(key);
382 String s = getProperty(key);

Completed in 765 milliseconds

12345