Searched defs:root (Results 51 - 75 of 958) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/cintltst/
H A Dcestst.c77 void addSpanishCollTest(TestNode** root) argument
81 addTest(root, &TestPrimary, "tscoll/cestst/TestPrimary");
82 addTest(root, &TestTertiary, "tscoll/cestst/TestTertiary");
H A Dcfintst.c66 void addFinnishCollTest(TestNode** root) argument
70 addTest(root, &TestPrimary, "tscoll/cfintst/TestPrimary");
71 addTest(root, &TestTertiary, "tscoll/cfintst/TestTertiary");
H A Dcformtst.c40 void addURegionTest(TestNode** root);
41 void addUListFmtTest(TestNode** root);
43 void addFormatTest(TestNode** root);
45 void addFormatTest(TestNode** root) argument
47 addCalTest(root);
48 addDateForTest(root);
49 addDateTimePatternGeneratorTest(root);
50 addDateIntervalFormatTest(root);
52 addRelativeDateFormatTest(root);
54 addNumForTest(root);
[all...]
H A Dcgendtst.c26 void addGendInfoForTest(TestNode** root);
29 #define TESTCASE(x) addTest(root, &x, "tsformat/cgendtst/" #x)
31 void addGendInfoForTest(TestNode** root) argument
H A Dcturtst.c84 void addTurkishCollTest(TestNode** root) argument
87 addTest(root, &TestPrimary, "tscoll/cturtst/TestPrimary");
88 addTest(root, &TestTertiary, "tscoll/cturtst/TestTertiary");
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
H A DSourceRootTest.java16 private final Path root = CodeGenerationUtils.classLoaderRoot(SourceRootTest.class).resolve("com/github/javaparser/utils/"); field in class:SourceRootTest
17 private final SourceRoot sourceRoot = new SourceRoot(root);
27 assertTrue(parseResults.stream().anyMatch(cu -> cu.getResult().get().getStorage().get().getPath().toString().contains("source" + File.separator + "root")));
/external/jline/src/src/main/java/jline/
H A DClassNameCompletor.java124 private static Set getClassFiles(String root, Set holder, File directory, argument
136 if (!(name.startsWith(root))) {
139 getClassFiles(root, holder, files[i], maxDirectories);
142 substring(root.length() + 1));
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTemplateSyntaxTree.java24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to
28 private final Start root; field in class:TemplateSyntaxTree
30 TemplateSyntaxTree(Start root) { argument
31 this.root = root;
35 return root;
40 root.apply(sw);
/external/libxml2/python/tests/
H A Dbuild.py13 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
H A Dnsdel.py47 root = doc.newChild(None, "root", None) variable
48 namespace = root.newNs("http://example.com/sample", "s")
49 child = root.newChild(namespace, "child", None)
50 root.removeNsDef("http://example.com/sample")
51 doc.reconciliateNs(root)
H A Dresolver.py20 root = doc.children variable
21 if root.name != "foo":
22 print("root element name error")
29 root = doc.children
30 if root.name != "foo":
31 print("root element name error")
H A Dvalidate.py17 root = doc.children variable
18 if root.name != "doc":
19 print("root.name failed")
53 root = doc.children variable
54 if root.name != "doc":
55 print("root.name failed")
/external/llvm/utils/lit/lit/
H A DTestingConfig.py161 def root(self): member in class:TestingConfig
162 """root attribute - The root configuration for the test suite."""
166 return self.parent.root
/external/pdfium/fpdfsdk/
H A Dfpdfcatalog_unittest.cpp23 void SetRoot(CPDF_Dictionary* root) { argument
24 m_pRootDict = root;
35 void SetRoot(CPDF_Dictionary* root) { argument
36 reinterpret_cast<CPDF_TestDocument*>(GetPDFDoc())->SetRoot(root);
53 // Setup the root directory.
71 // No root
75 // Empty root
/external/python/cpython2/Demo/tix/samples/
H A DBalloon.py22 def RunSample (root):
23 balloon = DemoBalloon(root)
29 self.root = w
61 foundEvent = self.root.tk.dooneevent(TCL_ALL_EVENTS)
64 self.root.destroy()
67 root = Tix.Tk() variable
68 RunSample(root)
H A DPanedWin.py22 def RunSample (root):
23 panedwin = DemoPanedwin(root)
29 self.root = w
91 self.root.tk.dooneevent(TCL_ALL_EVENTS)
94 self.root.destroy()
97 root = Tix.Tk() variable
98 RunSample(root)
H A DSHList1.py20 def RunSample (root):
21 shlist = DemoSHList(root)
27 self.root = w
120 self.root.tk.dooneevent(TCL_ALL_EVENTS)
123 self.root.destroy()
130 root=Tix.Tk() variable
131 RunSample(root)
H A DSHList2.py23 def RunSample (root):
24 shlist = DemoSHList(root)
30 self.root = w
157 self.root.tk.dooneevent(TCL_ALL_EVENTS)
160 self.root.destroy()
167 root=Tix.Tk() variable
168 RunSample(root)
/external/python/cpython2/Demo/tkinter/matt/
H A Dmenu-simple.py95 root = Tk() variable
99 mBar = Frame(root, relief=RAISED, borderwidth=2)
109 root.title('menu demo')
110 root.iconname('packer')
112 root.mainloop()
H A Dtwo-radio-groups.py84 root = Tk() variable
88 mBar = Frame(root, relief=RAISED, borderwidth=2)
103 b = Button(root, text="print party and flavor", foreground="red",
107 root.title('menu demo')
108 root.iconname('menu demo')
110 root.mainloop()
/external/python/cpython2/Demo/tkinter/ttk/
H A Dmac_searchentry.py8 root = Tkinter.Tk() variable
70 root.configure(background="#b2b2b2")
78 root.mainloop()
H A Droundframe.py7 root = Tkinter.Tk() variable
111 root.mainloop()
/external/python/cpython3/Lib/test/
H A Dtest_ttk_guionly.py15 root = None variable
17 root = tkinter.Tk() variable
18 button = ttk.Button(root)
25 if root is not None:
26 root.destroy()
27 del root
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMenuInflater.java25 public void inflate(int resource, Menu root) { argument
26 shadowOf(context.getApplicationContext()).getResourceLoader().inflateMenu(context, resource, root);
/external/tensorflow/tensorflow/cc/client/
H A Dclient_session_test.cc35 Scope root = Scope::NewRootScope(); local
36 auto c = Const(root, {{1, 1}});
37 ClientSession session(root);
45 Scope root = Scope::NewRootScope(); local
46 auto a = Placeholder(root, DT_INT32);
47 auto b = Placeholder(root, DT_INT32);
48 auto c = Add(root, a, b);
49 ClientSession session(root);
57 Scope root = Scope::NewRootScope(); local
58 auto a = Placeholder(root, DT_INT3
73 Scope root = Scope::NewRootScope(); local
[all...]

Completed in 1267 milliseconds

1234567891011>>