HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 76 - 100 of 5051) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/autotest/server/site_tests/platform_GCC/boards/
chromeos-machine.exp 5 set_board_info username root
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
root_list.css 19 #root-list {
23 #root-list th,
24 #root-list td {
29 #root-list tbody td {
  /external/curl/tests/unit/
unit1309.c 73 struct Curl_tree *root; variable in typeref:struct:Curl_tree
77 root = NULL; /* the empty tree */
86 root = Curl_splayinsert(key, root, &nodes[i]);
90 splayprint(root, 0, 1);
95 splayprint(root, 0, 1);
98 rc = Curl_splayremovebyaddr(root, &nodes[rem], &root);
  /external/libxml2/python/tests/
build.py 13 root = doc.newChild(None, "doc", None) variable
14 ns = root.newNs("http://example.com/doc", "my")
15 root.setNs(ns)
16 elem = root.newChild(None, "foo", "bar")
32 root = pi.next variable
33 if root.name != "doc":
34 print("error rereading root")
36 ns = root.ns()
40 elem = root.children
  /external/llvm/utils/
getsrcs.sh 25 TOPDIR=`llvm-config --src-root`
  /frameworks/av/services/audioflinger/tests/
run_all_unit_tests.sh 9 adb root && adb wait-for-device remount
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
ExchangeCompleteResponse.java 25 public ExchangeCompleteResponse(XMLNode root) throws OMAException {
26 super(root, OSUMessageType.ExchangeComplete);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/commands/
MOURN.java 19 public MOURN(XMLNode root) {
20 mURN = root.getAttributeValue("spp:moURN");
  /frameworks/rs/tests/latency/
latency.rs 21 void root(const uint32_t *v_in, uint32_t *v_out) {
  /frameworks/support/compat/jellybean/android/support/v4/view/accessibility/
AccessibilityRecordCompatJellyBean.java 27 public static void setSource(Object record, View root, int virtualDescendantId) {
28 ((AccessibilityRecord) record).setSource(root, virtualDescendantId);
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4879.dir/
a.go 8 root unsafe.Pointer
19 root: unsafe.Pointer(&nodeLoc{}),
25 root: unsafe.Pointer(&slice{}),
30 root: unsafe.Pointer(&maptype{}),
  /prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/
a.go 8 root unsafe.Pointer
19 root: unsafe.Pointer(&nodeLoc{}),
25 root: unsafe.Pointer(&slice{}),
30 root: unsafe.Pointer(&maptype{}),
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tsearch.c 96 trecurse(node *root, void (*action)(const void *, VISIT, int), int level)
98 if (root->left == (struct node_t *)0 && root->right == (struct node_t *)0)
99 (*action)(root, leaf, level);
101 (*action)(root, preorder, level);
102 if (root->left != (struct node_t *)0)
103 trecurse(root->left, action, level + 1);
104 (*action)(root, postorder, level);
105 if (root->right != (struct node_t *)0)
106 trecurse(root->right, action, level + 1)
115 node *root = (node *)vroot; local
    [all...]
  /external/libcxx/test/std/containers/associative/
tree_left_rotate.pass.cpp 32 Node root; local
35 root.__left_ = &x;
38 x.__parent_ = &root;
43 assert(root.__parent_ == 0);
44 assert(root.__left_ == &y);
45 assert(root.__right_ == 0);
46 assert(y.__parent_ == &root);
57 Node root; local
63 root.__left_ = &x;
66 x.__parent_ = &root;
    [all...]
tree_right_rotate.pass.cpp 32 Node root; local
35 root.__left_ = &x;
38 x.__parent_ = &root;
43 assert(root.__parent_ == 0);
44 assert(root.__left_ == &y);
45 assert(root.__right_ == 0);
46 assert(y.__parent_ == &root);
57 Node root; local
63 root.__left_ = &x;
66 x.__parent_ = &root;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/
tree_left_rotate.pass.cpp 32 Node root; local
35 root.__left_ = &x;
38 x.__parent_ = &root;
43 assert(root.__parent_ == 0);
44 assert(root.__left_ == &y);
45 assert(root.__right_ == 0);
46 assert(y.__parent_ == &root);
57 Node root; local
63 root.__left_ = &x;
66 x.__parent_ = &root;
    [all...]
tree_right_rotate.pass.cpp 32 Node root; local
35 root.__left_ = &x;
38 x.__parent_ = &root;
43 assert(root.__parent_ == 0);
44 assert(root.__left_ == &y);
45 assert(root.__right_ == 0);
46 assert(y.__parent_ == &root);
57 Node root; local
63 root.__left_ = &x;
66 x.__parent_ = &root;
    [all...]
  /frameworks/support/transition/tests/src/android/support/transition/
SceneTest.java 36 ViewGroup root = activity.getRoot(); local
37 Scene scene = new Scene(root);
38 assertThat(scene.getSceneRoot(), is(sameInstance(root)));
45 ViewGroup root = activity.getRoot(); local
47 Scene scene = new Scene(root, layout);
55 assertThat(root.getChildCount(), is(1));
56 assertThat(root.getChildAt(0), is((View) layout));
65 ViewGroup root = activity.getRoot(); local
67 Scene scene = new Scene(root, view);
75 assertThat(root.getChildCount(), is(1))
84 ViewGroup root = activity.getRoot(); local
95 ViewGroup root = activity.getRoot(); local
107 ViewGroup root = activity.getRoot(); local
118 ViewGroup root = activity.getRoot(); local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
BinaryTreeTraverser.java 46 public abstract Optional<T> leftChild(T root);
52 public abstract Optional<T> rightChild(T root);
58 public final Iterable<T> children(final T root) {
59 checkNotNull(root);
71 Optional<T> left = leftChild(root);
78 Optional<T> right = rightChild(root);
91 UnmodifiableIterator<T> preOrderIterator(T root) {
92 return new PreOrderIterator(root);
102 PreOrderIterator(T root) {
104 stack.addLast(root);
    [all...]
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 11 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
90 %defattr(-,root,root,-)
92 %attr(0755,root,root) /%{_lib}/libcap-ng.so.*
95 %defattr(-,root,root,-)
96 %attr(0644,root,root) %{_mandir}/man3/*
97 %attr(0644,root,root) %{_includedir}/cap-ng.
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
XMLGroupVisitorTest.java 33 private XMLElement root; field in class:XMLGroupVisitorTest
47 root = new XMLDocument("report", "-//JACOCO//DTD Report 1.0//EN",
49 root.attr("name", "Report");
50 handler = new XMLGroupVisitor(root, null);
57 root.close();
65 root.close();
74 root.close();
  /external/selinux/libsepol/cil/test/unit/
test_cil_tree.c 61 CuAssertPtrEquals(tc, NULL, test_tree->root->cl_head);
62 CuAssertPtrEquals(tc, NULL, test_tree->root->cl_tail);
63 CuAssertPtrEquals(tc, NULL, test_tree->root->parent);
64 CuAssertPtrEquals(tc, NULL, test_tree->root->data);
65 CuAssertPtrEquals(tc, NULL, test_tree->root->next);
66 CuAssertIntEquals(tc, 0, test_tree->root->flavor);
67 CuAssertIntEquals(tc, 0, test_tree->root->line);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type42/
t42parse.c 114 #define T1_Skip_Spaces( p ) (p)->root.funcs.skip_spaces( &(p)->root )
115 #define T1_Skip_PS_Token( p ) (p)->root.funcs.skip_PS_token( &(p)->root )
118 (p)->root.funcs.to_int( &(p)->root )
120 (p)->root.funcs.to_bytes( &(p)->root, b, m, n, d )
123 (p)->root.funcs.to_fixed_array( &(p)->root, m, f, t
    [all...]
  /external/fio/lib/
prio_tree.c 75 static struct prio_tree_node *prio_tree_expand(struct prio_tree_root *root,
80 if (max_heap_index > prio_tree_maxindex(root->index_bits))
81 root->index_bits++;
83 while (max_heap_index > prio_tree_maxindex(root->index_bits)) {
84 root->index_bits++;
86 if (prio_tree_empty(root))
90 first = root->prio_tree_node;
91 prio_tree_remove(root, root->prio_tree_node);
96 last = root->prio_tree_node
401 struct prio_tree_root *root; local
    [all...]
prio_tree.h 26 struct prio_tree_root *root; member in struct:prio_tree_iter
32 struct prio_tree_root *root, uint64_t r_index, uint64_t h_index)
34 iter->root = root;
62 static inline int prio_tree_empty(const struct prio_tree_root *root)
64 return root->prio_tree_node == NULL;
83 struct prio_tree_node *prio_tree_replace(struct prio_tree_root *root,
85 struct prio_tree_node *prio_tree_insert(struct prio_tree_root *root,
87 void prio_tree_remove(struct prio_tree_root *root, struct prio_tree_node *node);

Completed in 8474 milliseconds

1 2 34 5 6 7 8 91011>>