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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/generators/
idl_lint.py 42 if not comments and not node.GetProperty('wcomment'):
52 if node.IsA('Struct', 'Typedef') and not node.GetProperty('wpass'):
53 if node.GetProperty('passByValue'):
57 if node.GetProperty('returnByValue'):
66 if not node.GetProperty('VALUE') and not node.GetProperty('wenum'):
71 macro = node.GetProperty('macro')
72 if macro and not node.GetProperty('wname'):
76 if node.IsA('Inline') and not node.GetProperty('winline'):
77 inline_type = node.GetProperty('NAME'
    [all...]
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager_unittest.cc 99 EXPECT_EQ("http://image.bin.zip", cf->GetProperty("url", "some_hwid"));
100 EXPECT_EQ("some_name", cf->GetProperty("name", "some_hwid"));
107 EXPECT_EQ("", cf->GetProperty("version", "block_no_name"));
109 EXPECT_EQ("some_name1", cf->GetProperty("name", "hwid11"));
110 EXPECT_EQ("version1", cf->GetProperty("version", "hwid12"));
111 EXPECT_EQ("", cf->GetProperty("filesize", "hwid1_non_existent"));
112 EXPECT_EQ("http://image1.bin.zip", cf->GetProperty("url", "hwid13"));
113 EXPECT_EQ("", cf->GetProperty("hwid", "hwid11"));
114 EXPECT_EQ("", cf->GetProperty("", "hwid12"));
115 EXPECT_EQ("", cf->GetProperty("name", ""))
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_url_response_info_thunk.cc 25 struct PP_Var GetProperty(PP_Resource response,
27 VLOG(4) << "PPB_URLResponseInfo::GetProperty()";
31 return enter.object()->GetProperty(property);
44 &GetProperty,
ppb_url_response_info_api.h 18 virtual PP_Var GetProperty(PP_URLResponseProperty property) = 0;
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayNumber.h 18 virtual bool getProperty(int index, SkScriptValue* value) const;
  /external/skia/src/animator/
SkDisplayNumber.h 18 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);
  /libcore/luni/src/test/java/libcore/java/lang/
SystemTest.java 34 // use System.getProperty. Now they should use System.lineSeparator instead, and the
156 String userDir = System.getProperty("user.dir");
159 assertEquals(userDir, System.getProperty("user.dir"));
162 assertEquals(userDir, System.getProperty("user.dir"));
165 assertEquals(userDir, System.getProperty("user.dir"));
171 assertEquals(userDir, System.getProperty("user.dir"));
179 String oldUserHome = System.getProperty("user.home");
182 assertEquals("/user/home", System.getProperty("user.home"));
190 String userDir = System.getProperty("user.dir");
200 assertEquals(userDir, System.getProperty("user.dir"))
    [all...]
  /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/chromium_org/ash/
root_window_settings.cc 30 return root->GetProperty(kRootWindowSettingsKey);
34 return root->GetProperty(kRootWindowSettingsKey);
  /external/chromium_org/ppapi/cpp/
url_response_info.cc 29 Var URLResponseInfo::GetProperty(PP_URLResponseProperty property) const {
33 get_interface<PPB_URLResponseInfo_1_0>()->GetProperty(pp_resource(),
url_response_info.h 43 Var GetProperty(PP_URLResponseProperty property) const;
65 return GetProperty(PP_URLRESPONSEPROPERTY_URL);
75 return GetProperty(PP_URLRESPONSEPROPERTY_REDIRECTURL);
85 return GetProperty(PP_URLRESPONSEPROPERTY_REDIRECTMETHOD);
94 return GetProperty(PP_URLRESPONSEPROPERTY_STATUSCODE).AsInt();
104 return GetProperty(PP_URLRESPONSEPROPERTY_STATUSLINE);
114 return GetProperty(PP_URLRESPONSEPROPERTY_HEADERS);
  /external/chromium_org/ui/wm/public/
activation_client.cc 26 root_window->GetProperty(kRootWindowActivationClientKey) : NULL;
34 return window->GetProperty(kHideOnDeactivate);
tooltip_client.cc 31 root_window->GetProperty(kRootWindowTooltipClientKey) : NULL;
43 base::string16* string_ptr = window->GetProperty(kTooltipTextKey);
48 return window->GetProperty(kTooltipIdKey);
  /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 62 if (!"value 1".equals(p.getProperty("Property 1").trim()) ||
63 !"className".equals(p.getProperty("serviceName.algName").trim()) ||
64 !"attrValue".equals(p.getProperty("serviceName.algName attrName").trim()) ||
65 !"standardName".equals(p.getProperty("Alg.Alias.engineClassName.aliasName").trim()) ||
66 !String.valueOf(p.getName()).equals(p.getProperty("Provider.id name").trim()) ||
67 !String.valueOf(p.getVersion()).equals(p.getProperty("Provider.id version").trim()) ||
68 !String.valueOf(p.getInfo()).equals(p.getProperty("Provider.id info").trim()) ||
69 !p.getClass().getName().equals(p.getProperty("Provider.id className").trim()) ||
70 !"SomeClassName".equals(p.getProperty("MessageDigest.SHA-1").trim())) {
158 if (!"className".equals(p.getProperty("Type.Algorithm")))
    [all...]
  /external/chromium_org/components/policy/core/common/
generate_policy_source_unittest.cc 65 subschema = schema.GetProperty("no such policy exists");
68 subschema = schema.GetProperty(key::kSearchSuggestEnabled);
72 subschema = schema.GetProperty(key::kDefaultCookiesSetting);
76 subschema = schema.GetProperty(key::kProxyMode);
80 subschema = schema.GetProperty(key::kURLBlacklist);
86 subschema = schema.GetProperty(key::kProxySettings);
90 EXPECT_FALSE(subschema.GetProperty("no such proxy key exists").valid());
91 ASSERT_TRUE(subschema.GetProperty(key::kProxyMode).valid());
92 ASSERT_TRUE(subschema.GetProperty(key::kProxyServer).valid());
93 ASSERT_TRUE(subschema.GetProperty(key::kProxyServerMode).valid())
    [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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 90 systemProperties.getProperty(propertyName),
91 properties.getProperty(propertyName));
96 * java.util.Properties#getProperty(java.lang.String)
100 // java.util.Properties.getProperty(java.lang.String)
102 ((String) tProps.getProperty("test.prop")));
106 * java.util.Properties#getProperty(java.lang.String,
111 // java.util.Properties.getProperty(java.lang.String, java.lang.String)
113 ((String) tProps.getProperty("test.prop", "Blarg")));
115 .getProperty("notInThere.prop", "Gabba")));
119 * java.util.Properties#getProperty(java.lang.String
    [all...]
  /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);
  /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
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
AudioManagerAndroid.java 26 // getProperty(PROPERTY_OUTPUT_FRAMES_PER_BUFFER) fails.
43 String sampleRateString = audioManager.getProperty(
48 String framesPerBuffer = audioManager.getProperty(

Completed in 1111 milliseconds

1 2 3 4 5 6 7 8 91011>>