Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 6211) sorted by relevance

12345678910>>...249

/external/icu/icu4c/source/test/cintltst/
Dcalltest.c21 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 …]
Dcutiltst.c26 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 …]
Dcformtst.c40 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/libcxx/test/libcxx/containers/associative/
Dtree_remove.pass.cpp39 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/
Dtest_misc.py26 t = tkinter.Toplevel(self.root, name='top')
31 t = tkinter.Toplevel(self.root)
39 root = self.root
40 root.tk_setPalette('black')
41 self.assertEqual(root['background'], 'black')
42 root.tk_setPalette('white')
43 self.assertEqual(root['background'], 'white')
46 root.tk_setPalette, 'spam')
48 root.tk_setPalette(background='black')
49 self.assertEqual(root['background'], 'black')
[all …]
/external/cldr/tools/cldr-rdf/external/
DRawLanguageContainment.txt1 root > Austro-Asiatic languages (aav) > Bugan (bbh)
2 root > Austro-Asiatic languages (aav) > Bondo (bfw)
3 root > Austro-Asiatic languages (aav) > Eastern Bru (bru)
4 root > Austro-Asiatic languages (aav) > Western Bru (brv)
5 root > Austro-Asiatic languages (aav) > Hre (hre)
6 root > Austro-Asiatic languages (aav) > Ir (irr)
7 root > Austro-Asiatic languages (aav) > Kuy (kdt)
8 root > Austro-Asiatic languages (aav) > Eastern Katu (ktv)
9 root > Austro-Asiatic languages (aav) > Western Katu (kuf)
10 root > Austro-Asiatic languages (aav) > Mon-Khmer [Other] (mkh) > Arem (aem)
[all …]
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis_test.cc64 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 …]
Dresource_operation_safety_analysis_test.cc80 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/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_misc.py11 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 …]
Dtest_variables.py10 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/cc/framework/
Dcc_ops_test.cc42 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/libcups/packaging/
Dcups.list.in250 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/libchrome/base/json/
Djson_reader_unittest.cc25 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/pigweed/pw_build_mcuxpresso/py/tests/
Dcomponents_test.py34 root = xml.etree.ElementTree.fromstring(test_manifest_xml)
36 (component, base_path) = components.get_component(root, 'test')
51 root = xml.etree.ElementTree.fromstring(test_manifest_xml)
53 (component, base_path) = components.get_component(root, 'test')
68 root = xml.etree.ElementTree.fromstring(test_manifest_xml)
70 (component, base_path) = components.get_component(root, 'test')
91 root = xml.etree.ElementTree.fromstring(test_manifest_xml)
92 defines = components.parse_defines(root, 'test')
105 root = xml.etree.ElementTree.fromstring(test_manifest_xml)
106 defines = components.parse_defines(root, 'test')
[all …]
/external/tensorflow/tensorflow/python/saved_model/
Dload_test.py101 root = tracking.AutoTrackable()
102 root.dep_one = tracking.AutoTrackable()
103 root.dep_two = tracking.AutoTrackable()
104 root.dep_two.dep = tracking.AutoTrackable()
105 root.dep_three = root.dep_two.dep
106 imported = cycle(root, cycles)
112 root = tracking.AutoTrackable()
113 root.v1 = variables.Variable(1., trainable=True)
114 root.v2 = variables.Variable(2., trainable=False)
115 self.evaluate([root.v1.initializer, root.v2.initializer])
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
DXMLElementTest.java32 private XMLElement root; field in XMLElementTest
37 root = new XMLElement("root", null, null, false, "UTF-8", buffer); in setup()
42 root = new XMLElement("root", "-//JACOCO//TEST", "test.dtd", false, in init_should_write_doctype_when_given()
51 root = new XMLElement("root", null, null, true, "UTF-8", buffer); in init_should_write_standalone_when_given()
65 root.close(); in close_should_be_allowed_multiple_times()
66 root.close(); in close_should_be_allowed_multiple_times()
72 root.close(); in attr_should_throw_exception_when_closed()
73 root.attr("attr", "value"); in attr_should_throw_exception_when_closed()
79 root.close(); in element_should_throw_exception_when_closed()
80 root.element("child"); in element_should_throw_exception_when_closed()
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
DHTMLElementTest.java34 private HTMLElement root; field in HTMLElementTest
39 root = new HTMLElement(buffer, "UTF-8"); in setup()
44 root.head().title(); in should_create_minimal_valid_html_document()
45 root.body(); in should_create_minimal_valid_html_document()
46 root.close(); in should_create_minimal_valid_html_document()
52 root.head(); in head_should_create_head_tag()
59 root.meta("key", "value"); in meta_should_create_meta_tag_with_attributes()
65 root.body(); in body_should_create_body_tag()
72 root.link("stylesheet", "style.css", "text/css"); in link_should_create_link_tag_with_attributes()
79 root.title(); in title_should_create_title_tag()
[all …]
/external/openscreen/cast/streaming/
Danswer_messages.cc191 bool AudioConstraints::TryParse(const Json::Value& root, in TryParse() argument
193 if (!json::TryParseInt(root[kMaxSampleRate], &(out->max_sample_rate)) || in TryParse()
194 !json::TryParseInt(root[kMaxChannels], &(out->max_channels)) || in TryParse()
195 !json::TryParseInt(root[kMaxBitRate], &(out->max_bit_rate))) { in TryParse()
200 if (json::TryParseMilliseconds(root[kMaxDelay], &max_delay)) { in TryParse()
204 if (!json::TryParseInt(root[kMinBitRate], &(out->min_bit_rate))) { in TryParse()
212 Json::Value root; in ToJson() local
213 root[kMaxSampleRate] = max_sample_rate; in ToJson()
214 root[kMaxChannels] = max_channels; in ToJson()
215 root[kMinBitRate] = min_bit_rate; in ToJson()
[all …]
/external/angle/src/compiler/translator/
DTranslatorMetalDirect.cpp196 TIntermBlock *root, in ReplaceGLDepthRangeWithDriverUniform() argument
208 return ReplaceVariableWithTyped(compiler, root, depthRangeVar, angleEmulatedDepthRangeRef); in ReplaceGLDepthRangeWithDriverUniform()
211 TIntermSequence *GetMainSequence(TIntermBlock *root) in GetMainSequence() argument
213 TIntermFunctionDefinition *main = FindMain(root); in GetMainSequence()
219 TIntermBlock *root, in RotateAndFlipBuiltinVariable() argument
240 DeclareGlobalVariable(root, replacementVar); in RotateAndFlipBuiltinVariable()
244 if (!ReplaceVariable(compiler, root, builtin, replacementVar)) in RotateAndFlipBuiltinVariable()
282 return compiler->validateAST(root); in RotateAndFlipBuiltinVariable()
287 TIntermBlock *root, in InsertFragCoordCorrection() argument
317 return RotateAndFlipBuiltinVariable(compiler, root, insertSequence, flipXY, symbolTable, in InsertFragCoordCorrection()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewGroupTest.java35 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/python/cpython3/Lib/idlelib/
Dmacosx.py23 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/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewGroupTest.java43 private ViewGroup root; field in ShadowViewGroupTest
55 root = new FrameLayout(context); in setUp()
63 root.addView(child1); in setUp()
64 root.addView(child2); in setUp()
65 root.addView(child3); in setUp()
81 root.removeView(null); in removeNullView_doesNothing()
86 assertThat(root.getLayoutAnimationListener()).isNull(); in testLayoutAnimationListener()
101 root.setLayoutAnimationListener(animationListener); in testLayoutAnimationListener()
103 assertThat(root.getLayoutAnimationListener()).isSameInstanceAs(animationListener); in testLayoutAnimationListener()
108 assertThat(root.getLayoutAnimation()).isNull(); in testLayoutAnimation()
[all …]
/external/selinux/libsepol/cil/test/unit/
Dtest_cil_resolve_ast.c80 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_name()
82 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head; in test_cil_resolve_name()
104 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_name_invalid_type_neg()
106 struct cil_tree_node *test_curr = test_db->ast->root->cl_head->cl_head; in test_cil_resolve_name_invalid_type_neg()
118 test_db->ast->root = NULL; in test_cil_resolve_ast_curr_null_neg()
120 int rc = cil_resolve_ast(test_db, test_db->ast->root); in test_cil_resolve_ast_curr_null_neg()
143 cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_roleallow()
145 int rc = cil_resolve_roleallow(test_db->ast->root->cl_head->next->next, args); in test_cil_resolve_roleallow()
162 int rc1=cil_build_ast(test_db, test_tree->root, test_db->ast->root); in test_cil_resolve_roleallow_srcdecl_neg()
165 int rc = cil_resolve_roleallow(test_db->ast->root->cl_head->next, args); in test_cil_resolve_roleallow_srcdecl_neg()
[all …]
/external/freetype/src/type1/
Dt1objs.c58 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()
125 error = FT_Request_Metrics( size->root.face, req ); in T1_Size_Request()
131 size->root.metrics.x_scale, in T1_Size_Request()
132 size->root.metrics.y_scale, in T1_Size_Request()
168 module = FT_Get_Module( slot->face->driver->root.library, in T1_GlyphSlot_Init()
214 memory = face->root.memory; in T1_Face_Done()
276 face->root.family_name = NULL; in T1_Face_Done()
[all …]
/external/tensorflow/tensorflow/tools/graph_transforms/
Dquantize_nodes_test.cc156 auto root = tensorflow::Scope::NewRootScope(); in TestIgnoreOps() local
164 return Const(root.WithOpName(name), Input::Initializer(tensor)); in TestIgnoreOps()
175 Output mat_mul_op = MatMul(root.WithOpName("mat_mul_op"), a_op, b_op); in TestIgnoreOps()
176 Output mul_op = Mul(root.WithOpName("mul"), c_op, d_op); in TestIgnoreOps()
179 TF_ASSERT_OK(root.ToGraphDef(&float_graph_def)); in TestIgnoreOps()
210 auto root = tensorflow::Scope::NewRootScope(); in TestQuantizeMatMul() local
215 Output a_op = Const(root.WithOpName("a_op"), Input::Initializer(a_tensor)); in TestQuantizeMatMul()
219 Output b_op = Const(root.WithOpName("b_op"), Input::Initializer(b_tensor)); in TestQuantizeMatMul()
221 Output mat_mul_op = MatMul(root.WithOpName("mat_mul_op"), a_op, b_op); in TestQuantizeMatMul()
224 TF_ASSERT_OK(root.ToGraphDef(&float_graph_def)); in TestQuantizeMatMul()
[all …]

12345678910>>...249