HomeSort by relevance Sort by last modified time
    Searched full:getproperty (Results 1 - 25 of 992) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/legacy/src/animator/
SkDisplayNumber.h 18 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayInput.h 20 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayMath.h 23 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayRandom.h 31 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDrawText.h 24 virtual bool getProperty(int index, SkScriptValue* value) const ;
SkDrawTextBox.h 25 virtual bool getProperty(int index, SkScriptValue* value) const;
  /external/skia/src/animator/
SkDisplayNumber.h 18 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayInput.h 20 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayMath.h 23 virtual bool getProperty(int index, SkScriptValue* value) const;
SkDisplayRandom.h 31 virtual bool getProperty(int index, SkScriptValue* value) const;
  /libcore/luni/src/test/java/tests/support/
Support_SQL.java 56 String tmp = System.getProperty("java.io.tmpdir");
102 sqlDriver = properties.getProperty("sqlDriver");
103 sqlLogin = properties.getProperty("sqlLogin");
104 sqlCatalog = properties.getProperty("sqlCatalog");
105 sqlHost = properties.getProperty("sqlHost");
106 sqlUrl = properties.getProperty("sqlUrlPrefix") + sqlHost + "/"
108 sqlPassword = properties.getProperty("sqlPassword");
109 sqlUser = properties.getProperty("sqlUser");
111 .getProperty("sqlMaxConnections"));
112 sqlMaxTasks = Integer.parseInt(properties.getProperty("sqlMaxTasks"))
    [all...]
  /external/objenesis/main/src/org/objenesis/strategy/
BaseInstantiatorStrategy.java 41 protected static final String VM_VERSION = System.getProperty("java.runtime.version");
44 protected static final String VM_INFO = System.getProperty("java.vm.info");
47 protected static final String VENDOR_VERSION = System.getProperty("java.vm.version");
50 protected static final String VENDOR = System.getProperty("java.vm.vendor");
53 protected static final String JVM_NAME = System.getProperty("java.vm.name");
  /libcore/benchmarks/src/benchmarks/regression/
DoPrivilegedBenchmark.java 28 String lineSeparator = System.getProperty("line.separator");
36 lineSeparator = System.getProperty("line.separator");
40 return System.getProperty("line.separator");
51 return System.getProperty("line.separator");
72 return System.getProperty(propertyName);
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 52 public Object getProperty(String name) {
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/javasqlite/src/main/java/SQLite/
JDBCDriver.java 27 String jvers = java.lang.System.getProperty("java.version");
62 java.lang.System.getProperty("SQLite.sharedcache");
71 java.lang.System.getProperty("SQLite.vfs");
98 args[1] = info.getProperty("encoding");
99 args[2] = info.getProperty("password");
100 args[3] = info.getProperty("daterepr");
101 args[4] = info.getProperty("vfs");
104 args[1] = java.lang.System.getProperty("SQLite.encoding");
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
ProviderTest.java 63 if (!"value 1".equals(p.getProperty("Property 1").trim()) ||
64 !"className".equals(p.getProperty("serviceName.algName").trim()) ||
65 !"attrValue".equals(p.getProperty("serviceName.algName attrName").trim()) ||
66 !"standardName".equals(p.getProperty("Alg.Alias.engineClassName.aliasName").trim()) ||
67 !String.valueOf(p.getName()).equals(p.getProperty("Provider.id name").trim()) ||
68 !String.valueOf(p.getVersion()).equals(p.getProperty("Provider.id version").trim()) ||
69 !String.valueOf(p.getInfo()).equals(p.getProperty("Provider.id info").trim()) ||
70 !p.getClass().getName().equals(p.getProperty("Provider.id className").trim()) ||
71 !"SomeClassName".equals(p.getProperty("MessageDigest.SHA-1").trim()) ) {
159 if (!"className".equals(p.getProperty("Type.Algorithm")))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
SystemProperty.java 26 if (System.getProperty(key).equals(value))
27 System.out.println("System property "+key+" set to "+System.getProperty(key));
29 System.out.println("System property "+key+" could not be set. Currently set to "+System.getProperty(key));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 23 propertyValue = properties.getProperty(propertyName);
26 propertyValue = System.getProperty(propertyName);
45 String propertyValue = properties.getProperty(propertyName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
GLPropertyAccessor.java 42 public IGLProperty getProperty(IGLProperty state) {
46 IGLProperty successor = e.getProperty(root);
84 IGLProperty getProperty(IGLProperty p);
96 public IGLProperty getProperty(IGLProperty p) {
98 return ((GLCompositeProperty) p).getProperty(mType);
114 public IGLProperty getProperty(IGLProperty p) {
119 return ((GLSparseArrayProperty) p).getProperty(mIndex);
BufferSubDataTransform.java 44 IGLProperty property = mAccessor.getProperty(state);
66 IGLProperty property = mAccessor.getProperty(state);
74 return mAccessor.getProperty(state);
CurrentProgramPropertyAccessor.java 43 public IGLProperty getProperty(IGLProperty state) {
45 IGLProperty currentProgramProperty = mCurrentProgramAccessor.getProperty(state);
59 mStateType).getProperty(state);
CurrentVboPropertyAccessor.java 51 public IGLProperty getProperty(IGLProperty state) {
53 IGLProperty currentBinding = mVboBindingAccessor.getProperty(state);
64 mVboProperty).getProperty(state);
TextureUnitPropertyAccessor.java 43 public IGLProperty getProperty(IGLProperty state) {
45 IGLProperty activeTextureProperty = mActiveTextureAccessor.getProperty(state);
57 return targetAccessor.getProperty(state);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulation.xml 7 <taskdef name="GetProperty" classname="org.eclipse.releng.generators.rss.RSSFeedGetPropertyTask" classpath="../feedTools.jar"/>
83 <GetProperty
90 <GetProperty
97 <GetProperty
101 <GetProperty
105 <GetProperty
  /libcore/luni/src/test/java/libcore/java/lang/
SystemTest.java 33 // use System.getProperty. Now they should use System.lineSeparator instead, and the
40 assertFalse(System.lineSeparator().equals(System.getProperty("line.separator")));
48 assertFalse(System.lineSeparator().equals(System.getProperty("line.separator")));
54 assertFalse(System.lineSeparator().equals(System.getProperty("line.separator")));
60 assertFalse(System.lineSeparator().equals(System.getProperty("line.separator")));
64 assertFalse(System.lineSeparator().equals(System.getProperty("line.separator")));

Completed in 722 milliseconds

1 2 3 4 5 6 7 8 91011>>