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

12345

/external/skia/src/animator/
H A DSkDisplayNumber.cpp41 bool SkDisplayNumber::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayNumber
H A DSkDisplayInput.cpp40 bool SkInput::getProperty(int index, SkScriptValue* value) const { function in class:SkInput
H A DSkDisplayRandom.cpp45 bool SkDisplayRandom::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayRandom
H A DSkDrawText.cpp50 bool SkText::getProperty(int index, SkScriptValue* value) const { function in class:SkText
H A DSkDrawTextBox.cpp60 bool SkDrawTextBox::getProperty(int index, SkScriptValue* value) const function in class:SkDrawTextBox
62 return this->INHERITED::getProperty(index, value);
H A DSkDrawRectangle.cpp67 bool SkDrawRect::getProperty(int index, SkScriptValue* value) const { function in class:SkDrawRect
H A DSkDisplayMath.cpp221 bool SkDisplayMath::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayMath
H A DSkAnimateBase.cpp103 bool SkAnimateBase::getProperty(int index, SkScriptValue* value) const { function in class:SkAnimateBase
H A DSkDisplayEvent.cpp148 bool SkDisplayEvent::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayEvent
H A DSkDisplayTypes.cpp152 bool SkDisplayString::getProperty(int index, SkScriptValue* scriptValue) const { function in class:SkDisplayString
203 bool SkDisplayArray::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayArray
H A DSkDrawBitmap.cpp158 bool SkImageBaseBitmap::getProperty(int index, SkScriptValue* value) const { function in class:SkImageBaseBitmap
H A DSkDrawMatrix.cpp144 bool SkDrawMatrix::getProperty(int index, SkScriptValue* value) const { function in class:SkDrawMatrix
/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
/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/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/libxml2/python/
H A Ddrv_libxml2.py354 def getProperty(self, name): member in class:LibXml2Reader

Completed in 681 milliseconds

12345