OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nextparent
(Results
1 - 2
of
2
) sorted by null
/external/e2fsprogs/e2fsck/
dict.c
682
dnode_t *
nextparent
= next->parent;
local
695
child->parent =
nextparent
;
697
if (
nextparent
->left == next) {
698
nextparent
->left = child;
700
assert (
nextparent
->right == next);
701
nextparent
->right = child;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp
401
ContainerNode*
nextParent
= next ? next->parentNode() : 0;
402
if (next != pastEnd && n !=
nextParent
) {
404
for (ContainerNode* parent = lastAncestorClosedOrSelf->parentNode(); parent && parent !=
nextParent
; parent = parent->parentNode()) {
[
all
...]
Completed in 57 milliseconds