Searched defs:root (Results 201 - 225 of 760) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/cintltst/
H A Dsorttest.c141 coll=ucol_open("root", &errorCode);
143 log_data_err("ucol_open(root) failed - %s\n", u_errorName(errorCode));
206 addSortTest(TestNode** root);
209 addSortTest(TestNode** root) { argument
210 addTest(root, &SortTest, "tsutil/sorttest/SortTest");
212 addTest(root, &StableSortTest, "tsutil/sorttest/StableSortTest");
H A Dstdnmtst.c28 void addStandardNamesTest(TestNode** root);
32 addStandardNamesTest(TestNode** root) argument
34 addTest(root, &TestStandardName, "tsconv/stdnmtst/TestStandardName");
35 addTest(root, &TestStandardNames, "tsconv/stdnmtst/TestStandardNames");
36 addTest(root, &TestCanonicalName, "tsconv/stdnmtst/TestCanonicalName");
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUData.java107 private static InputStream getStream(final Class<?> root, final String resourceName, boolean required) { argument
113 return root.getResourceAsStream(resourceName);
117 i = root.getResourceAsStream(resourceName);
121 throw new MissingResourceException("could not locate data " +resourceName, root.getPackage().getName(), resourceName);
196 * Convenience override that calls getStream(root, resourceName, false);
199 public static InputStream getStream(Class<?> root, String resourceName) { argument
200 return getStream(root, resourceName, false);
204 * Convenience method that calls getStream(root, resourceName, true).
207 public static InputStream getRequiredStream(Class<?> root, String resourceName) { argument
208 return getStream(root, resourceNam
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DLigatureTree.java207 private Lignode root = new Lignode(); field in class:LigatureTree
228 root.insert(toIntArray(string), 0);
233 root.insert(chars, 0);
238 root.walk(walker);
246 root.dump(pw, 0);
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
H A DHTMLElementTest.java29 private HTMLElement root; field in class:HTMLElementTest
34 root = new HTMLElement(buffer, "root") {
43 root.meta("key", "value");
44 root.close();
46 "<root><meta http-equiv=\"key\" content=\"value\"/></root>",
52 root.link("stylesheet", "style.css", "text/css");
53 root.close();
55 "<root><lin
[all...]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
H A DBarColumnTest.java45 private ReportOutputFolder root; field in class:BarColumnTest
60 root = new ReportOutputFolder(output);
61 resources = new Resources(root);
62 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8");
84 column.footer(td, createNode(15, 5), resources, root);
96 column.item(td, i1, resources, root);
124 column.item(td, i1, resources, root);
144 column.item(td, i1, resources, root);
164 column.item(td, i1, resources, root);
177 col.item(td, i1, resources, root);
[all...]
H A DCounterColumnTest.java47 private ReportOutputFolder root; field in class:CounterColumnTest
62 root = new ReportOutputFolder(output);
63 resources = new Resources(root);
64 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8");
101 column.item(td, item, resources, root);
114 column.item(td, item, resources, root);
127 column.item(td, item, resources, root);
140 column.item(td, item, resources, root);
153 column.footer(td, item.getNode(), resources, root);
H A DTableTest.java46 private ReportOutputFolder root; field in class:TableTest
59 root = new ReportOutputFolder(output);
60 resources = new Resources(root);
61 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8");
108 table.render(body, items, createTotal("Sum", 6), resources, root);
138 table.render(body, items, createTotal("Sum", 1), resources, root);
162 table.render(body, items, createTotal("Sum", 6), resources, root);
204 table.render(body, items, createTotal("Sum", 1), resources, root);
/external/jdiff/src/jdiff/
H A DJDiff.java25 * @param root a RootDoc object passed by Javadoc
28 public static boolean start(RootDoc root) { argument
29 if (root != null)
32 return jd.startGeneration(root);
38 * @param root the RootDoc object passed by Javadoc
/external/kernel-headers/original/uapi/linux/
H A Dadfs_fs.h22 __le32 root; member in struct:adfs_discrecord
H A Dcramfs_fs.h62 struct cramfs_inode root; /* root inode data */ member in struct:cramfs_super
75 #define CRAMFS_FLAG_SHIFTED_ROOT_OFFSET 0x00000400 /* shifted root fs */
/external/libchrome/base/json/
H A Djson_reader_unittest.cc30 std::unique_ptr<Value> root = JSONReader().ReadToValue(" null "); local
31 ASSERT_TRUE(root);
32 EXPECT_TRUE(root->IsType(Value::TYPE_NULL));
42 std::unique_ptr<Value> root = JSONReader().ReadToValue("true "); local
43 ASSERT_TRUE(root);
44 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN));
49 std::unique_ptr<Value> root = JSONReader().ReadToValue("/* comment */null"); local
50 ASSERT_TRUE(root);
51 EXPECT_TRUE(root->IsType(Value::TYPE_NULL));
52 root
93 std::unique_ptr<Value> root = JSONReader().ReadToValue("43"); local
111 std::unique_ptr<Value> root = JSONReader().ReadToValue("0"); local
122 std::unique_ptr<Value> root = JSONReader().ReadToValue("2147483648"); local
139 std::unique_ptr<Value> root = JSONReader().ReadToValue("43.1"); local
214 std::unique_ptr<Value> root = JSONReader().ReadToValue("\\"hello world\\""); local
224 std::unique_ptr<Value> root = JSONReader().ReadToValue("\\"\\""); local
234 std::unique_ptr<Value> root = local
245 std::unique_ptr<Value> root = local
486 std::unique_ptr<Value> root = local
511 std::unique_ptr<Value> root = JSONReader().ReadToValue("\\"\\\\u20ac3,14\\""); local
541 std::unique_ptr<Value> root; local
550 std::unique_ptr<Value> root = JSONReader::Read("null"); local
601 std::unique_ptr<Value> root = JSONReader::Read( local
[all...]
/external/libdrm/tests/kms/
H A Dkms-universal-planes.c132 struct kms_framebuffer *root = NULL; local
312 root = kms_framebuffer_create(device, 640, 480, format);
313 if (!root)
316 prepare_framebuffer(root, true);
318 x = (device->screens[0]->width - root->width) / 2;
319 y = (device->screens[0]->height - root->height) / 2;
321 kms_plane_set(plane, root, x, y);
348 if (root)
349 kms_framebuffer_free(root);
/external/libxml2/
H A Dcheck-relaxng-test-suite.py367 root = testsuite.getRootElement() variable
368 if root.name != 'testSuite':
373 handle_testSuite(root)
H A Dcheck-relaxng-test-suite2.py390 root = testsuite.getRootElement() variable
391 if root.name != 'testSuite':
396 handle_testSuite(root)
H A Dcheck-xsddata-test-suite.py395 root = testsuite.getRootElement() variable
396 if root.name != 'testSuite':
401 handle_testSuite(root)
/external/ltp/testcases/kernel/syscalls/setregid/
H A Dsetregid02.c24 * non-root user attemps to change the real or effective group id to a
43 static struct group ltpgroup, root, bin; variable in typeref:struct:
59 &neg_one, &root.gr_gid, EPERM, &ltpgroup, &ltpgroup,
60 "After setregid(-1, root),"}, {
63 &root.gr_gid, &neg_one, EPERM, &ltpgroup, &ltpgroup,
64 "After setregid(root,-1),"}, {
67 &root.gr_gid, &bin.gr_gid, EPERM, &ltpgroup, &ltpgroup,
68 "After setregid(root, bin)"}, {
69 &bin.gr_gid, &root.gr_gid, EPERM, &ltpgroup, &ltpgroup,
70 "After setregid(bin, root),"}
[all...]
H A Dsetregid03.c22 * Test setregid() when executed by a non-root user.
43 struct group users, sys, root, bin; variable in typeref:struct:
/external/ltp/testcases/kernel/syscalls/setresgid/
H A Dsetresgid01.c21 * EXECUTED BY : root / superuser
39 * 5. setresgid(2) is successful for setresgid(root, root, root)
44 * Check existence of root and nobody user id's
94 static struct passwd nobody, root; variable in typeref:struct:
103 {&neg, &neg, &neg, &root, &root, &root,
105 {&neg, &neg, &nobody.pw_gid, &root,
[all...]
H A Dsetresgid02.c21 * EXECUTED BY : root / superuser
24 * non-root group id.
35 * Verify that for non-root effective group id,
40 * 5. setresgid(2) is successful for setresgid(root, root, root)
41 * 6. setresgid(2) is successful for setresgid(root, nobody, nobody)
46 * Check existence of root, bin and nobody user id's
99 static struct passwd nobody, bin, root; variable in typeref:struct:
108 {&neg, &neg, &neg, &root,
[all...]
H A Dsetresgid03.c21 * EXECUTED BY : root / superuser
47 * Check existence of user id's root/bin/nobody
100 static struct passwd nobody, bin, root; variable in typeref:struct:
194 if ((passwd_p = getpwnam("root")) == NULL) {
195 tst_brkm(TBROK, NULL, "getpwnam() failed for root");
198 root = *passwd_p;
/external/ltp/testcases/kernel/syscalls/setresuid/
H A Dsetresuid01.c25 * Test setresuid() when executed by root.
61 * This test must be ran as root.
78 struct passwd nobody, bin, root; variable in typeref:struct:
95 &neg_one, &neg_one, &neg_one, &root, &root, &root,
97 &neg_one, &neg_one, &nobody_pw_uid, &root, &root, &nobody,
99 &neg_one, &bin_pw_uid, &neg_one, &root, &bin, &nobody,
101 &neg_one, &neg_one, &root_pw_uid, &root,
[all...]
H A Dsetresuid03.c26 * values when a non-root user attempts to change the real, effective or
61 * This test must be run by root.
84 char rootname[] = "root";
86 struct passwd nobody, bin, root; variable in typeref:struct:
104 &nobody_pw_uid, &neg_one, &neg_one, EPERM, &root, &bin, &bin,
105 "After setresuid(root, -1, -1),"}, {
106 &neg_one, &neg_one, &nobody_pw_uid, EPERM, &root, &bin, &bin,
108 &neg_one, &nobody_pw_uid, &neg_one, EPERM, &root, &bin, &bin,
199 root = *(getpwnam("root"));
[all...]
/external/ltp/testcases/kernel/syscalls/setreuid/
H A Dsetreuid05.c40 static struct passwd nobody, daemonpw, root, bin; variable in typeref:struct:
51 &nobody.pw_uid, &root.pw_uid, &pass, &nobody, &root, "Initially"}, {
54 &neg_one, &root.pw_uid, &pass, &nobody, &root,
55 "After setreuid(-1, root),"}, {
56 &daemonpw.pw_uid, &neg_one, &pass, &daemonpw, &root,
60 &neg_one, &root.pw_uid, &fail, &daemonpw, &bin,
61 "After setreuid(-1, root),"}, {
176 root
[all...]
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_xsp.c59 Window root; local
69 if (XGetGeometry(xsp_screen->display, drawable, &root, &x, &y, &width, &height, &border_width, &depth) == BadDrawable)

Completed in 484 milliseconds

1234567891011>>