HomeSort by relevance Sort by last modified time
    Searched refs:toElement (Results 26 - 50 of 222) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCandidate.cpp 45 return isElement() ? toElement(node()).fastGetAttribute(titleAttr) : nullAtom;
68 return toElement(node()).getAttribute(relAttr).contains("alternate");
TreeScopeAdopter.cpp 73 WillBeHeapVector<RefPtrWillBeMember<Attr> >& attrs = *toElement(node)->attrNodeList();
97 WillBeHeapVector<RefPtrWillBeMember<Attr> >& attrs = *toElement(node)->attrNodeList();
VisitedLinkState.cpp 77 if (node->isLink() && linkHashForElement(toElement(*node)) == linkHash)
ContainerNode.cpp     [all...]
Element.h 643 template<typename T> inline T& toElement(Node& node)
648 template<typename T> inline T* toElement(Node* node)
653 template<typename T> inline const T& toElement(const Node& node)
658 template<typename T> inline const T* toElement(const Node* node)
663 template<typename T, typename U> inline T* toElement(const RefPtr<U>& node) { return toElement<T>(node.get()); }
667 return node->isElementNode() && toElement(node)->isDisabledFormControl();
673 return parent && parent->isElementNode() ? toElement(parent) : 0;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
EmptyContiguousSet.java 61 @Override ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
EmptyImmutableSortedSet.java 105 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) {
111 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
RegularImmutableSortedSet.java 200 ImmutableSortedSet<E> headSetImpl(E toElement, boolean inclusive) {
204 elements, checkNotNull(toElement), comparator(), FIRST_AFTER, NEXT_HIGHER);
207 elements, checkNotNull(toElement), comparator(), FIRST_PRESENT, NEXT_HIGHER);
214 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
216 .headSetImpl(toElement, toInclusive);
AbstractSortedMultiset.java 105 public SortedMultiset<E> subMultiset(E fromElement, BoundType fromBoundType, E toElement,
107 return tailMultiset(fromElement, fromBoundType).headMultiset(toElement, toBoundType);
RegularContiguousSet.java 45 /* @Override */ ContiguousSet<C> headSetImpl(C toElement, boolean inclusive) {
46 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
56 /* @Override */ ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement,
59 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
Constraints.java 175 @Override public SortedSet<E> headSet(E toElement) {
176 return constrainedSortedSet(delegate.headSet(toElement), constraint);
178 @Override public SortedSet<E> subSet(E fromElement, E toElement) {
180 delegate.subSet(fromElement, toElement), constraint);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.cpp 235 if (node()->isElementNode() && toElement(node())->isFocusable())
418 for (Element* element = toElement(node); element; element = element->parentElement()) {
481 return ((node->isElementNode() && toElement(node)->isFormControlElement())
658 if (node()->isElementNode() && toElement(node())->isDisabledFormControl())
678 return !toElement(node)->isDisabledFormControl();
733 if (n && (n->isElementNode() && toElement(n)->isFormControlElement()))
757 return node->isElementNode() && toElement(node)->supportsFocus();
855 Element* element = toElement(node);
897 return toElement(node)->innerText();
908 HTMLLabelElement* label = labelForElement(toElement(node()))
    [all...]
AXMenuList.cpp 95 return !toElement(node())->isDisabledFormControl();
AXListBoxOption.cpp 64 if (toElement(node())->hasAttribute(disabledAttr))
AXSlider.cpp 151 return toElement(sliderRenderer->node())->userAgentShadowRoot()->getElementById(ShadowElementNames::sliderThumb())->boundingBox();
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.cpp 72 const Element& element = toElement(node);
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.h 110 return toElement(this)->youngestShadowRoot();
InsertionPoint.h 111 return toElement(parent)->shadow();
ShadowRoot.h 71 Element* host() const { return toElement(parentOrShadowHostNode()); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.cpp 73 return !toElement(renderer->node())->getAttribute(openAttr).isNull();
RenderSlider.cpp 93 return toSliderThumbElement(toElement(node())->userAgentShadowRoot()->getElementById(ShadowElementNames::sliderThumb()));
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FormatBlockCommand.cpp 46 return node->isElementNode() && isElementForFormatBlock(toElement(node)->tagQName());
121 return commonAncestor->isElementNode() ? toElement(commonAncestor) : 0;
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedSetTest.java 100 @Override public SortedSet<T> subSet(T fromElement, T toElement) {
101 return standardSubSet(fromElement, toElement);
  /external/smali/util/src/main/java/org/jf/util/
ArraySortedSet.java 136 public SortedSet<T> subSet(T fromElement, T toElement) {
141 public SortedSet<T> headSet(T toElement) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSummaryElement.cpp 81 Element* element = toElement(node);

Completed in 911 milliseconds

12 3 4 5 6 7 8 9