OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lastchild
(Results
76 - 100
of
257
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRubyRun.cpp
66
return
lastChild
() &&
lastChild
()->isRubyBase();
85
RenderObject* child =
lastChild
();
CounterNode.h
62
CounterNode*
lastChild
() const { return m_lastChild; }
RenderTableSection.h
69
RenderObject*
lastChild
() const { ASSERT(children() == virtualChildren()); return children()->
lastChild
(); }
/external/chromium_org/third_party/WebKit/Source/core/dom/
Node.idl
47
[PerWorldBindings] readonly attribute Node
lastChild
;
/external/chromium_org/tools/metrics/histograms/
update_extension_functions.py
101
extension_functions_enum_node.
lastChild
)
update_policies.py
90
policy_enum_node.removeChild(policy_enum_node.
lastChild
)
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrappendchild2.java
66
Node
lastChild
;
hc_attrappendchild4.java
70
Node
lastChild
;
hc_attrappendchild5.java
68
Node
lastChild
;
hc_attrinsertbefore7.java
72
Node
lastChild
;
hc_attrlastchild.java
31
* Checks that Node.
lastChild
for an attribute node contains
/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
;
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py
80
and root.
lastChild
is elem
91
and root.
lastChild
is nelem
487
and pi.
lastChild
is None
787
and root.firstChild is root.
lastChild
814
and root.firstChild is not root.
lastChild
815
and root.firstChild.nextSibling is root.
lastChild
817
and root.
lastChild
.previousSibling is root.firstChild
818
and root.
lastChild
.nextSibling is None
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py
80
and root.
lastChild
is elem
91
and root.
lastChild
is nelem
487
and pi.
lastChild
is None
787
and root.firstChild is root.
lastChild
814
and root.firstChild is not root.
lastChild
815
and root.firstChild.nextSibling is root.
lastChild
817
and root.
lastChild
.previousSibling is root.firstChild
818
and root.
lastChild
.nextSibling is None
[
all
...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.m
294
ANTLRCommonTree *
lastChild
= (ANTLRCommonTree *)[children objectAtIndex:[children count]-1];
296
stopIndex = [
lastChild
getTokenStopIndex];
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
breadcrumbs_controller.js
186
this.bc_.
lastChild
.style.width = Math.min(currentWidth, containerWidth) +
238
this.bc_.
lastChild
.style.width =
/external/chromium_org/third_party/tlslite/tlslite/utils/
xmltools.py
66
if child == element.
lastChild
:
130
if child != element.
lastChild
:
/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)
/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
474
View
lastChild
= mScrollView.findViewById(R.id.last_horizontal_child);
478
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/html/
HTMLCollection.cpp
263
Node* descendent = node.
lastChild
();
264
for (Node* current = descendent; current; current = current->
lastChild
())
271
return onlyIncludeDirectChildren ? rootNode.
lastChild
() : lastDescendent(rootNode);
Completed in 900 milliseconds
1
2
3
4
5
6
7
8
9
10
11