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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeRenderingTraversal.h 72 Node* nextInScope(const Node*);
NodeRenderingTraversal.cpp 96 Node* nextInScope(const Node* node)
  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 45 ScopedHashTableVal *NextInScope;
58 ScopedHashTableVal *getNextInScope() { return NextInScope; }
61 static ScopedHashTableVal *Create(ScopedHashTableVal *nextInScope,
68 New->NextInScope = nextInScope;
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 433 for (Node* node = start; node; node = direction == FocusDirectionForward ? nextInScope(node) : previousInScope(node)) {
445 for (Node* node = start; node; node = NodeRenderingTraversal::nextInScope(node)) {
478 for (Node* node = nextInScope(start); node; node = nextInScope(node)) {
485 if (Node* winner = findNodeWithExactTabIndex(nextInScope(start), tabIndex, FocusDirectionForward))
    [all...]

Completed in 2371 milliseconds