HomeSort by relevance Sort by last modified time
    Searched full:lastchild (Results 101 - 125 of 274) sorted by null

1 2 3 45 6 7 8 91011

  /external/markdown/markdown/
blockprocessors.py 32 def lastChild(self, parent):
174 child = self.lastChild(parent)
193 sibling = self.lastChild(parent)
234 sibling = self.lastChild(parent)
271 sibling = self.lastChild(parent)
434 sibling = self.lastChild(parent)
  /packages/apps/Launcher3/src/com/android/launcher3/
DeviceProfile.java     [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 531 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
532 TiXmlNode* LastChild() { return lastChild; }
534 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
535 TiXmlNode* LastChild( const char * _value ) {
536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value ));
542 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
543 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 531 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
532 TiXmlNode* LastChild() { return lastChild; }
534 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
535 TiXmlNode* LastChild( const char * _value ) {
536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value ));
542 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
543 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/tinyxml/
tinyxml.h 491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
492 TiXmlNode* LastChild() { return lastChild; }
493 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
494 TiXmlNode* LastChild( const char * value );
499 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
500 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/tinyxml2/
tinyxml2.h 490 const XMLNode* LastChild() const { return lastChild; }
491 XMLNode* LastChild() { return const_cast<XMLNode*>(const_cast<const XMLNode*>(this)->LastChild() ); }
597 XMLNode* lastChild;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 475 View lastChild = mScrollView.findViewById(R.id.last_horizontal_child);
479 mScrollView.requestChildFocus(lastChild, lastChild);
ScrollViewTest.java 503 View lastChild = mScrollView.findViewById(R.id.last_child);
507 mScrollView.requestChildFocus(lastChild, lastChild);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlock.h 72 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
74 // If you have a RenderBlock, use firstChild or lastChild instead.
InlineFlowBox.h 87 InlineBox* lastChild() const { checkConsistency(); return m_lastChild; }
177 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild,
RenderTable.cpp 180 if (!beforeChild && lastChild() && lastChild()->isTableSection() && lastChild()->isAnonymous() && !lastChild()->isBeforeContent()) {
181 lastChild()->addChild(child);
    [all...]
EllipsisBox.cpp 83 InlineBox* anchorBox = lastLine->lastChild();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasProfileView.js 280 var lastChild = lastNode.children.peekLast();
281 if (!lastChild)
283 lastNode = lastChild;
382 var lastChild;
383 while ((lastChild = node.children.peekLast()))
384 node = lastChild;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
IndentOutdentCommand.cpp 85 if (end.anchorNode() == selectedListItem.get() || end.anchorNode()->isDescendantOf(selectedListItem->lastChild())) {
88 moveParagraphWithClones(VisiblePosition(start), VisiblePosition(positionAfterNode(selectedListItem->lastChild())), newList.get(), selectedListItem.get());
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 371 View lastChild = layoutManager.getChildAt(layoutManager.getChildCount() - 1);
372 ViewHolder lastHolder = mRecyclerView.getChildViewHolder(lastChild);
  /external/chromium_org/chrome/common/extensions/api/
automation.idl 260 static AutomationNode lastChild();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PositionIterator.cpp 92 m_anchorNode = m_anchorNode->lastChild();
RangeBoundaryPoint.h 165 m_childBeforeBoundary = m_containerNode->lastChild();
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedTreeWalker.cpp 55 return traverseSiblings(direction == TraversalDirectionForward ? node->firstChild() : node->lastChild(), direction);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGContainer.cpp 180 for (RenderObject* child = lastChild(); child; child = child->previousSibling()) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Section.js 159 var childElement = parent.lastChild;
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrame.cpp 164 WebFrame* WebFrame::lastChild() const
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNode.h 67 NodeType* lastChild() const { return m_lastChild; }
  /external/chromium_org/third_party/WebKit/public/web/
WebNode.h 99 BLINK_EXPORT WebNode lastChild() const;

Completed in 3153 milliseconds

1 2 3 45 6 7 8 91011