/external/opencv/otherlibs/highgui/ |
H A D | cvcap_socket.cpp | 89 virtual double getProperty(int); 282 double CVCapture_Socket::getProperty(int id) function in class:CVCapture_Socket
|
/external/skia/src/animator/ |
H A D | SkDisplayTypes.cpp | 156 bool SkDisplayString::getProperty(int index, SkScriptValue* scriptValue) const { function in class:SkDisplayString 207 bool SkDisplayArray::getProperty(int index, SkScriptValue* value) const { function in class:SkDisplayArray
|
H A D | SkAnimateBase.h | 36 virtual bool getProperty(int index, SkScriptValue* value) const;
|
H A D | SkDrawMatrix.h | 32 virtual bool getProperty(int index, SkScriptValue* value) const;
|
H A D | SkDrawPaint.h | 39 virtual bool getProperty(int index, SkScriptValue* value) const;
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
H A D | ZipFileTest.java | 368 tempFileName = System.getProperty("user.dir"); 369 String separator = System.getProperty("file.separator"); 405 tempFileName = System.getProperty("user.dir"); 406 String separator = System.getProperty("file.separator");
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
H A D | FileReaderTest.java | 91 f = new File(System.getProperty("user.home"), "reader.tst");
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
H A D | SecurityTest.java | 317 * @tests java.security.Security#getProperty(String) 322 Security.getProperty(null); 328 assertEquals("test white space", Security.getProperty("myprop")); 349 assertEquals("Empty property", "", Security.getProperty("")); 353 .getProperty("My Test Property"));
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
H A D | DTMManager.java | 359 debug = System.getProperty("dtm.debug") != null;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
H A D | CRLDistPoint.java | 87 String sep = System.getProperty("line.separator");
|
H A D | GeneralNames.java | 89 String sep = System.getProperty("line.separator");
|
/external/emma/core/java12/com/vladium/emma/rt/ |
H A D | RTExitHook.java | 73 final String closureList = closureMap.getProperty ("closure");
|
/external/jsilver/src/org/clearsilver/ |
H A D | FactoryLoader.java | 103 System.getProperty(DEFAULT_CS_FACTORY_CLASS_PROPERTY_NAME,
|
/external/proguard/src/proguard/ |
H A D | ConfigurationConstants.java | 99 public static final String JAR_SEPARATOR_KEYWORD = System.getProperty("path.separator");
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | OutputPropertiesFactory.java | 292 == m_text_properties.getProperty(OutputKeys.ENCODING)) 452 value = System.getProperty(key); 465 newValue = System.getProperty(newKey);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/ |
H A D | RSSFeedWatcherTask.java | 190 out = exec.getProject().getProperty(RSSFeedUtil.RUN_EXEC_TASK_ERROR); 193 out = exec.getProject().getProperty(RSSFeedUtil.RUN_EXEC_TASK_RESULT); 196 out = exec.getProject().getProperty(RSSFeedUtil.RUN_EXEC_TASK_RESULT);
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
H A D | RSA_SHA1.java | 97 Object privateKeyObject = accessor.consumer.getProperty(PRIVATE_KEY); 114 Object publicKeyObject = accessor.consumer.getProperty(PUBLIC_KEY); 129 Object certObject = accessor.consumer.getProperty(X509_CERTIFICATE);
|
/external/webkit/Source/WebKit2/Shared/Plugins/ |
H A D | NPObjectMessageReceiver.cpp | 140 void NPObjectMessageReceiver::getProperty(const NPIdentifierData& propertyNameData, bool& returnValue, NPVariantData& resultData) function in class:WebKit::NPObjectMessageReceiver 142 if (!m_npObject->_class->getProperty) { 148 returnValue = m_npObject->_class->getProperty(m_npObject, propertyNameData.createNPIdentifier(), &result);
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
H A D | PluginTest.h | 50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result)); 148 bool getProperty(NPIdentifier propertyName, NPVariant* result) function in struct:PluginTest::Object 199 return static_cast<T*>(npObject)->getProperty(propertyName, result);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
H A D | PropertyTable.java | 284 Property property = m_activePropertyInfo.getProperty(); 390 Property property = m_activePropertyInfo.getProperty(); 446 Property property = m_activePropertyInfo.getProperty(); 496 Property property = propertyInfo.getProperty(); 777 Property property = propertyInfo.getProperty(); 886 return m_properties.get(index).getProperty(); 950 if (propertyInfo.getProperty() == property) { 979 return new StructuredSelection(m_activePropertyInfo.getProperty()); 1170 Property property = propertyInfo.getProperty(); 1228 Property property = propertyInfo.getProperty(); 1402 public Property getProperty() { method in class:PropertyTable.PropertyInfo [all...] |
/external/webkit/Source/JavaScriptCore/API/ |
H A D | JSCallbackObjectFunctions.h | 121 // optional optimization to bypass getProperty in cases when we only need to know if the property exists 130 } else if (JSObjectGetPropertyCallback getProperty = jsClass->getProperty) { 137 value = getProperty(ctx, thisRef, propertyNameRef.get(), &exception); 418 if (entry->getProperty && (!(entry->attributes & kJSPropertyAttributeDontEnum) || (mode == IncludeDontEnumProperties))) 528 if (JSObjectGetPropertyCallback getProperty = entry->getProperty) { 535 value = getProperty(toRef(exec), thisRef, propertyNameRef.get(), &exception); 545 return throwError(exec, createReferenceError(exec, "Static value property defined with NULL getProperty callback.")); 583 if (JSObjectGetPropertyCallback getProperty [all...] |
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/ |
H A D | 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/ |
H A D | 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/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | 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/chromium/webkit/glue/ |
H A D | cpp_bound_class.cc | 105 static bool getProperty(NPObject *obj, NPIdentifier ident, 126 CppNPObject::getProperty, 162 /* static */ bool CppNPObject::getProperty(NPObject* np_obj, function in class:CppNPObject
|