HomeSort by relevance Sort by last modified time
    Searched defs:getProperty (Results 76 - 100 of 345) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
BasePullParser.java 75 public Object getProperty(String name) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLCompositeProperty.java 46 public IGLProperty getProperty(GLStateType name) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 53 assertNull(LayoutMetadata.getProperty(node, "foo"));
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathBuilder1Test.java 106 assertNull(Security.getProperty(DEFAULT_TYPE_PROPERTY));
  /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/chromium_org/net/android/java/src/org/chromium/net/
ProxyChangeListener.java 65 public static String getProperty(String property) {
66 return System.getProperty(property);
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 87 bool WebBindings::getProperty(NPP npp, NPObject* object, NPIdentifier property, NPVariant* result)
  /external/emma/core/java12/com/vladium/util/
IProperties.java 44 String getProperty (String key);
45 String getProperty (String key, String dflt);
94 final String v = properties.getProperty (n);
132 public String getProperty (final String key)
134 return getProperty (key, null);
137 public String getProperty (final String key, final String dflt)
153 value = m_delegate.getProperty (key, null);
220 final String v = getProperty (n);
246 final String value = getProperty (name, "");
265 final String v = getProperty (n)
    [all...]
Property.java 82 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)
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 (final String key
    [all...]
  /external/srec/shared/include/
ESR_SessionType.h 53 ESR_ReturnCode(*getProperty)(struct ESR_SessionType_t* self, const LCHAR* name, void** value, VariableTypes type);
  /external/svox/pico/compat/jni/
tts.h 260 android_tts_result_t (*getProperty)
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPMeta.java 61 XMPProperty getProperty(String schemaNS, String propName) throws XMPException;
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...]
  /libcore/luni/src/main/java/java/lang/
System.java 92 lineSeparator = System.getProperty("line.separator");
244 * subsequent calls to getProperty and getProperties.
266 // to be present for System.getProperty. For java.class.version, we use the maximum
411 public static String getProperty(String propertyName) {
412 return getProperty(propertyName, null);
419 public static String getProperty(String name, String defaultValue) {
421 return getProperties().getProperty(name, defaultValue);
  /libcore/luni/src/main/java/java/security/
Security.java 102 return provider.getProperty(propertyName);
335 public static String getProperty(String key) {
339 String property = secprops.getProperty(key);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 133 public Object getProperty(String name)
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 190 + prop, p.getProperty(prop));
192 System.getProperty(prop));
198 System.getProperty(null);
205 System.getProperty("");
214 System.getProperty(null, "0.0");
221 System.getProperty("", "0");
239 assertNull("Property was not deleted.", System.getProperty("test"));
  /libcore/luni/src/test/java/tests/security/cert/
CertPathBuilder1Test.java 103 assertNull(Security.getProperty(DEFAULT_TYPE_PROPERTY));
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 248 public Object getProperty(String name) {
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 59 * getProperty(&quot;<a href="http://xmlpull.org/v1/doc/properties.html#xmldecl-version">http://xmlpull.org/v1/doc/properties.html#xmldecl-version</a>&quot;)
62 * getProperty(&quot;<a href="http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone">http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone</a>&quot;)
456 Object getProperty(String name);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 165 def getProperty(self, name):
saxutils.py 287 def getProperty(self, name):
288 return self._parent.getProperty(name)
xmlreader.py 83 def getProperty(self, name):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 165 def getProperty(self, name):
saxutils.py 287 def getProperty(self, name):
288 return self._parent.getProperty(name)
xmlreader.py 83 def getProperty(self, name):

Completed in 368 milliseconds

1 2 34 5 6 7 8 91011>>