Home
last modified time | relevance | path

Searched refs:Touch (Results 1 – 25 of 144) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTouchList.h43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches) in create()
50 Touch* item(unsigned);
51 const Touch* item(unsigned) const;
53 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); } in append()
61 TouchList(Vector<RefPtr<Touch> >& touches) in TouchList()
67 Vector<RefPtr<Touch> > m_values;
DTouch.h40 class Touch : public RefCounted<Touch>, public ScriptWrappable {
42 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target, in create()
46 return adoptRef(new Touch(frame, target, identifier, screenX, in create()
63 PassRefPtr<Touch> cloneWithNewTarget(EventTarget*) const;
66 Touch(Frame* frame, EventTarget* target, unsigned identifier,
70 Touch(EventTarget*, unsigned identifier, int clientX, int clientY,
DTouch.cpp55 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int … in Touch() function in WebCore::Touch
76 Touch::Touch(EventTarget* target, unsigned identifier, int clientX, int clientY, int screenX, int s… in Touch() function in WebCore::Touch
94 PassRefPtr<Touch> Touch::cloneWithNewTarget(EventTarget* eventTarget) const in cloneWithNewTarget()
96 …return adoptRef(new Touch(eventTarget, m_identifier, m_clientX, m_clientY, m_screenX, m_screenY, m… in cloneWithNewTarget()
DTouchList.cpp32 Touch* TouchList::item(unsigned index) in item()
39 const Touch* TouchList::item(unsigned index) const in item()
DDocument.idl174 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
175 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
176 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
177 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
184 [RuntimeEnabled=Touch] Touch createTouch([Default=Undefined] optional Window window,
195 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
DElement.idl141 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
142 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
143 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
144 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
/external/chromium_org/ppapi/thunk/
Dppb_file_io_thunk.cc59 int32_t Touch(PP_Resource file_io, in Touch() function
67 return enter.SetResult(enter.object()->Touch(last_access_time, in Touch()
148 &Touch,
161 &Touch,
Dppb_file_ref_thunk.cc94 int32_t Touch(PP_Resource file_ref, in Touch() function
102 return enter.SetResult(enter.object()->Touch( in Touch()
163 &Touch,
176 &Touch,
Dppb_file_ref_api.h33 virtual int32_t Touch(PP_Time last_access_time,
/external/chromium_org/ui/events/cocoa/
Devents_mac.mm165 // Touch is currently unsupported.
169 // Touch is currently unsupported.
174 // Touch is currently unsupported.
179 // Touch is currently unsupported.
184 // Touch is currently unsupported.
189 // Touch is currently unsupported.
/external/chromium_org/build/android/gyp/
Ddex.py30 build_utils.Touch(options.dex_path)
61 build_utils.Touch(options.stamp)
Djar.py38 build_utils.Touch(options.jar_path)
57 build_utils.Touch(options.stamp)
Djar_toc.py89 build_utils.Touch(toc_path)
106 build_utils.Touch(options.stamp)
Dapk_install.py89 build_utils.Touch(options.install_record)
100 build_utils.Touch(options.stamp)
Demma_instr.py101 build_utils.Touch(options.stamp)
181 build_utils.Touch(options.stamp)
Dgcc_preprocess.py49 build_utils.Touch(options.stamp)
/external/chromium_org/ppapi/cpp/
Dfile_ref.cc125 int32_t FileRef::Touch(PP_Time last_access_time, in Touch() function in pp::FileRef
129 return get_interface<PPB_FileRef_1_1>()->Touch( in Touch()
134 return get_interface<PPB_FileRef_1_0>()->Touch( in Touch()
Dfile_io.cc76 int32_t FileIO::Touch(PP_Time last_access_time, in Touch() function in pp::FileIO
80 return get_interface<PPB_FileIO_1_1>()->Touch( in Touch()
84 return get_interface<PPB_FileIO_1_0>()->Touch( in Touch()
Dfile_ref.h127 int32_t Touch(PP_Time last_access_time,
/external/chromium_org/ppapi/c/
Dppb_file_ref.h145 int32_t (*Touch)(PP_Resource file_ref, member
227 int32_t (*Touch)(PP_Resource file_ref, member
Dppb_file_io.h166 int32_t (*Touch)(PP_Resource file_io, member
312 int32_t (*Touch)(PP_Resource file_io, member
/external/chromium_org/base/files/
Dfile_util_proxy.h133 static bool Touch(
142 static bool Touch(
/external/chromium_org/content/browser/renderer_host/pepper/
Dpepper_external_file_ref_backend.cc41 int32_t PepperExternalFileRefBackend::Touch( in Touch() function in content::PepperExternalFileRefBackend
46 base::FileUtilProxy::Touch( in Touch()
/external/chromium/base/
Dfile_util_proxy.h171 static bool Touch(
179 static bool Touch(
/external/chromium_org/tools/gyp/test/mac/postbuild-multiple-configurations/
Dtest.gyp18 'postbuild_name': 'Touch a file.',

123456