/ndk/tests/awk/extract-pid/ |
D | test-1.in | 2 root 1 0 348 208 ffffffff 00000000 S /init 3 root 2 0 0 0 ffffffff 00000000 S kthreadd 4 root 3 2 0 0 ffffffff 00000000 S ksoftirqd/0 5 root 6 2 0 0 ffffffff 00000000 S migration/0 6 root 10 2 0 0 ffffffff 00000000 S khelper 7 root 11 2 0 0 ffffffff 00000000 S suspend 8 root 12 2 0 0 ffffffff 00000000 S irq/329-pogo_de 9 root 13 2 0 0 ffffffff 00000000 S sync_supers 10 root 14 2 0 0 ffffffff 00000000 S bdi-default 11 root 15 2 0 0 ffffffff 00000000 S kblockd [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/ |
D | tree_remove.pass.cpp | 36 Node root; in test1() local 43 root.__left_ = &b; in test1() 45 b.__parent_ = &root; in test1() 70 std::__tree_remove(root.__left_, &y); in test1() 71 assert(std::__tree_invariant(root.__left_)); in test1() 73 assert(root.__parent_ == 0); in test1() 74 assert(root.__left_ == &d); in test1() 75 assert(root.__right_ == 0); in test1() 76 assert(root.__is_black_ == false); in test1() 78 assert(d.__parent_ == &root); in test1() [all …]
|
D | tree_balance_after_insert.pass.cpp | 34 Node root; in test1() local 40 root.__left_ = &c; in test1() 42 c.__parent_ = &root; in test1() 62 std::__tree_balance_after_insert(root.__left_, &a); in test1() 64 assert(std::__tree_invariant(root.__left_)); in test1() 66 assert(root.__left_ == &c); in test1() 68 assert(c.__parent_ == &root); in test1() 89 Node root; in test1() local 95 root.__left_ = &c; in test1() 97 c.__parent_ = &root; in test1() [all …]
|
D | tree_left_rotate.pass.cpp | 32 Node root; in test1() local 35 root.__left_ = &x; in test1() 38 x.__parent_ = &root; in test1() 43 assert(root.__parent_ == 0); in test1() 44 assert(root.__left_ == &y); in test1() 45 assert(root.__right_ == 0); in test1() 46 assert(y.__parent_ == &root); in test1() 57 Node root; in test2() local 63 root.__left_ = &x; in test2() 66 x.__parent_ = &root; in test2() [all …]
|
D | tree_right_rotate.pass.cpp | 32 Node root; in test1() local 35 root.__left_ = &x; in test1() 38 x.__parent_ = &root; in test1() 43 assert(root.__parent_ == 0); in test1() 44 assert(root.__left_ == &y); in test1() 45 assert(root.__right_ == 0); in test1() 46 assert(y.__parent_ == &root); in test1() 57 Node root; in test2() local 63 root.__left_ = &x; in test2() 66 x.__parent_ = &root; in test2() [all …]
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | double-slash-root.m4 | 1 # double-slash-root.m4 serial 4 -*- Autoconf -*- 36 [Define to 1 if // is a file system root distinct from /.])
|
D | gnulib-comp.m4 | 363 m4/double-slash-root.m4
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | dc.inp | 12 # Compute square root of 2
|
D | dc.sed | 312 square root of negative number
|
/ndk/sources/host-tools/make-3.81/ |
D | README.customs | 63 for Customs requires root permissions. Practically, this means that GNU 64 make must be installed setuid root to use Customs. 66 If you don't want to do this, you can build Customs such that root 71 > be suid root if customs was compiled WITHOUT the USE_RESERVED_PORTS
|
D | README.DOS | 251 root of the DJGPP installation tree (unless you've tampered with
|
/ndk/ |
D | ndk-gdb.py | 474 root = tree.getroot() 475 if 'package' in root.attrib: 476 return root.attrib['package'] 485 root = tree.getroot() 486 for application in root.iter('application'): 503 root = tree.getroot() 505 for application in root.iter('application'):
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regcomp.c | 38 static reg_errcode_t preorder (bin_tree_t *root, 41 static reg_errcode_t postorder (bin_tree_t *root, 56 Idx node, bool root); 1203 postorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)), in postorder() argument 1208 for (node = root; ; ) in postorder() 1235 preorder (bin_tree_t *root, reg_errcode_t (fn (void *, bin_tree_t *)), in preorder() argument 1240 for (node = root; ; ) in preorder() 1675 calc_eclosure_iter (re_node_set *new_set, re_dfa_t *dfa, Idx node, bool root) in calc_eclosure_iter() argument 1741 if (incomplete && !root) in calc_eclosure_iter() 2105 bin_tree_t *tree, *eor, *root; in parse() local [all …]
|
/ndk/build/tools/ |
D | make-release.sh | 248 …IR" --prebuilt-dir="$PREBUILT_DIR" --systems="$HOST_SYSTEMS" --development-root="$DEVELOPMENT_ROOT"
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | compile.c | 781 struct replacement root; local 789 tail = &root; 872 sub->replacement = root.next;
|
D | Makefile.in | 45 $(top_srcdir)/m4/double-slash-root.m4 \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | __tree | 120 // root must be black 200 // Effects: Makes __x->__right_ the subtree root with __x as its left child 220 // Effects: Makes __x->__left_ the subtree root with __x as its right child 346 // __y can't be root if it is a right child 389 // Else __x isn't root, and is "doubly black", even though it may 436 // __w is known not to be root, so root hasn't changed 488 // __w is known not to be root, so root hasn't changed
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | README | 62 is (ie, "chgrp kmem make;chmod g+s make" as root). In any case, the
|
/ndk/docs/text/ |
D | OVERVIEW.text | 147 your application needs to your application's root project directory. You 333 Android 2.2 or higher, and does not require root or privileged access, as
|
D | NATIVE-ACTIVITY.text | 59 directory in the project's root directory. This directory stores all of your native code.
|
D | NDK-GDB.text | 206 The root of the problem is complex, but is essentially due to a very unfortunate
|
D | APPLICATION-MK.text | 41 > Application's project root directory. This is used to copy/install
|
/ndk/tests/ |
D | run-tests.sh | 235 dump "ERROR: Could not find the root (/) directory on the device!"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
D | lit.cfg | 175 # test_source_root: The root path where tests are located.
|
/ndk/docs/renderscript/ |
D | doxygen.css | 537 The following two styles can be used to replace the root node title
|