/external/chromium_org/ppapi/cpp/ |
touch_point.h | 15 class TouchPoint { 17 TouchPoint() : touch_point_(PP_MakeTouchPoint()) {} 19 TouchPoint(const PP_TouchPoint& point) : touch_point_(point) {} 21 /// @return The identifier for this TouchPoint. This corresponds to the order 29 /// @return The x-y coordinates of this TouchPoint, in DOM coordinate space. 35 /// of this TouchPoint. 38 /// @return The angle of rotation of the elliptical model of this TouchPoint 42 /// @return The pressure applied to this TouchPoint. This is typically a
|
input_event.cc | 271 TouchPoint TouchInputEvent::GetTouchById(PP_TouchListType list, 274 return TouchPoint(); 275 return TouchPoint(get_interface<PPB_TouchInputEvent_1_0>()-> 279 TouchPoint TouchInputEvent::GetTouchByIndex(PP_TouchListType list, 282 return TouchPoint(); 283 return TouchPoint(get_interface<PPB_TouchInputEvent_1_0>()->
|
input_event.h | 336 /// @return The TouchPoint at the given index of the given list, or an empty 337 /// TouchPoint if the index is out of range. 338 TouchPoint GetTouchByIndex(PP_TouchListType list, uint32_t index) const; 340 /// @return The TouchPoint in the given list with the given identifier, or an 341 /// empty TouchPoint if the list does not contain a TouchPoint with that 343 TouchPoint GetTouchById(PP_TouchListType list, uint32_t id) const;
|
/external/chromium_org/ppapi/api/ |
pp_touch_point.idl | 19 * This value represents the identifier for this TouchPoint. The id 29 * This value represents the x and y pixel position of this TouchPoint 36 * and y direction of this TouchPoint. 42 * model of this TouchPoint clockwise from "up." 47 * This value represents the pressure applied to this TouchPoint. This value
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar | |
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar | |
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar | |
/external/chromium_org/ppapi/c/ |
pp_touch_point.h | 32 * This value represents the identifier for this TouchPoint. The id 41 * This value represents the x and y pixel position of this TouchPoint 47 * and y direction of this TouchPoint. 52 * model of this TouchPoint clockwise from "up." 56 * This value represents the pressure applied to this TouchPoint. This value
|
/external/chromium_org/content/browser/android/ |
touch_point.h | 16 class TouchPoint {
|
browser_jni_registrar.cc | 74 {"TouchPoint", content::RegisterTouchPoint},
|
touch_point.cc | 78 void TouchPoint::BuildWebTouchEvent(JNIEnv* env,
|
/sdk/eclipse/features/com.android.ide.eclipse.adt.package/ |
p2.inf | 9 org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(location:http${#58}//dl-ssl.google.com/android/eclipse/,type:0,name:Android Developer Tools Update Site,enabled:true);
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
TouchPoint.java | 14 class TouchPoint { 43 TouchPoint(int state, int id, float x, float y, float pressure, 55 // The following methods are called by native to parse the java TouchPoint 91 public static int createTouchPoints(MotionEvent event, TouchPoint[] pts) { 133 pts[i] = new TouchPoint(state, event.getPointerId(i),
|
ContentViewGestureHandler.java | 225 * @param pts The TouchPoint array to be sent for the event. 228 public boolean sendTouchEvent(long timeMs, int action, TouchPoint[] pts); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
TouchDisambiguation.cpp | 71 static float scoreTouchTarget(IntPoint touchPoint, int padding, IntRect boundingBox) 79 IntSize distance = boundingBox.differenceToPoint(touchPoint); 97 IntPoint touchPoint = touchBox.center(); 98 IntPoint contentsPoint = mainFrame->view()->windowToContents(touchPoint); 134 targetData.score = scoreTouchTarget(touchPoint, touchPointPadding, targetData.windowBoundingBox);
|
TouchAdjustment.cpp | 385 bool snapTo(const SubtargetGeometry& geom, const IntPoint& touchPoint, const IntRect& touchArea, IntPoint& adjustedPoint) 394 if (bounds.contains(touchPoint)) { 395 adjustedPoint = touchPoint; 418 if (quad.containsPoint(touchPoint)) { 419 adjustedPoint = touchPoint;
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
EventSender.cpp | [all...] |
/external/chromium_org/content/ |
content_jni.gypi | 34 'public/android/java/src/org/chromium/content/browser/TouchPoint.java',
|
/packages/apps/Camera2/src/com/android/camera/crop/ |
CropView.java | 145 float[] touchPoint = { 148 mDisplayMatrixInverse.mapPoints(touchPoint); 149 x = touchPoint[0]; 150 y = touchPoint[1];
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropView.java | 146 float[] touchPoint = { 149 mDisplayMatrixInverse.mapPoints(touchPoint); 150 x = touchPoint[0]; 151 y = touchPoint[1];
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageCrop.java | 113 float[] touchPoint = { 116 mDisplayMatrixInverse.mapPoints(touchPoint); 117 x = touchPoint[0]; 118 y = touchPoint[1];
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorInputAgent.cpp | 215 *error = "TouchPoint missing 'state'"; 219 *error = "TouchPoint missing 'x' coordinate"; 223 *error = "TouchPoint missing 'y' coordinate";
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentViewGestureHandlerTest.java | 114 public boolean sendTouchEvent(long timeMs, int action, TouchPoint[] pts) { 197 TouchPoint.initializeConstantsForTesting(); [all...] |
/external/chromium_org/native_client_sdk/src/examples/api/input_event/ |
input_event.cc | 219 pp::TouchPoint point =
|
/external/chromium_org/ppapi/examples/input/ |
pointer_event_input.cc | 77 pp::TouchPoint point = touch.GetTouchByIndex(
|