Searched defs:out_node_data (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/ui/ash/accessibility/
H A Dax_root_obj_wrapper.cc42 void AXRootObjWrapper::Serialize(ui::AXNodeData* out_node_data) { argument
43 out_node_data->id = id_;
44 out_node_data->role = ui::AX_ROLE_DESKTOP;
46 out_node_data->state = 0;
/external/chromium_org/ui/views/accessibility/
H A Dax_widget_obj_wrapper.cc35 void AXWidgetObjWrapper::Serialize(ui::AXNodeData* out_node_data) { argument
36 out_node_data->id = GetID();
37 out_node_data->role = ui::AX_ROLE_CLIENT;
38 out_node_data->location = widget_->GetWindowBoundsInScreen();
40 out_node_data->state = 0;
H A Dax_window_obj_wrapper.cc46 void AXWindowObjWrapper::Serialize(ui::AXNodeData* out_node_data) { argument
47 out_node_data->id = GetID();
48 out_node_data->role = ui::AX_ROLE_WINDOW;
50 out_node_data->state = 0;
51 out_node_data->location = window_->bounds();
52 out_node_data->AddStringAttribute(
H A Dax_view_obj_wrapper.cc42 void AXViewObjWrapper::Serialize(ui::AXNodeData* out_node_data) { argument
45 out_node_data->id = GetID();
46 out_node_data->role = view_data.role;
48 out_node_data->state = view_data.state();
50 out_node_data->state |= 1 << ui::AX_STATE_FOCUSED;
52 out_node_data->state |= 1 << ui::AX_STATE_FOCUSABLE;
54 out_node_data->location = view_->GetBoundsInScreen();
56 out_node_data->AddStringAttribute(
58 out_node_data->AddStringAttribute(
61 out_node_data
[all...]
/external/chromium_org/chrome/browser/extensions/api/automation_internal/
H A Dautomation_util.cc21 linked_ptr< api::automation_internal::AXNodeData>& out_node_data) {
22 out_node_data->id = node_data.id;
23 out_node_data->role = ToString(node_data.role);
28 out_node_data->state.additional_properties.SetBoolean(
35 out_node_data->location.left = node_data.location.x();
36 out_node_data->location.top = node_data.location.y();
37 out_node_data->location.width = node_data.location.width();
38 out_node_data->location.height = node_data.location.height();
41 out_node_data->bool_attributes.reset(
46 out_node_data
20 PopulateNodeData(const ui::AXNodeData& node_data, linked_ptr< api::automation_internal::AXNodeData>& out_node_data) argument
[all...]

Completed in 1944 milliseconds