Searched refs:GetProperty (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/chromium_org/ppapi/cpp/
H A Durl_response_info.h43 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);
H A Durl_response_info.cc29 Var URLResponseInfo::GetProperty(PP_URLResponseProperty property) const { function in class:pp::URLResponseInfo
33 get_interface<PPB_URLResponseInfo_1_0>()->GetProperty(pp_resource(),
/external/chromium_org/ppapi/generators/
H A Didl_lint.py42 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('NAM
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_url_response_info_thunk.cc27 struct PP_Var GetProperty(PP_Resource response, function in namespace:ppapi::thunk::__anon10361
29 VLOG(4) << "PPB_URLResponseInfo::GetProperty()";
33 return enter.object()->GetProperty(property);
46 &GetProperty,
H A Dppb_url_response_info_api.h18 virtual PP_Var GetProperty(PP_URLResponseProperty property) = 0;
/external/chromium_org/chrome/browser/chromeos/imageburner/
H A Dburn_manager_unittest.cc99 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("nam
[all...]
/external/chromium_org/components/policy/core/common/
H A Dgenerate_policy_source_unittest.cc28 subschema = schema.GetProperty("no such policy exists");
31 subschema = schema.GetProperty(key::kAlternateErrorPagesEnabled);
35 subschema = schema.GetProperty(key::kIncognitoModeAvailability);
39 subschema = schema.GetProperty(key::kProxyMode);
43 subschema = schema.GetProperty(key::kCookiesAllowedForUrls);
49 subschema = schema.GetProperty(key::kProxySettings);
53 EXPECT_FALSE(subschema.GetProperty("no such proxy key exists").valid());
54 ASSERT_TRUE(subschema.GetProperty(key::kProxyMode).valid());
55 ASSERT_TRUE(subschema.GetProperty(key::kProxyServer).valid());
56 ASSERT_TRUE(subschema.GetProperty(ke
[all...]
/external/chromium_org/ash/
H A Droot_window_settings.cc31 return root->GetProperty(kRootWindowSettingsKey);
35 return root->GetProperty(kRootWindowSettingsKey);
/external/chromium_org/ui/aura/client/
H A Dactivation_client.cc26 root_window->GetProperty(kRootWindowActivationClientKey) : NULL;
34 return window->GetProperty(kHideOnDeactivate);
H A Dactivation_change_observer.cc25 return window ? window->GetProperty(kActivationChangeObserverKey) : NULL;
H A Dactivation_delegate.cc23 return window->GetProperty(kActivationDelegateKey);
H A Danimation_host.cc28 return window->GetProperty(kRootWindowAnimationHostKey);
H A Dcursor_client.cc24 return window->GetProperty(kCursorClientKey);
H A Ddrag_drop_delegate.cc23 return window->GetProperty(kDragDropDelegateKey);
H A Dfocus_change_observer.cc19 return window ? window->GetProperty(kFocusChangeObserverKey) : NULL;
H A Dwindow_move_client.cc24 return window->GetProperty(kWindowMoveClientKey);
H A Dtooltip_client.cc29 root_window->GetProperty(kRootWindowTooltipClientKey) : NULL;
37 base::string16* string_ptr = window->GetProperty(kTooltipTextKey);
H A Ddispatcher_client.cc25 return root_window ? root_window->GetProperty(kDispatcherClientKey) : NULL;
H A Ddrag_drop_client.cc27 root_window->GetProperty(kRootWindowDragDropClientKey) : NULL;
H A Devent_client.cc26 root_window->GetProperty(kRootWindowEventClientKey) : NULL;
/external/chromium_org/ppapi/c/
H A Dppb_url_response_info.h113 * GetProperty() gets a response property.
123 struct PP_Var (*GetProperty)(PP_Resource response, member in struct:PPB_URLResponseInfo_1_0
/external/chromium_org/ui/views/corewm/
H A Dshadow_types.cc19 return window->GetProperty(kShadowTypeKey);
/external/chromium_org/ash/shelf/
H A Dshelf_util.cc31 return window->GetProperty(kLauncherID);
47 return window->GetProperty(kLauncherItemDetailsKey);
/external/chromium_org/ppapi/api/
H A Dppb_url_response_info.idl100 * GetProperty() gets a response property.
110 PP_Var GetProperty(
/external/chromium_org/ppapi/examples/file_chooser/
H A Dfile_chooser.cc65 pp::VarPrivate doc = GetWindowObject().GetProperty("document");
66 pp::VarPrivate body = doc.GetProperty("body");
72 console_.GetProperty("style").SetProperty("backgroundColor", "lightgray");
77 pp::VarPrivate doc = GetWindowObject().GetProperty("document");

Completed in 587 milliseconds

12345678910