Searched refs:Touch (Results 1 - 25 of 176) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.h30 #include "core/dom/Touch.h"
45 static PassRefPtrWillBeRawPtr<TouchList> adopt(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
52 Touch* item(unsigned);
53 const Touch* item(unsigned) const;
55 void append(const PassRefPtrWillBeRawPtr<Touch> touch) { m_values.append(touch); }
62 TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
67 WillBeHeapVector<RefPtrWillBeMember<Touch> > m_values;
H A DTouch.cpp28 #include "core/dom/Touch.h"
47 Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force) function in class:blink::Touch
61 Touch::Touch(EventTarget* target, unsigned identifier, const FloatPoint& clientPos, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force, LayoutPoint absoluteLocation) function in class:blink::Touch
74 PassRefPtrWillBeRawPtr<Touch> Touch::cloneWithNewTarget(EventTarget* eventTarget) const
76 return adoptRefWillBeNoop(new Touch(eventTarget, m_identifier, m_clientPos, m_screenPos, m_pagePos, m_radius, m_rotationAngle, m_force, m_absoluteLocation));
79 void Touch::trace(Visitor* visitor)
H A DTouchList.cpp32 Touch* TouchList::item(unsigned index)
39 const Touch* TouchList::item(unsigned index) const
H A DTouchList.idl31 getter Touch item(unsigned long index);
H A DTouch.h43 class Touch FINAL : public RefCountedWillBeGarbageCollected<Touch>, public ScriptWrappable {
46 static PassRefPtrWillBeRawPtr<Touch> create(LocalFrame* frame, EventTarget* target,
51 new Touch(frame, target, identifier, screenPos, pagePos, radius, rotationAngle, force));
54 // DOM Touch implementation
74 PassRefPtrWillBeRawPtr<Touch> cloneWithNewTarget(EventTarget*) const;
79 Touch(LocalFrame* frame, EventTarget* target, unsigned identifier,
83 Touch(EventTarget*, unsigned identifier, const FloatPoint& clientPos,
H A DTouch.idl28 ] interface Touch {
H A DDocument.idl182 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
183 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
184 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
188 [RuntimeEnabled=Touch] Touch createTouch([Default=Undefined] optional Window window,
199 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
H A DElement.idl128 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
129 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
130 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
131 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
/external/chromium_org/build/android/gyp/
H A Dtouch.py13 build_utils.Touch(f)
H A Dcreate_placeholder_files.py28 build_utils.Touch(target_path)
31 build_utils.Touch(options.stamp)
H A Ddelete_files.py49 build_utils.Touch(options.stamp)
H A Dapk_install.py90 build_utils.Touch(options.install_record)
101 build_utils.Touch(options.stamp)
H A Djar.py39 build_utils.Touch(jar_path, fail_if_missing=True)
70 build_utils.Touch(options.stamp)
H A Djar_toc.py92 build_utils.Touch(toc_path, fail_if_missing=True)
118 build_utils.Touch(options.stamp)
H A Dapk_obfuscate.py151 build_utils.Touch(f)
154 build_utils.Touch(options.stamp)
H A Dcopy_ex.py50 build_utils.Touch(options.stamp)
H A Dcreate_standalone_apk.py56 build_utils.Touch(options.stamp)
/external/chromium_org/base/files/
H A Dfile_util_proxy.h47 static bool Touch(
/external/chromium_org/ppapi/c/
H A Dppb_file_ref.h154 * Touch() Updates time stamps for a file. You must have write access to the
162 * completion of Touch().
166 int32_t (*Touch)(PP_Resource file_ref, member in struct:PPB_FileRef_1_2
248 int32_t (*Touch)(PP_Resource file_ref, member in struct:PPB_FileRef_1_0
269 int32_t (*Touch)(PP_Resource file_ref, member in struct:PPB_FileRef_1_1
H A Dppb_file_io.h150 * Touch() Updates time stamps for the file opened by this FileIO object.
160 * completion of Touch().
166 int32_t (*Touch)(PP_Resource file_io, member in struct:PPB_FileIO_1_1
312 int32_t (*Touch)(PP_Resource file_io, member in struct:PPB_FileIO_1_0
/external/chromium_org/components/cronet/tools/
H A Dextract_from_jars.py43 build_utils.Touch(options.stamp)
H A Djar_src.py40 build_utils.Touch(options.stamp)
/external/chromium_org/ppapi/cpp/
H A Dfile_ref.h108 /// Touch() Updates time stamps for a file. You must have write access to the
114 /// completion of Touch().
117 int32_t Touch(PP_Time last_access_time,
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_thunk.cc57 int32_t Touch(PP_Resource file_io, function in namespace:ppapi::thunk::__anon10259
61 VLOG(4) << "PPB_FileIO::Touch()";
65 return enter.SetResult(enter.object()->Touch(last_access_time,
146 &Touch,
159 &Touch,
H A Dppb_file_ref_thunk.cc107 int32_t Touch(PP_Resource file_ref, function in namespace:ppapi::thunk::__anon10261
111 VLOG(4) << "PPB_FileRef::Touch()";
115 return enter.SetResult(enter.object()->Touch(
176 &Touch,
189 &Touch,
204 &Touch,

Completed in 919 milliseconds

12345678