HomeSort by relevance Sort by last modified time
    Searched refs:IAccessibleComparable (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit/win/Interfaces/
AccessibleComparable.idl 42 interface IAccessibleComparable : IAccessible
44 HRESULT isSameObject([in] IAccessibleComparable* other, [out, retval] BOOL* result);
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityControllerWin.cpp 255 static COMPtr<IAccessibleComparable> comparableObject(const COMPtr<IServiceProvider>& serviceProvider)
257 COMPtr<IAccessibleComparable> comparable;
258 serviceProvider->QueryService(SID_AccessibleComparable, __uuidof(IAccessibleComparable), reinterpret_cast<void**>(&comparable));
269 COMPtr<IAccessibleComparable> thisComparable = comparableObject(thisServiceProvider);
277 COMPtr<IAccessibleComparable> elementComparable = comparableObject(elementServiceProvider);
AccessibilityUIElementWin.cpp 38 static COMPtr<IAccessibleComparable> comparableObject(IAccessible* accessible)
43 COMPtr<IAccessibleComparable> comparable;
44 serviceProvider->QueryService(SID_AccessibleComparable, __uuidof(IAccessibleComparable), reinterpret_cast<void**>(&comparable));
64 COMPtr<IAccessibleComparable> comparable = comparableObject(m_element.get());
65 COMPtr<IAccessibleComparable> otherComparable = comparableObject(otherElement->m_element.get());
  /external/webkit/Source/WebKit/win/
AccessibleBase.h 33 class DECLSPEC_UUID("3dbd565b-db22-4d88-8e0e-778bde54524a") AccessibleBase : public IAccessibleComparable, public IServiceProvider, public WebCore::AccessibilityObjectWrapper {
95 // IAccessibleComparable
96 virtual HRESULT STDMETHODCALLTYPE isSameObject(IAccessibleComparable* other, BOOL* result);
AccessibleBase.cpp 98 else if (IsEqualGUID(riid, __uuidof(IAccessibleComparable)))
99 *ppvObject = static_cast<IAccessibleComparable*>(this);
722 HRESULT AccessibleBase::isSameObject(IAccessibleComparable* other, BOOL* result)

Completed in 92 milliseconds