axis 196 Source/core/accessibility/AXTable.cpp || !cellElement.axis().isEmpty() || !cellElement.scope().isEmpty()) axis 45 Source/core/html/HTMLTableCellElement.h const AtomicString& axis() const; axis 170 Source/core/rendering/RenderFrameSet.cpp void RenderFrameSet::layOutAxis(GridAxis& axis, const Vector<HTMLDimension>& grid, int availableLen) axis 174 Source/core/rendering/RenderFrameSet.cpp int* gridLayout = axis.m_sizes.data(); axis 181 Source/core/rendering/RenderFrameSet.cpp int gridLen = axis.m_sizes.size(); axis 347 Source/core/rendering/RenderFrameSet.cpp int* gridDelta = axis.m_deltas.data(); axis 357 Source/core/rendering/RenderFrameSet.cpp axis.m_deltas.fill(0); axis 536 Source/core/rendering/RenderFrameSet.cpp void RenderFrameSet::startResizing(GridAxis& axis, int position) axis 538 Source/core/rendering/RenderFrameSet.cpp int split = hitTestSplit(axis, position); axis 539 Source/core/rendering/RenderFrameSet.cpp if (split == noSplit || axis.m_preventResize[split]) { axis 540 Source/core/rendering/RenderFrameSet.cpp axis.m_splitBeingResized = noSplit; axis 543 Source/core/rendering/RenderFrameSet.cpp axis.m_splitBeingResized = split; axis 544 Source/core/rendering/RenderFrameSet.cpp axis.m_splitResizeOffset = position - splitPosition(axis, split); axis 547 Source/core/rendering/RenderFrameSet.cpp void RenderFrameSet::continueResizing(GridAxis& axis, int position) axis 551 Source/core/rendering/RenderFrameSet.cpp if (axis.m_splitBeingResized == noSplit) axis 553 Source/core/rendering/RenderFrameSet.cpp int currentSplitPosition = splitPosition(axis, axis.m_splitBeingResized); axis 554 Source/core/rendering/RenderFrameSet.cpp int delta = (position - currentSplitPosition) - axis.m_splitResizeOffset; axis 557 Source/core/rendering/RenderFrameSet.cpp axis.m_deltas[axis.m_splitBeingResized - 1] += delta; axis 558 Source/core/rendering/RenderFrameSet.cpp axis.m_deltas[axis.m_splitBeingResized] -= delta; axis 624 Source/core/rendering/RenderFrameSet.cpp int RenderFrameSet::splitPosition(const GridAxis& axis, int split) const axis 631 Source/core/rendering/RenderFrameSet.cpp int size = axis.m_sizes.size(); axis 637 Source/core/rendering/RenderFrameSet.cpp position += axis.m_sizes[i] + borderThickness; axis 641 Source/core/rendering/RenderFrameSet.cpp int RenderFrameSet::hitTestSplit(const GridAxis& axis, int position) const axis 650 Source/core/rendering/RenderFrameSet.cpp size_t size = axis.m_sizes.size(); axis 654 Source/core/rendering/RenderFrameSet.cpp int splitPosition = axis.m_sizes[0]; axis 658 Source/core/rendering/RenderFrameSet.cpp splitPosition += borderThickness + axis.m_sizes[i]; axis 59 Source/core/xml/XPathGrammar.y Step::Axis axis; axis 82 Source/core/xml/XPathGrammar.y %token <axis> AXISNAME axis 93 Source/core/xml/XPathGrammar.y %type <axis> AxisSpecifier axis 73 Source/core/xml/XPathParser.cpp Step::Axis axis; axis 91 Source/core/xml/XPathParser.cpp axisNames.set(axisNameList[i].name, axisNameList[i].axis); axis 351 Source/core/xml/XPathParser.cpp Step::Axis axis; axis 352 Source/core/xml/XPathParser.cpp if (isAxisName(name, axis)) axis 353 Source/core/xml/XPathParser.cpp return Token(AXISNAME, axis); axis 425 Source/core/xml/XPathParser.cpp yylval->axis = tok.axis; axis 54 Source/core/xml/XPathParser.h Step::Axis axis; axis 60 Source/core/xml/XPathParser.h Token(int t, Step::Axis v): type(t), axis(v) { } axis 128 Source/core/xml/XPathPath.cpp bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis axis 129 Source/core/xml/XPathPath.cpp && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis); axis 135 Source/core/xml/XPathPath.cpp if (nodes.subtreesAreDisjoint() && (step->axis() == Step::ChildAxis || step->axis() == Step::SelfAxis)) axis 42 Source/core/xml/XPathStep.cpp Step::Step(Axis axis, const NodeTest& nodeTest) axis 43 Source/core/xml/XPathStep.cpp : m_axis(axis) axis 48 Source/core/xml/XPathStep.cpp Step::Step(Axis axis, const NodeTest& nodeTest, Vector<OwnPtr<Predicate> >& predicates) axis 49 Source/core/xml/XPathStep.cpp : m_axis(axis) axis 147 Source/core/xml/XPathStep.cpp static inline Node::NodeType primaryNodeType(Step::Axis axis) axis 149 Source/core/xml/XPathStep.cpp switch (axis) { axis 159 Source/core/xml/XPathStep.cpp static inline bool nodeMatchesBasicTest(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest) axis 176 Source/core/xml/XPathStep.cpp if (axis == Step::AttributeAxis) { axis 190 Source/core/xml/XPathStep.cpp ASSERT(axis != Step::NamespaceAxis); axis 193 Source/core/xml/XPathStep.cpp ASSERT(primaryNodeType(axis) == Node::ELEMENT_NODE); axis 215 Source/core/xml/XPathStep.cpp static inline bool nodeMatches(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest) axis 217 Source/core/xml/XPathStep.cpp if (!nodeMatchesBasicTest(node, axis, nodeTest)) axis 103 Source/core/xml/XPathStep.h Axis axis() const { return m_axis; }