/external/icu/icu4c/source/test/cintltst/ |
D | calltest.c | 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); 30 void addUTF16Test(TestNode** root); [all …]
|
D | cutiltst.c | 26 void addHashtableTest(TestNode** root); 27 void addCStringTest(TestNode** root); 28 void addTrieTest(TestNode** root); 29 void addTrie2Test(TestNode** root); 30 void addUCPTrieTest(TestNode** root); 31 void addEnumerationTest(TestNode** root); 32 void addPosixTest(TestNode** root); 33 void addSortTest(TestNode** root); 35 void addUtility(TestNode** root); 37 void addUtility(TestNode** root) in addUtility() argument [all …]
|
D | cformtst.c | 40 void addURegionTest(TestNode** root); 41 void addUListFmtTest(TestNode** root); 42 void addUNumberFormatterTest(TestNode** root); 43 void addUFormattedValueTest(TestNode** root); 44 void addUNumberRangeFormatterTest(TestNode** root); 46 void addFormatTest(TestNode** root); 48 void addFormatTest(TestNode** root) in addFormatTest() argument 50 addCalTest(root); in addFormatTest() 51 addDateForTest(root); in addFormatTest() 52 addDateTimePatternGeneratorTest(root); in addFormatTest() [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 …]
|
/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 …]
|
/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/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/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 …]
|
/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 …]
|
D | scope_test.cc | 24 Scope root = Scope::NewRootScope(); in TEST() local 25 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add"); in TEST() 26 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add_1"); in TEST() 27 EXPECT_EQ(root.GetUniqueNameForOp("add"), "add_2"); in TEST() 28 EXPECT_EQ(root.GetUniqueNameForOp("mul"), "mul"); in TEST() 32 Scope root = Scope::NewRootScope(); in TEST() local 33 EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo"); in TEST() 34 EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo_1"); in TEST() 35 EXPECT_EQ(root.GetUniqueNameForOp("foo_1"), "foo_1_1"); in TEST() 36 EXPECT_EQ(root.GetUniqueNameForOp("foo_2"), "foo_2"); in TEST() [all …]
|
/external/libcups/packaging/ |
D | cups.list.in | 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 260 d 0755 root sys $SERVERBIN/backend - 261 f 0500 root sys $SERVERBIN/backend/ipp backend/ipp 262 l 0700 root sys $SERVERBIN/backend/http ipp [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/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/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/openscreen/cast/streaming/ |
D | answer_messages.cc | 208 bool AudioConstraints::ParseAndValidate(const Json::Value& root, in ParseAndValidate() argument 210 if (!json::ParseAndValidateInt(root[kMaxSampleRate], in ParseAndValidate() 212 !json::ParseAndValidateInt(root[kMaxChannels], &(out->max_channels)) || in ParseAndValidate() 213 !json::ParseAndValidateInt(root[kMaxBitRate], &(out->max_bit_rate))) { in ParseAndValidate() 218 if (json::ParseAndValidateMilliseconds(root[kMaxDelay], &max_delay)) { in ParseAndValidate() 222 if (!json::ParseAndValidateInt(root[kMinBitRate], &(out->min_bit_rate))) { in ParseAndValidate() 230 Json::Value root; in ToJson() local 231 root[kMaxSampleRate] = max_sample_rate; in ToJson() 232 root[kMaxChannels] = max_channels; in ToJson() 233 root[kMinBitRate] = min_bit_rate; in ToJson() [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() 50 root = new XMLElement("root", null, null, true, "UTF-8", buffer); in init_should_write_standalone_when_given() 64 root.close(); in close_should_be_allowed_multiple_times() 65 root.close(); in close_should_be_allowed_multiple_times() 71 root.close(); in attr_should_throw_exception_when_closed() 72 root.attr("attr", "value"); in attr_should_throw_exception_when_closed() 78 root.close(); in element_should_throw_exception_when_closed() 79 root.element("child"); in element_should_throw_exception_when_closed() [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/ |
D | HTMLElementTest.java | 33 private HTMLElement root; field in HTMLElementTest 38 root = new HTMLElement(buffer, "UTF-8"); in setup() 43 root.head().title(); in should_create_minimal_valid_html_document() 44 root.body(); in should_create_minimal_valid_html_document() 45 root.close(); in should_create_minimal_valid_html_document() 51 root.head(); in head_should_create_head_tag() 58 root.meta("key", "value"); in meta_should_create_meta_tag_with_attributes() 64 root.body(); in body_should_create_body_tag() 71 root.link("stylesheet", "style.css", "text/css"); in link_should_create_link_tag_with_attributes() 78 root.title(); in title_should_create_title_tag() [all …]
|
/external/llvm-project/mlir/test/Rewrite/ |
D | pdl-bytecode.mlir | 13 func @matcher(%root : !pdl.operation) { 14 …pdl_interp.apply_constraint "multi_entity_constraint"(%root, %root : !pdl.operation, !pdl.operatio… 17 pdl_interp.apply_constraint "single_entity_constraint"(%root : !pdl.operation) -> ^pat2, ^end 20 …pdl_interp.record_match @rewriters::@success(%root : !pdl.operation) : benefit(1), loc([%root]) ->… 27 func @success(%root : !pdl.operation) { 29 pdl_interp.erase %root 48 func @matcher(%root : !pdl.operation) { 49 pdl_interp.check_operation_name of %root is "test.op" -> ^pat, ^end 52 …pdl_interp.record_match @rewriters::@success(%root : !pdl.operation) : benefit(1), loc([%root]) ->… 59 func @success(%root : !pdl.operation) { [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/python/cpython3/Lib/idlelib/ |
D | macosx.py | 23 root = tkinter.Tk() 24 ws = root.tk.call('tk', 'windowingsystem') 29 elif 'AppKit' in root.tk.call('winfo', 'server', '.'): 33 root.destroy() 71 def tkVersionWarning(root): argument 81 patchlevel = root.tk.call('info', 'patchlevel') 127 def addOpenEventSupport(root, flist): argument 139 root.createcommand("::tk::mac::OpenDocument", doOpenFile) 141 def hideTkConsole(root): argument 143 root.tk.call('console', 'hide') [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/freetype/src/type1/ |
D | t1objs.c | 58 T1_Face face = (T1_Face)size->root.face; in T1_Size_Get_Globals_Funcs() 63 module = FT_Get_Module( size->root.face->driver->root.library, in T1_Size_Get_Globals_Funcs() 102 T1_Face face = (T1_Face)size->root.face; in T1_Size_Init() 105 error = funcs->create( size->root.face->memory, in T1_Size_Init() 123 FT_Request_Metrics( size->root.face, req ); in T1_Size_Request() 127 size->root.metrics.x_scale, in T1_Size_Request() 128 size->root.metrics.y_scale, in T1_Size_Request() 163 module = FT_Get_Module( slot->face->driver->root.library, in T1_GlyphSlot_Init() 209 memory = face->root.memory; in T1_Face_Done() 272 face->root.family_name = NULL; in T1_Face_Done() [all …]
|