HomeSort by relevance Sort by last modified time
    Searched defs:lastChild (Results 51 - 75 of 116) sorted by null

1 23 4 5

  /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/dom/
ContainerNode.h 69 Node* lastChild() const { return m_lastChild; }
318 inline Node* Node::lastChild() const
322 return toContainerNode(this)->lastChild();
Range.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.cpp 288 Frame* FrameLoaderClientImpl::lastChild() const
290 return toCoreFrame(m_webFrame->lastChild());
  /external/chromium_org/third_party/libxml/src/
SAX2.c     [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 55 private NestedMapData lastChild = null;
113 data.prevSibling = sym.lastChild;
114 if (sym.lastChild != null) {
115 // Update previous lastChild to point to new child.
116 sym.lastChild.nextSibling = data;
121 sym.lastChild = data;
143 parent.lastChild = prevSibling;
  /external/libxml2/
SAX2.c     [all...]
  /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);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 343 Node lastChild = parent.getLastChild();
344 if (lastChild != null && lastChild.getNodeType() == Node.TEXT_NODE) {
345 Text textNode = (Text) lastChild;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 307 Node lastChild = node.getLastChild();
308 if (lastChild != null) {
309 IndexedRegion previousRegion = (IndexedRegion) lastChild;
311 return Pair.of(node, lastChild);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 469 Node lastChild = root.getLastChild();
470 if (lastChild != null) {
471 if (lastChild instanceof IndexedRegion) {
472 IndexedRegion region = (IndexedRegion) lastChild;
477 while (lastChild != null) {
478 if (lastChild.getNodeType() == Node.ELEMENT_NODE) {
480 indent = AndroidXmlEditor.getIndent(document, lastChild);
483 lastChild = lastChild.getPreviousSibling();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceSelectionCommand.cpp 80 Node* lastChild() const;
218 Node* ReplacementFragment::lastChild() const
220 return m_fragment ? m_fragment->lastChild() : 0;
317 node = container->lastChild();
324 node = node->lastChild();
352 m_lastNodeInserted = node.lastChild() ? node.lastChild() : NodeTraversal::nextSkippingChildren(node);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.h 104 RenderLayer* lastChild() const { return m_last; }
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 1027 int lastChild = DTM.NULL;
1031 lastChild = child;
1035 return makeNodeHandle(lastChild);
    [all...]
DTMDocumentImpl.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 155 RenderObject* lastChild = renderer->slowLastChild();
156 return lastChild && isInlineWithContinuation(lastChild);
    [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/clang/lib/AST/
ASTDumper.cpp 107 /// If true, prevents lastChild() from marking the node as the last child.
161 Dumper.lastChild();
180 // the caller takes back responsibility for calling lastChild().
208 void lastChild();
427 void ASTDumper::lastChild() {
565 lastChild();
592 lastChild();
604 lastChild();
612 lastChild();
714 lastChild();
    [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...]

Completed in 999 milliseconds

1 23 4 5