/external/chromium_org/ppapi/cpp/ |
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);
|
url_response_info.cc | 29 Var URLResponseInfo::GetProperty(PP_URLResponseProperty property) const { 33 get_interface<PPB_URLResponseInfo_1_0>()->GetProperty(pp_resource(),
|
/external/chromium_org/ppapi/thunk/ |
ppb_url_response_info_api.h | 18 virtual PP_Var GetProperty(PP_URLResponseProperty property) = 0;
|
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,
|
/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/components/policy/core/common/ |
generate_policy_source_unittest.cc | 28 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(key::kProxyServerMode).valid()) [all...] |
/external/chromium_org/ash/ |
root_window_settings.cc | 31 return root->GetProperty(kRootWindowSettingsKey); 35 return root->GetProperty(kRootWindowSettingsKey);
|
/external/chromium_org/ui/aura/client/ |
activation_client.cc | 26 root_window->GetProperty(kRootWindowActivationClientKey) : NULL; 34 return window->GetProperty(kHideOnDeactivate);
|
activation_change_observer.cc | 25 return window ? window->GetProperty(kActivationChangeObserverKey) : NULL;
|
activation_delegate.cc | 23 return window->GetProperty(kActivationDelegateKey);
|
animation_host.cc | 28 return window->GetProperty(kRootWindowAnimationHostKey);
|
cursor_client.cc | 24 return window->GetProperty(kCursorClientKey);
|
drag_drop_delegate.cc | 23 return window->GetProperty(kDragDropDelegateKey);
|
focus_change_observer.cc | 19 return window ? window->GetProperty(kFocusChangeObserverKey) : NULL;
|
window_move_client.cc | 24 return window->GetProperty(kWindowMoveClientKey);
|
tooltip_client.cc | 29 root_window->GetProperty(kRootWindowTooltipClientKey) : NULL; 37 base::string16* string_ptr = window->GetProperty(kTooltipTextKey);
|
/external/chromium_org/ppapi/c/ |
ppb_url_response_info.h | 113 * GetProperty() gets a response property. 123 struct PP_Var (*GetProperty)(PP_Resource response,
|
/external/chromium_org/ui/views/corewm/ |
shadow_types.cc | 19 return window->GetProperty(kShadowTypeKey);
|
/external/chromium_org/ash/shelf/ |
shelf_util.cc | 31 return window->GetProperty(kLauncherID); 47 return window->GetProperty(kLauncherItemDetailsKey);
|
/external/chromium_org/ppapi/api/ |
ppb_url_response_info.idl | 100 * GetProperty() gets a response property. 110 PP_Var GetProperty(
|
/external/chromium/chrome/browser/parsers/ |
metadata_parser.h | 46 virtual bool GetProperty(const std::string& key, std::string* value) = 0;
|
/external/chromium_org/chrome/browser/parsers/ |
metadata_parser.h | 47 virtual bool GetProperty(const std::string& key, std::string* value) = 0;
|
/external/chromium_org/ppapi/examples/file_chooser/ |
file_chooser.cc | 65 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");
|
/external/chromium_org/ppapi/proxy/ |
url_response_info_resource.h | 37 virtual PP_Var GetProperty(PP_URLResponseProperty property) OVERRIDE;
|