Home
last modified time | relevance | path

Searched refs:otherElement (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DRegularImmutableSortedSet.java173 Object otherElement = otherIterator.next(); in equals() local
174 if (otherElement == null in equals()
175 || unsafeCompare(element, otherElement) != 0) { in equals()
/external/webkit/Tools/DumpRenderTree/
DAccessibilityUIElement.cpp193 JSObjectRef otherElement = JSValueToObject(context, arguments[0], exception); in indexOfChildCallback() local
194 AccessibilityUIElement* childElement = toAXElement(otherElement); in indexOfChildCallback()
263 JSObjectRef otherElement = 0; in isEqualCallback() local
265 otherElement = JSValueToObject(context, arguments[0], exception); in isEqualCallback()
269 return JSValueMakeBoolean(context, toAXElement(thisObject)->isEqual(toAXElement(otherElement))); in isEqualCallback()
801 bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement) in isEqual() argument
803 return platformUIElement() == otherElement->platformUIElement(); in isEqual()
DAccessibilityUIElement.h73 bool isEqual(AccessibilityUIElement* otherElement);
/external/webkit/Source/WebKit/qt/Api/
Dqwebelement.cpp189 Element *otherElement = other.m_element; in operator =() local
190 if (otherElement) in operator =()
191 otherElement->ref(); in operator =()
194 m_element = otherElement; in operator =()
/external/webkit/Tools/DumpRenderTree/win/
DAccessibilityUIElementWin.cpp62 bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement) in isEqual() argument
65 COMPtr<IAccessibleComparable> otherComparable = comparableObject(otherElement->m_element.get()); in isEqual()