/external/chromium_org/third_party/WebKit/Source/core/dom/ |
TouchList.h | 30 #include "core/dom/Touch.h" 43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches) 50 Touch* item(unsigned); 51 const Touch* item(unsigned) const; 53 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); } 61 TouchList(Vector<RefPtr<Touch> >& touches) 67 Vector<RefPtr<Touch> > m_values;
|
TouchList.cpp | 32 Touch* TouchList::item(unsigned index) 39 const Touch* TouchList::item(unsigned index) const
|
TouchList.idl | 29 getter Touch item(unsigned long index);
|
Touch.h | 40 class Touch : public RefCounted<Touch>, public ScriptWrappable { 42 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target, 46 return adoptRef(new Touch(frame, target, identifier, screenX, 63 PassRefPtr<Touch> cloneWithNewTarget(EventTarget*) const; 66 Touch(Frame* frame, EventTarget* target, unsigned identifier, 70 Touch(EventTarget*, unsigned identifier, int clientX, int clientY,
|
Touch.cpp | 28 #include "core/dom/Touch.h" 55 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY, int radiusX, int radiusY, float rotationAngle, float force) 76 Touch::Touch(EventTarget* target, unsigned identifier, int clientX, int clientY, int screenX, int screenY, int pageX, int pageY, int radiusX, int radiusY, float rotationAngle, float force, LayoutPoint absoluteLocation) 94 PassRefPtr<Touch> Touch::cloneWithNewTarget(EventTarget* eventTarget) const 96 return adoptRef(new Touch(eventTarget, m_identifier, m_clientX, m_clientY, m_screenX, m_screenY, m_pageX, m_pageY, m_radiusX, m_radiusY, m_rotationAngle, m_force, m_absoluteLocation));
|
Touch.idl | 26 interface Touch {
|
/cts/tests/tests/text/src/android/text/method/cts/ |
TouchTest.java | 27 import android.text.method.Touch; 76 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0); 86 Touch.scrollTo(tv, layout, width + 100, 5); 95 Touch.scrollTo(tv, layout, width - 10, 5); 144 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event1); 152 assertEquals(0, Touch.getInitialScrollX(tv, spannable)); 153 assertEquals(0, Touch.getInitialScrollY(tv, spannable)); 158 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event2); 166 assertEquals(0, Touch.getInitialScrollX(tv, spannable)); 167 assertEquals(0, Touch.getInitialScrollY(tv, spannable)) [all...] |
/external/chromium_org/build/android/gyp/ |
dex.py | 30 build_utils.Touch(options.dex_path) 47 parser.add_option('--stamp', help='Path to touch on success.') 61 build_utils.Touch(options.stamp)
|
jar.py | 38 build_utils.Touch(options.jar_path) 47 parser.add_option('--stamp', help='Path to touch on success.') 57 build_utils.Touch(options.stamp)
|
jar_toc.py | 89 build_utils.Touch(toc_path) 96 parser.add_option('--stamp', help='Path to touch on success.') 106 build_utils.Touch(options.stamp)
|
apk_install.py | 65 help='Path to touch on success.') 89 build_utils.Touch(options.install_record) 100 build_utils.Touch(options.stamp)
|
create_standalone_apk.py | 47 parser.add_option('--stamp', help='Path to touch on success.') 56 build_utils.Touch(options.stamp)
|
finalize_apk.py | 50 parser.add_option('--stamp', help='Path to touch on success.') 63 build_utils.Touch(options.stamp)
|
gcc_preprocess.py | 38 parser.add_option('--stamp', help='Path to touch on success.') 49 build_utils.Touch(options.stamp)
|
proguard.py | 42 parser.add_option('--stamp', help='Path to touch on success.') 52 build_utils.Touch(options.stamp)
|
/external/chromium_org/ppapi/cpp/ |
file_ref.h | 118 /// Touch() Updates time stamps for a file. You must have write access to the 124 /// completion of Touch(). 127 int32_t Touch(PP_Time last_access_time,
|
file_ref.cc | 125 int32_t FileRef::Touch(PP_Time last_access_time, 129 return get_interface<PPB_FileRef_1_1>()->Touch( 134 return get_interface<PPB_FileRef_1_0>()->Touch(
|
file_io.h | 83 /// Touch() Updates time stamps for the file opened by this FileIO object. 89 /// completion of Touch(). 93 int32_t Touch(PP_Time last_access_time,
|
/external/chromium_org/ppapi/thunk/ |
ppb_file_io_thunk.cc | 59 int32_t Touch(PP_Resource file_io, 63 VLOG(4) << "PPB_FileIO::Touch()"; 67 return enter.SetResult(enter.object()->Touch(last_access_time, 148 &Touch, 161 &Touch,
|
ppb_file_ref_api.h | 33 virtual int32_t Touch(PP_Time last_access_time,
|
ppb_file_ref_thunk.cc | 94 int32_t Touch(PP_Resource file_ref, 98 VLOG(4) << "PPB_FileRef::Touch()"; 102 return enter.SetResult(enter.object()->Touch( 163 &Touch, 176 &Touch,
|
/external/chromium_org/ppapi/c/ |
ppb_file_ref.h | 133 * Touch() Updates time stamps for a file. You must have write access to the 141 * completion of Touch(). 145 int32_t (*Touch)(PP_Resource file_ref, 227 int32_t (*Touch)(PP_Resource file_ref,
|
ppb_file_io.h | 150 * Touch() Updates time stamps for the file opened by this FileIO object. 160 * completion of Touch(). 166 int32_t (*Touch)(PP_Resource file_io, 312 int32_t (*Touch)(PP_Resource file_io,
|
/external/chromium_org/base/files/ |
file_util_proxy.h | 133 static bool Touch( 142 static bool Touch(
|
/external/chromium_org/ppapi/api/ |
ppb_file_ref.idl | 119 * Touch() Updates time stamps for a file. You must have write access to the 127 * completion of Touch(). 131 int32_t Touch([in] PP_Resource file_ref,
|