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

1234567

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTouchList.h30 #include "core/dom/Touch.h"
44 static PassRefPtrWillBeRawPtr<TouchList> create(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
51 Touch* item(unsigned);
52 const Touch* item(unsigned) const;
54 void append(const PassRefPtrWillBeRawPtr<Touch> touch) { m_values.append(touch); }
64 TouchList(WillBeHeapVector<RefPtrWillBeMember<Touch> >& touches)
70 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:WebCore::Touch
62 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:WebCore::Touch
76 PassRefPtrWillBeRawPtr<Touch> Touch::cloneWithNewTarget(EventTarget* eventTarget) const
78 return adoptRefWillBeNoop(new Touch(eventTarget, m_identifier, m_clientPos, m_screenPos, m_pagePos, m_radius, m_rotationAngle, m_force, m_absoluteLocation));
81 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 RefCountedWillBeGarbageCollectedFinalized<Touch>, public ScriptWrappable {
45 static PassRefPtrWillBeRawPtr<Touch> create(LocalFrame* frame, EventTarget* target,
50 new Touch(frame, target, identifier, screenPos, pagePos, radius, rotationAngle, force));
53 // DOM Touch implementation
70 PassRefPtrWillBeRawPtr<Touch> cloneWithNewTarget(EventTarget*) const;
75 Touch(LocalFrame* frame, EventTarget* target, unsigned identifier,
79 Touch(EventTarget*, unsigned identifier, const FloatPoint& clientPos,
H A DTouch.idl28 ] interface Touch {
H A DElement.idl138 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
139 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
140 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
141 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
/external/chromium_org/base/files/
H A Dfile_util_proxy.h47 static bool Touch(
/external/chromium_org/build/android/gyp/
H A Djar.py38 build_utils.Touch(options.jar_path)
54 build_utils.Touch(options.stamp)
H A Ddelete_files.py49 build_utils.Touch(options.stamp)
H A Dgcc_preprocess.py45 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_toc.py90 build_utils.Touch(toc_path)
104 build_utils.Touch(options.stamp)
H A Dcreate_standalone_apk.py56 build_utils.Touch(options.stamp)
H A Dfinalize_apk.py62 build_utils.Touch(options.stamp)
H A Dproguard.py49 build_utils.Touch(options.stamp)
H A Dstrip_library_for_device.py55 build_utils.Touch(options.stamp)
/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)
/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,
H A Dfile_io.h83 /// 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,
H A Dfile_ref.cc141 int32_t FileRef::Touch(PP_Time last_access_time, function in class:pp::FileRef
145 return get_interface<PPB_FileRef_1_2>()->Touch(
150 return get_interface<PPB_FileRef_1_1>()->Touch(
155 return get_interface<PPB_FileRef_1_0>()->Touch(
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_thunk.cc57 int32_t Touch(PP_Resource file_io, function in namespace:ppapi::thunk::__anon9633
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::__anon9635
111 VLOG(4) << "PPB_FileRef::Touch()";
115 return enter.SetResult(enter.object()->Touch(
176 &Touch,
189 &Touch,
204 &Touch,

Completed in 359 milliseconds

1234567