OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:childBefore
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
RangeBoundaryPoint.h
44
Node*
childBefore
() const;
48
void set(PassRefPtr<Node> container, int offset, Node*
childBefore
);
78
, m_childBeforeBoundary(other.
childBefore
())
87
inline Node* RangeBoundaryPoint::
childBefore
() const
120
inline void RangeBoundaryPoint::set(PassRefPtr<Node> container, int offset, Node*
childBefore
)
124
ASSERT(
childBefore
== (offset ? container->childNode(offset - 1) : 0));
127
m_childBeforeBoundary =
childBefore
;
187
if (a.
childBefore
() || b.
childBefore
()) {
188
if (a.
childBefore
() != b.childBefore()
[
all
...]
/frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java
562
final View
childBefore
= getChildAt(childIndex - 1);
565
if (childIndex < getChildCount() &&
childBefore
instanceof ActionMenuChildView) {
566
result |= ((ActionMenuChildView)
childBefore
).needsDividerAfter();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuView.java
556
final View
childBefore
= getChildAt(childIndex - 1);
559
if (childIndex < getChildCount() &&
childBefore
instanceof ActionMenuChildView) {
560
result |= ((ActionMenuChildView)
childBefore
).needsDividerAfter();
Completed in 30 milliseconds