Searched defs:detail (Results 1 - 25 of 40) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DCustomEvent.h44 void initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail);
48 ScriptValue detail() const { return m_detail; } function in class:WebCore::CustomEvent
H A DCustomEvent.cpp41 void CustomEvent::initCustomEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue detail) argument
48 m_detail = detail;
H A DUIEvent.h40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
46 void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
49 int detail() const { return m_detail; } function in class:WebCore::UIEvent
66 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView>, int detail);
H A DUIEventWithKeyState.h48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
49 : UIEvent(type, canBubble, cancelable, view, detail)
47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DMouseEvent.h43 int detail, int screenX, int screenY, int pageX, int pageY,
47 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, detail, screenX, screenY, pageX, pageY,
50 static PassRefPtr<MouseEvent> create(const AtomicString& eventType, PassRefPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtr<Node> relatedTarget);
55 int detail, int screenX, int screenY, int clientX, int clientY,
79 int detail, int screenX, int screenY, int pageX, int pageY,
42 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard = 0, bool isSimulated = false) argument
H A DMouseEvent.cpp34 PassRefPtr<MouseEvent> MouseEvent::create(const AtomicString& eventType, PassRefPtr<AbstractView> view, const PlatformMouseEvent& event, int detail, PassRefPtr<Node> relatedTarget) argument
41 detail, event.globalX(), event.globalY(), event.x(), event.y(),
53 int detail, int screenX, int screenY, int pageX, int pageY,
57 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY,
71 int detail, int screenX, int screenY, int clientX, int clientY,
78 initUIEvent(type, canBubble, cancelable, view, detail);
182 if (event()->type() == eventNames().clickEvent && event()->detail() == 2) {
185 event()->detail(), event()->screenX(), event()->screenY(), event()->clientX(), event()->clientY(),
52 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard, bool isSimulated) argument
70 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget) argument
H A DMouseRelatedEvent.cpp78 int detail, int screenX, int screenY, int windowX, int windowY,
80 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
77 MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> abstractView, int detail, int screenX, int screenY, int windowX, int windowY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) argument
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dconstants.hpp27 namespace detail { namespace in namespace:boost
/external/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js23 function(eventType, bubbles, cancellable, detail) {};
25 CustomEvent.prototype.detail;
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js23 function(eventType, bubbles, cancellable, detail) {};
25 CustomEvent.prototype.detail;
/external/clang/test/SemaTemplate/
H A Dqualified-id.cpp37 namespace detail namespace in namespace:PR6063
45 detail::f(a, b);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKGrammarDetail.cpp43 RefPtr<WebGrammarDetail> detail = WebGrammarDetail::create(location, length, toImpl(guesses), toWTFString(userDescription)); local
44 return toAPI(detail.release().releaseRef());
/external/webkit/Source/WebCore/platform/gtk/
H A DScrollbarThemeGtk2.cpp180 const char* detail = orientation == VerticalScrollbar ? "vscrollbar" : "hscrollbar"; local
184 widgetContext.gtkPaintBox(buttonRect, widget, stateType, shadowType, detail);
211 widgetContext.gtkPaintArrow(arrowRect, widget, stateType, shadowType, arrowType, detail);
H A DWidgetRenderingContext.cpp147 void WidgetRenderingContext::gtkPaintBox(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) argument
160 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); local
163 void WidgetRenderingContext::gtkPaintFlatBox(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) argument
167 widget, detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); local
170 void WidgetRenderingContext::gtkPaintFocus(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, const gchar* detail) argument
174 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); local
177 void WidgetRenderingContext::gtkPaintSlider(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail, GtkOrientation orientation) argument
181 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height, orientation); local
184 void WidgetRenderingContext::gtkPaintCheck(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) argument
188 detail, paintRec local
191 gtkPaintOption(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) argument
195 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); local
198 gtkPaintShadow(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, const gchar* detail) argument
202 detail, paintRect.x, paintRect.y, paintRect.width, paintRect.height); local
205 gtkPaintArrow(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, GtkShadowType shadowType, int arrowDirection, const gchar* detail) argument
208 gtk_paint_arrow(gtk_widget_get_style(widget), m_target, stateType, shadowType, &paintRect, widget, detail, local
212 gtkPaintVLine(const IntRect& rect, GtkWidget* widget, GtkStateType stateType, const gchar* detail) argument
215 gtk_paint_vline(gtk_widget_get_style(widget), m_target, stateType, &paintRect, widget, detail, local
[all...]
/external/bluetooth/glib/gmodule/
H A Dgmodule-win32.c49 gchar *detail; local
56 detail = g_strdup_vprintf (format, args);
59 message = g_strconcat (detail, error, NULL);
63 g_free (detail);
/external/bluetooth/glib/gobject/
H A Dgsignal.h102 * @G_SIGNAL_DETAILED: This signal supports "::detail" appendices to the signal name
150 * @G_SIGNAL_MATCH_DETAIL: The signal detail be equal.
203 * @detail: The detail passed on for this emission
214 GQuark detail; member in struct:_GSignalInvocationHint
293 GQuark detail,
297 GQuark detail,
301 GQuark detail,
324 GQuark detail);
328 GQuark detail,
[all...]
/external/llvm/include/llvm/Support/
H A DEndian.h27 namespace detail { namespace in namespace:llvm::support
48 } // end namespace detail
54 reinterpret_cast<const detail::alignment_access_helper
65 reinterpret_cast<detail::alignment_access_helper<value_type, align> *>
72 reinterpret_cast<const detail::alignment_access_helper
83 reinterpret_cast<detail::alignment_access_helper<value_type, align> *>
88 namespace detail { namespace in namespace:llvm::support
135 } // end namespace detail
137 typedef detail::packed_endian_specific_integral
139 typedef detail
[all...]
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.h250 virtual HRESULT STDMETHODCALLTYPE detail(
258 /* [in] */ long detail);
359 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMKeyboardEvent
360 /* [retval][out] */ long* result) { return DOMUIEvent::detail(result); }
367 /* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail); }
507 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMMouseEvent
508 /* [retval][out] */ long* result) { return DOMUIEvent::detail(result); }
515 /* [in] */ long detail) { return DOMUIEvent::initUIEvent(type, canBubble, cancelable, view, detail); }
362 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
510 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
866 virtual HRESULT STDMETHODCALLTYPE detail( function in class:DOMWheelEvent
869 initUIEvent( BSTR type, BOOL canBubble, BOOL cancelable, IDOMWindow* view, long detail) argument
[all...]
H A DDOMEventsClasses.cpp199 HRESULT STDMETHODCALLTYPE DOMUIEvent::detail( function in class:DOMUIEvent
210 /* [in] */ long /*detail*/)
469 /* [in] */ long /*detail*/,
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h434 static void encode(ArgumentEncoder* encoder, const WebCore::GrammarDetail& detail) argument
436 encoder->encodeInt32(detail.location);
437 encoder->encodeInt32(detail.length);
438 encoder->encode(detail.guesses);
439 encoder->encode(detail.userDescription);
442 static bool decode(ArgumentDecoder* decoder, WebCore::GrammarDetail& detail) argument
444 if (!decoder->decodeInt32(detail.location))
446 if (!decoder->decodeInt32(detail.length))
448 if (!decoder->decode(detail.guesses))
450 if (!decoder->decode(detail
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A Dxf86dgastr.h324 BYTE detail; member in struct:__anon8276::__anon8277::__anon8278
/external/libvpx/vpx/internal/
H A Dvpx_codec_internal.h442 char detail[80]; member in struct:vpx_internal_error_info
459 size_t sz = sizeof(info->detail);
463 vsnprintf(info->detail, sz - 1, fmt, ap);
465 info->detail[sz-1] = '\0';
/external/valgrind/main/lackey/
H A Dlk_main.c345 void increment_detail(ULong* detail) argument
347 (*detail)++;
350 /* A helper that adds the instrumentation for a detail. */
713 // above the function itself for more detail.
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp292 // it begins but before the first detail in it, but we can stop if we find a second grammar result.
296 const GrammarDetail* detail = &result->details[j]; local
297 ASSERT(detail->length > 0 && detail->location >= 0);
298 if (result->location + detail->location >= currentStartOffset && result->location + detail->location + detail->length <= currentEndOffset && (!foundGrammar || result->location + detail->location < grammarDetailLocation)) {
300 grammarDetailLocation = result->location + detail->location;
359 // Found some bad grammar. Find the earliest detail rang
364 const GrammarDetail* detail = &grammarDetails[i]; local
549 const GrammarDetail* detail = &result->details[j]; local
[all...]
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp522 void EditorClientWx::updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail) argument

Completed in 1692 milliseconds

12