HomeSort by relevance Sort by last modified time
    Searched refs:root (Results 76 - 100 of 4880) 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`
  /external/v8/build/linux/
sysroot_ld_path.sh 21 local root="$1"
28 local entry="$root$localpath"
37 local root="$1"
51 if ls $root$included_files >/dev/null 2>&1 ; then
52 for inc_file in $root$included_files; do
53 process_ld_so_conf "$root" "$inc_file"
59 process_ld_so_conf "$root" "$inc_file"
68 process_entry "$root" "$ENTRY"
  /external/v8/test/test262/
list.py 11 for root, dirs, files in os.walk("data"):
15 print('/'.join(root.split(os.sep) + [name]))
  /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);
  /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 38 ViewGroup root = activity.getRoot(); local
39 Scene scene = new Scene(root);
40 assertThat(scene.getSceneRoot(), is(sameInstance(root)));
47 ViewGroup root = activity.getRoot(); local
49 Scene scene = new Scene(root, layout);
57 assertThat(root.getChildCount(), is(1));
58 assertThat(root.getChildAt(0), is((View) layout));
67 ViewGroup root = activity.getRoot(); local
69 Scene scene = new Scene(root, view);
77 assertThat(root.getChildCount(), is(1))
86 ViewGroup root = activity.getRoot(); local
97 ViewGroup root = activity.getRoot(); local
109 ViewGroup root = activity.getRoot(); local
120 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/v8/test/fuzzer/
testcfg.py 23 def __init__(self, name, root):
24 super(FuzzerTestSuite, self).__init__(name, root)
30 for fname in os.listdir(os.path.join(self.root, subtest)):
31 if not os.path.isfile(os.path.join(self.root, subtest, fname)):
41 return [os.path.join(self.root, suite, name)]
47 def GetSuite(name, root):
48 return FuzzerTestSuite(name, root)
  /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...]

Completed in 704 milliseconds

1 2 34 5 6 7 8 91011>>