/external/libcups/packaging/ |
D | cups.list.in | 85 %replaces SUNWlpr LP Print Service, (Root) 89 %replaces SUNWpsr LP Print Server, (Root) 91 %replaces SUNWpcr LP Print Client, (Root) 250 f 0555 root sys $SBINDIR/cupsd scheduler/cupsd 252 d 0755 root sys $SERVERBIN - 254 d 0755 root sys $SERVERBIN/apple - 255 f 0555 root sys $SERVERBIN/apple/ipp backend/ipp 256 l 0755 root sys $SERVERBIN/apple/http ipp 257 l 0755 root sys $SERVERBIN/apple/https ipp 258 l 0755 root sys $SERVERBIN/apple/ipps ipp [all …]
|
/external/llvm-project/libcxx/test/libcxx/containers/associative/ |
D | tree_remove.pass.cpp | 40 Node root; in test1() local 47 root.__left_ = &b; in test1() 49 b.__parent_ = &root; in test1() 74 std::__tree_remove(root.__left_, &y); in test1() 75 assert(std::__tree_invariant(root.__left_)); in test1() 77 assert(root.__parent_ == 0); in test1() 78 assert(root.__left_ == &d); in test1() 79 assert(root.__right_ == 0); in test1() 80 assert(root.__is_black_ == false); in test1() 82 assert(d.__parent_ == &root); in test1() [all …]
|
D | tree_balance_after_insert.pass.cpp | 38 Node root; in test1() local 44 root.__left_ = &c; in test1() 46 c.__parent_ = &root; in test1() 66 std::__tree_balance_after_insert(root.__left_, &a); in test1() 68 assert(std::__tree_invariant(root.__left_)); in test1() 70 assert(root.__left_ == &c); in test1() 72 assert(c.__parent_ == &root); in test1() 93 Node root; in test1() local 99 root.__left_ = &c; in test1() 101 c.__parent_ = &root; in test1() [all …]
|
/external/libcxx/test/libcxx/containers/associative/ |
D | tree_remove.pass.cpp | 39 Node root; in test1() local 46 root.__left_ = &b; in test1() 48 b.__parent_ = &root; in test1() 73 std::__tree_remove(root.__left_, &y); in test1() 74 assert(std::__tree_invariant(root.__left_)); in test1() 76 assert(root.__parent_ == 0); in test1() 77 assert(root.__left_ == &d); in test1() 78 assert(root.__right_ == 0); in test1() 79 assert(root.__is_black_ == false); in test1() 81 assert(d.__parent_ == &root); in test1() [all …]
|
D | tree_balance_after_insert.pass.cpp | 37 Node root; in test1() local 43 root.__left_ = &c; in test1() 45 c.__parent_ = &root; in test1() 65 std::__tree_balance_after_insert(root.__left_, &a); in test1() 67 assert(std::__tree_invariant(root.__left_)); in test1() 69 assert(root.__left_ == &c); in test1() 71 assert(c.__parent_ == &root); in test1() 92 Node root; in test1() local 98 root.__left_ = &c; in test1() 100 c.__parent_ = &root; in test1() [all …]
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_misc.py | 25 t = tkinter.Toplevel(self.root, name='top') 30 t = tkinter.Toplevel(self.root) 38 root = self.root 39 root.tk_setPalette('black') 40 self.assertEqual(root['background'], 'black') 41 root.tk_setPalette('white') 42 self.assertEqual(root['background'], 'white') 45 root.tk_setPalette, 'spam') 47 root.tk_setPalette(background='black') 48 self.assertEqual(root['background'], 'black') [all …]
|
/external/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
D | Combine.td | 52 /// * The names of the root nodes (requires at least one) 66 /// The operator at the root of a GICombineRule.Defs dag. 73 /// Declare a root node. There must be at least one of these in every combine 75 /// TODO: The plan is to elide `root` definitions and determine it from the DAG 78 def root : GIDefKind; 90 /// The operator at the root of a GICombineRule.Match dag. 108 /// The operator at the root of a GICombineRule.Apply dag. 117 (defs root:$d), 123 (defs root:$root, extending_load_matchdata:$matchinfo), 124 (match (wip_match_opcode G_LOAD, G_SEXTLOAD, G_ZEXTLOAD):$root, [all …]
|
/external/toybox/tests/ |
D | chgrp.test | 7 echo "$SHOWSKIP: chgrp (not root)" 12 # We chgrp between "root" and the last group in /etc/group. 36 testing "dir" "$IN chgrp root dir $OUT" \ 37 "root $GRP $GRP $GRP $GRP $GRP $GRP\n" "" "" 38 testing "file" "$IN chgrp root dir/file $OUT" \ 39 "$GRP $GRP $GRP root $GRP $GRP $GRP\n" "" "" 40 testing "dir and file" "$IN chgrp root dir dir/file $OUT" \ 41 "root $GRP $GRP root $GRP $GRP $GRP\n" "" "" 44 testing "symlink->file" "$IN chgrp root dir2/file $OUT" \ 45 "$GRP $GRP $GRP root $GRP $GRP $GRP\n" "" "" [all …]
|
D | id.test | 8 # BSDs call the root group "wheel" instead, 9 # and Raspberry Pi OS has root also in the 117(lpadmin) group. 10 CLEAN="sed 's/ context=.*//g' | sed 's/wheel/root/g' | \ 13 testing "0" "id 0 | $CLEAN" "uid=0(root) gid=0(root) groups=0(root)\n" "" "" 14 testing "root" "id root | $CLEAN" \ 15 "uid=0(root) gid=0(root) groups=0(root)\n" "" "" 16 testing "-G root" "id -G root | $CLEAN" "0\n" "" "" 17 testing "-nG root" "id -nG root | $CLEAN" "root\n" "" "" 18 testing "-g root" "id -g root" "0\n" "" "" 19 testing "-ng root" "id -ng root | $CLEAN" "root\n" "" "" [all …]
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | deadness_analysis_test.cc | 64 ops::Switch CreateSwitch(const Scope& root, const string& prefix) { in CreateSwitch() argument 65 Output value = ops::Placeholder(root.WithOpName(prefix + "/value"), DT_FLOAT); in CreateSwitch() 67 ops::Placeholder(root.WithOpName(prefix + "/pred"), DT_BOOL); in CreateSwitch() 68 return ops::Switch(root.WithOpName(prefix + "/switch"), value, predicate); in CreateSwitch() 129 InductionVarInfo CreateInductionVariable(const Scope& root, in CreateInductionVariable() argument 134 root.WithOpName(prefix + "/enter"), initial_value, frame_name); in CreateInductionVariable() 136 ops::Merge iv(root.WithOpName(prefix + "/iv"), in CreateInductionVariable() 138 Output increment_by = ops::Const(root.WithOpName(prefix + "/incr"), 1); in CreateInductionVariable() 139 Output final_value = ops::Const(root.WithOpName(prefix + "/final"), 10); in CreateInductionVariable() 141 ops::Less(root.WithOpName(prefix + "/cond"), iv.output, final_value); in CreateInductionVariable() [all …]
|
D | resource_operation_safety_analysis_test.cc | 80 Scope root = Scope::NewRootScope().ExitOnError(); in TEST() local 82 Node* read = MakeRead(root, "R"); in TEST() 83 Node* write = MakeWrite(root, "W"); in TEST() 85 root.graph()->AddControlEdge(write, read); in TEST() 88 TF_ASSERT_OK(ComputeIncompatiblePairs(root.graph(), &incompatible_pairs)); in TEST() 96 Scope root = Scope::NewRootScope().ExitOnError(); in TEST() local 98 Node* read = MakeRead(root, "R"); in TEST() 99 Node* write = MakeWrite(root, "W"); in TEST() 101 root.graph()->AddControlEdge(read, write); in TEST() 104 TF_ASSERT_OK(ComputeIncompatiblePairs(root.graph(), &incompatible_pairs)); in TEST() [all …]
|
D | increase_dynamism_for_auto_jit_pass_test.cc | 101 Scope root = Scope::NewRootScope() in TEST() local 106 Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT); in TEST() 107 Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32); in TEST() 108 Output size = ops::Const(root.WithOpName("size"), {-1, 500}); in TEST() 109 Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size); in TEST() 112 TF_ASSERT_OK(IncreaseDynamismForAutoJit(root, &result)); in TEST() 147 Scope root = Scope::NewRootScope() in TEST() local 152 Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT); in TEST() 153 Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32); in TEST() 154 Output size = ops::Const(root.WithOpName("size"), {-1}); in TEST() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | calltest.c | 16 /* THE FILE WHERE ALL C API TESTS ARE ADDED TO THE ROOT */ 21 void addUtility(TestNode** root); 22 void addBreakIter(TestNode** root); 23 void addStandardNamesTest(TestNode **root); 24 void addFormatTest(TestNode** root); 25 void addConvert(TestNode** root); 26 void addCollTest(TestNode** root); 27 void addComplexTest(TestNode** root); 28 void addBidiTransformTest(TestNode** root); 29 void addUDataTest(TestNode** root); [all …]
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | load_test.py | 94 root = tracking.AutoTrackable() 95 root.dep_one = tracking.AutoTrackable() 96 root.dep_two = tracking.AutoTrackable() 97 root.dep_two.dep = tracking.AutoTrackable() 98 root.dep_three = root.dep_two.dep 99 imported = cycle(root, cycles) 105 root = tracking.AutoTrackable() 106 root.v1 = variables.Variable(1., trainable=True) 107 root.v2 = variables.Variable(2., trainable=False) 108 self.evaluate([root.v1.initializer, root.v2.initializer]) [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/ |
D | XMLElementTest.java | 31 private XMLElement root; field in XMLElementTest 36 root = new XMLElement("root", null, null, false, "UTF-8", buffer); in setup() 41 root = new XMLElement("root", "-//JACOCO//TEST", "test.dtd", false, in init_should_write_doctype_when_given() 44 + "<!DOCTYPE root PUBLIC \"-//JACOCO//TEST\" \"test.dtd\"><root/>", in init_should_write_doctype_when_given() 50 root = new XMLElement("root", null, null, true, "UTF-8", buffer); in init_should_write_standalone_when_given() 52 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><root/>", in init_should_write_standalone_when_given() 59 assertContent("<root/>"); in close_should_emit_empty_element_when_no_children_exist() 64 root.close(); in close_should_be_allowed_multiple_times() 65 root.close(); in close_should_be_allowed_multiple_times() 66 assertContent("<root/>"); in close_should_be_allowed_multiple_times() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 73 TreeTy* Root; 76 /// Constructs a map from a pointer to a tree root. In general one 80 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap() 81 if (Root) { Root->retain(); } in ImmutableMap() 84 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap() 85 if (Root) { Root->retain(); } in ImmutableMap() 89 if (Root) { Root->release(); } in ~ImmutableMap() 93 if (Root != X.Root) { 94 if (X.Root) { X.Root->retain(); } 95 if (Root) { Root->release(); } [all …]
|
/external/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 71 TreeTy* Root; 74 /// Constructs a map from a pointer to a tree root. In general one 78 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap() 79 if (Root) { Root->retain(); } in ImmutableMap() 82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap() 83 if (Root) { Root->retain(); } in ImmutableMap() 87 if (Root != X.Root) { 88 if (X.Root) { X.Root->retain(); } 89 if (Root) { Root->release(); } 90 Root = X.Root; [all …]
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_misc.py | 11 root = self.root 18 self.assertIsNone(root.after(1)) 22 timer1 = root.after(0, callback) 23 self.assertIn(timer1, root.tk.call('after', 'info')) 24 (script, _) = root.tk.splitlist(root.tk.call('after', 'info', timer1)) 25 root.update() # Process all pending events. 28 root.tk.call(script) 32 timer1 = root.after(0, callback, 42, 11) 33 root.update() # Process all pending events. 37 timer1 = root.after(1000, callback) [all …]
|
D | test_variables.py | 10 self.root = Tcl() 13 del self.root 19 return self.root.getboolean(self.root.call("info", "exists", *args)) 22 v = Variable(self.root) 27 v = Variable(self.root, "sample string", "varname") 33 v = Variable(self.root, "sample string", "varname") 40 v1 = Variable(self.root, name="name") 41 v2 = Variable(self.root, name="name") 50 v1 = Variable(self.root, name="abc") 51 v2 = Variable(self.root, name="abc") [all …]
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64Combine.td | 15 (defs root:$root), 16 (match (wip_match_opcode G_FCONSTANT):$root, 17 [{ return matchFConstantToConstant(*${root}, MRI); }]), 18 (apply [{ applyFConstantToConstant(*${root}); }])>; 33 (defs root:$root, shuffle_matchdata:$matchinfo), 34 (match (wip_match_opcode G_SHUFFLE_VECTOR):$root, 35 [{ return matchREV(*${root}, MRI, ${matchinfo}); }]), 36 (apply [{ applyShuffleVectorPseudo(*${root}, ${matchinfo}); }]) 40 (defs root:$root, shuffle_matchdata:$matchinfo), 41 (match (wip_match_opcode G_SHUFFLE_VECTOR):$root, [all …]
|
/external/openssh/contrib/suse/ |
D | openssh.spec | 193 %defattr(-,root,root) 196 %attr(0755,root,root) %dir %{_sysconfdir}/ssh 197 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config 198 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config 199 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/moduli 200 %attr(0644,root,root) %config(noreplace) /etc/pam.d/sshd 201 %attr(0755,root,root) %config /etc/init.d/sshd 202 %attr(0755,root,root) %{_bindir}/ssh-keygen 203 %attr(0755,root,root) %{_bindir}/scp 204 %attr(0755,root,root) %{_bindir}/ssh [all …]
|
/external/tensorflow/tensorflow/cc/framework/ |
D | cc_ops_test.cc | 42 Scope root = Scope::NewRootScope(); in TEST() local 43 auto c = Const(root, {{1, 1}}); in TEST() 50 MatMul m(root, c, {{41}, {1}}); in TEST() 51 TF_EXPECT_OK(root.status()); in TEST() 53 test::GetTensor(root, m, &out); in TEST() 58 Scope root = Scope::NewRootScope(); in TEST() local 59 auto m = MatMul(root, {{1}, {1}}, {{41}, {1}}, MatMul::TransposeA(true)); in TEST() 60 TF_EXPECT_OK(root.status()); in TEST() 62 test::GetTensor(root, m, &out); in TEST() 67 Scope root = Scope::NewRootScope(); in TEST() local [all …]
|
/external/libchrome/base/json/ |
D | json_reader_unittest.cc | 25 std::unique_ptr<Value> root = JSONReader().ReadToValue(" null "); in TEST() local 26 ASSERT_TRUE(root); in TEST() 27 EXPECT_TRUE(root->is_none()); in TEST() 35 std::unique_ptr<Value> root = JSONReader().ReadToValue("true "); in TEST() local 36 ASSERT_TRUE(root); in TEST() 37 EXPECT_TRUE(root->is_bool()); in TEST() 41 std::unique_ptr<Value> root = JSONReader().ReadToValue("/* comment */null"); in TEST() local 42 ASSERT_TRUE(root); in TEST() 43 EXPECT_TRUE(root->is_none()); in TEST() 44 root = JSONReader().ReadToValue("40 /* comment */"); in TEST() [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowViewGroupTest.java | 35 private ViewGroup root; field in ShadowViewGroupTest 47 root = new FrameLayout(context); in setUp() 55 root.addView(child1); in setUp() 56 root.addView(child2); in setUp() 57 root.addView(child3); in setUp() 73 root.removeView(null); in removeNullView_doesNothing() 78 assertThat(root.getLayoutAnimationListener()).isNull(); in testLayoutAnimationListener() 93 root.setLayoutAnimationListener(animationListener); in testLayoutAnimationListener() 95 assertThat(root.getLayoutAnimationListener()).isSameInstanceAs(animationListener); in testLayoutAnimationListener() 100 assertThat(root.getLayoutAnimation()).isNull(); in testLayoutAnimation() [all …]
|
/external/tcpdump/tests/ |
D | mstp-v.out | 2 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 3 CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 8012, 6 digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 200000, 9 MSTI regional-root-id 6001.00:1e:f7:05:a8:80, pathcost 0 11 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 12 MSTI regional-root-id 8002.00:16:46:b5:8c:80, pathcost 200000 15 port-role Designated, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 16 CIST regional-root-id 8000.00:16:46:b5:8c:80, CIST port-id 800f, 19 digest 9357ebb7a8d74dd5fef4f2bab50531aa, CIST int-root-pathcost 0, 21 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root [all …]
|