/external/webkit/Source/WebCore/dom/ |
D | Touch.h | 39 class Touch : public RefCounted<Touch> { 41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target, in create() 44 return adoptRef(new Touch(frame, target, identifier, screenX, in create() 58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
|
D | TouchList.h | 46 Touch* item(unsigned); 48 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); } in append() 53 Vector<RefPtr<Touch> > m_values;
|
D | Touch.cpp | 56 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int … in Touch() function in WebCore::Touch
|
D | TouchList.cpp | 34 Touch* TouchList::item(unsigned index) in item()
|
D | TouchList.idl | 34 Touch item(in unsigned long index);
|
D | Touch.idl | 30 ] Touch {
|
D | Document.h | 147 class Touch; variable 1082 …PassRefPtr<Touch> createTouch(DOMWindow*, EventTarget*, int identifier, int pageX, int pageY, int …
|
D | Document.idl | 327 [ReturnsNew, EnabledAtRuntime] Touch createTouch(in DOMWindow window,
|
D | Document.cpp | 5053 PassRefPtr<Touch> Document::createTouch(DOMWindow* window, EventTarget* target, int identifier, int… in createTouch() 5060 return Touch::create(frame, target, identifier, screenX, screenY, pageX, pageY); in createTouch()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSTouchCustom.cpp | 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Touch* touch) in toJSNewlyCreated() 42 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, Touch, touch); in toJSNewlyCreated()
|
/external/chromium/base/ |
D | file_util_proxy.h | 171 static bool Touch( 179 static bool Touch(
|
D | file_util_proxy.cc | 866 bool FileUtilProxy::Touch( in Touch() function in base::FileUtilProxy 878 bool FileUtilProxy::Touch( in Touch() function in base::FileUtilProxy
|
/external/webkit/LayoutTests/fast/events/touch/ |
D | document-create-touch-list-crash-expected.txt | 1 …that WebKit doesn't crash when the document.createTouchList API is called with non-Touch parameters
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8DocumentCustom.cpp | 148 …Touch* touch = V8DOMWrapper::isWrapperOfType(args[i], &V8Touch::info) ? V8Touch::toNative(args[i]-… in createTouchListCallback()
|
/external/webkit/Source/cmake/ |
D | OptionsWinCE.cmake | 53 WEBKIT_FEATURE(ENABLE_TOUCH_EVENTS "Enable Touch Events" DEFAULT OFF)
|
D | OptionsEfl.cmake | 94 WEBKIT_FEATURE(ENABLE_TOUCH_EVENTS "Enable Touch Events" DEFAULT OFF)
|
/external/valgrind/main/none/tests/ppc32/ |
D | testVMX.stdout.exp | 86 Function vec_dst [Vector Data Stream Touch] not checked 89 Function vec_dstst [Vector Data Stream Touch for Store] not checked 92 Function vec_dststt [Vector Data Stream Touch for Store Transient] not checked 95 Function vec_dstt [Vector Data Stream Touch Transient] not checked
|
/external/qemu/android/avd/ |
D | hardware-properties.ini | 49 # Touch screen type 54 abstract = Touch screen type
|
/external/webkit/Source/WebCore/plugins/android/ |
D | PluginViewAndroid.cpp | 248 Touch* touch = touches->item(x); in handleTouchEvent()
|
/external/llvm/docs/ |
D | HowToSetUpLLVMStyleRTTI.rst | 382 Touch on some of the more advanced features, like ``isa_impl`` and
|
/external/webkit/Source/JavaScriptGlue/JavaScriptGlue.xcodeproj/ |
D | project.pbxproj | 351 …shellScript = "# Touch Info.plist to let Xcode know it needs to copy it into the built product\nif…
|
/external/webkit/Source/WebCore/ |
D | DerivedSources.make | 517 Touch \
|
D | CodeGenerators.pri | 153 dom/Touch.idl \
|
/external/webkit/Source/WebKit/win/ |
D | ChangeLog | 132 * Interfaces/WebKit.idl: Touch file to force autogeneration 2302 * WebKitPrefix.h: Touch it to avoid incremental build failure on Windows. 3098 * Interfaces/WebKit.idl: Touch the file. 3990 * Interfaces/WebKit.idl: Touch it to force a rebuild (and for good luck :-)). 4215 * Interfaces/IWebView.idl: Touch to force a build. 4236 Touch this file to force interfaces to be rebuilt. 4633 Touch WebKit.idl to ensure that interfaces rebuild. 4701 * Interfaces/WebKit.idl: Touch WebKit.idl to make sure Interfaces rebuild. 6062 Unreviewed. Touch WebKit.idl to fix the build. 6937 * WebKitPrefix.cpp: Touch it. [all …]
|
/external/webkit/Source/WebCore/page/ |
D | EventHandler.cpp | 3185 RefPtr<Touch> touch = Touch::create(doc->frame(), touchTarget.get(), point.id(), in handleTouchEvent()
|