Home
last modified time | relevance | path

Searched refs:location_data (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/mojo/services/html_viewer/
Dblink_input_events_type_converters.cc62 web_event->x = event->location_data->in_view_location->x; in BuildWebMouseEventFrom()
63 web_event->y = event->location_data->in_view_location->y; in BuildWebMouseEventFrom()
70 if (!event->location_data->screen_location.is_null()) { in BuildWebMouseEventFrom()
71 web_event->globalX = event->location_data->screen_location->x; in BuildWebMouseEventFrom()
72 web_event->globalY = event->location_data->screen_location->y; in BuildWebMouseEventFrom()
155 web_event->x = event->location_data->in_view_location->x; in BuildWebMouseWheelEventFrom()
156 web_event->y = event->location_data->in_view_location->y; in BuildWebMouseWheelEventFrom()
159 if (!event->location_data->screen_location.is_null()) { in BuildWebMouseWheelEventFrom()
160 web_event->globalX = event->location_data->screen_location->x; in BuildWebMouseWheelEventFrom()
161 web_event->globalY = event->location_data->screen_location->y; in BuildWebMouseWheelEventFrom()
/external/chromium_org/mojo/examples/sample_app/
Dgles2_client_impl.cc63 capture_point_ = *event.location_data->in_view_location; in HandleInputEvent()
72 (event.location_data->in_view_location->y < last_drag_point_.y || in HandleInputEvent()
73 event.location_data->in_view_location->x > last_drag_point_.x) in HandleInputEvent()
77 last_drag_point_, *event.location_data->in_view_location)); in HandleInputEvent()
80 last_drag_point_ = *event.location_data->in_view_location; in HandleInputEvent()
92 capture_point_, *event.location_data->in_view_location), delta); in HandleInputEvent()
Dsample_app.cc68 if (event->location_data && event->location_data->in_view_location) in OnEvent()
/external/chromium_org/mojo/services/public/cpp/input_events/lib/
Dinput_events_type_converters.cc103 LocationDataPtr location_data(LocationData::New()); in Convert() local
104 location_data->in_view_location = Point::From(located_event->location()); in Convert()
106 location_data->screen_location = in Convert()
110 event->location_data = location_data.Pass(); in Convert()
167 if (!input->location_data.is_null() && in Convert()
168 !input->location_data->in_view_location.is_null()) { in Convert()
169 location = input->location_data->in_view_location.To<gfx::Point>(); in Convert()
/external/chromium_org/mojo/examples/pepper_container_app/
Dpepper_container_app.cc82 if (!event->location_data.is_null()) { in OnEvent()
/external/chromium_org/mojo/services/public/interfaces/input_events/
Dinput_events.mojom68 LocationData? location_data;
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp1498 DataExtractor& location_data, in GetAttributeValueAsLocation() argument
1506 location_data.Clear(); in GetAttributeValueAsLocation()
1518 location_data.SetData(debug_info, block_offset, block_size); in GetAttributeValueAsLocation()
1529 …urn DWARFLocationList::Extract(dwarf2Data->get_debug_loc_data(), &debug_loc_offset, location_data); in GetAttributeValueAsLocation()
/external/clang/lib/Sema/
DSemaTemplateVariadic.cpp392 NestedNameSpecifierLoc QualifierLoc(Qualifier, SS.location_data()); in collectUnexpandedParameterPacks()
DSemaCXXScopeSpec.cpp901 memcpy(Annotation + 1, SS.location_data(), SS.location_size()); in SaveNestedNameSpecifierAnnotation()
DSemaExprCXX.cpp152 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data())); in getDestructorName()
DSemaTemplate.cpp1565 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data()); in getRangeOfTypeInNestedNameSpecifier()
DTreeTransform.h3111 memcmp(SS.location_data(), NNS.getOpaqueData(), SS.location_size()) == 0) in TransformNestedNameSpecifierLoc()
DSemaDecl.cpp4354 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data()); in diagnoseQualifiedDeclaration()
/external/clang/include/clang/Sema/
DDeclSpec.h204 char *location_data() const { return Builder.getBuffer().first; } in location_data() function