HomeSort by relevance Sort by last modified time
    Searched refs:GetProperty (Results 1 - 25 of 229) 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 25 struct PP_Var GetProperty(PP_Resource response,
27 VLOG(4) << "PPB_URLResponseInfo::GetProperty()";
31 return enter.object()->GetProperty(property);
44 &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/ash/
root_window_settings.cc 30 return root->GetProperty(kRootWindowSettingsKey);
34 return root->GetProperty(kRootWindowSettingsKey);
  /external/chromium_org/ui/wm/public/
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 24 return window->GetProperty(kRootWindowAnimationHostKey);
drag_drop_delegate.cc 23 return window->GetProperty(kDragDropDelegateKey);
window_move_client.cc 24 return window->GetProperty(kWindowMoveClientKey);
  /external/chromium_org/chrome/browser/ui/views/
auto_keep_alive.cc 20 if (native_window->GetProperty(views::kDesktopRootWindow))
  /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/aura/client/
cursor_client.cc 24 return window->GetProperty(kCursorClientKey);
focus_change_observer.cc 19 return window ? window->GetProperty(kFocusChangeObserverKey) : NULL;
event_client.cc 26 root_window->GetProperty(kRootWindowEventClientKey) : NULL;
screen_position_client.cc 29 root_window->GetProperty(kScreenPositionClientKey) : NULL;
  /external/chromium_org/ui/wm/core/
shadow_types.cc 18 return window->GetProperty(kShadowTypeKey);
  /external/chromium_org/ppapi/api/
ppb_url_response_info.idl 100 * GetProperty() gets a response property.
110 PP_Var GetProperty(
  /external/chromium_org/v8/test/mjsunit/runtime-gen/
getproperty.js 6 %GetProperty(_object, _key);
  /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;

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 910