HomeSort by relevance Sort by last modified time
    Searched refs:GetProperty (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /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/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);
dispatcher_client.cc 22 return root_window ? root_window->GetProperty(kDispatcherClientKey) : NULL;
drag_drop_client.cc 24 root_window->GetProperty(kRootWindowDragDropClientKey) : NULL;
drag_drop_delegate.cc 23 return window->GetProperty(kDragDropDelegateKey);
event_client.cc 23 root_window->GetProperty(kRootWindowEventClientKey) : NULL;
focus_change_observer.cc 19 return window ? window->GetProperty(kFocusChangeObserverKey) : NULL;
screen_position_client.cc 25 return window ? window->GetProperty(kScreenPositionClientKey) : NULL;
user_action_client.cc 23 root_window->GetProperty(kRootWindowUserActionClientKey) : NULL;
window_move_client.cc 24 return window->GetProperty(kWindowMoveClientKey);
tooltip_client.cc 26 root_window->GetProperty(kRootWindowTooltipClientKey) : NULL;
34 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/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;
  /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;

Completed in 259 milliseconds

1 2 3 4 5 6 7 8 910