HomeSort by relevance Sort by last modified time
    Searched full:getproperty (Results 1 - 25 of 1267) 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 27 struct PP_Var GetProperty(PP_Resource response,
29 VLOG(4) << "PPB_URLResponseInfo::GetProperty()";
33 return enter.object()->GetProperty(property);
46 &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);
  /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/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/aura/client/
activation_client.cc 26 root_window->GetProperty(kRootWindowActivationClientKey) : NULL;
34 return window->GetProperty(kHideOnDeactivate);
tooltip_client.cc 26 root_window->GetProperty(kRootWindowTooltipClientKey) : NULL;
34 base::string16* string_ptr = window->GetProperty(kTooltipTextKey);
  /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);
  /external/chromium_org/ash/wm/
property_util.cc 29 return window->GetProperty(aura::client::kRestoreBoundsKey);
48 return window->GetProperty(internal::kWindowTrackedByWorkspaceKey);
56 return window->GetProperty(internal::kIgnoredByShelfKey);
64 return window->GetProperty(internal::kWindowRestoresToRestoreBounds);
70 root_window->GetProperty(internal::kRootWindowControllerKey) : NULL;
  /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);
  /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 276 milliseconds

1 2 3 4 5 6 7 8 91011>>