| /third_party/backends/testsuite/tools/data/ |
| D | db.ref | 10 # 0xVVVV<tab>0xPPPP<tab>root:scanner<tab>0664<tab>[/usr/local/bin/foo.sh] 28 0x03f0 0x0101 root:scanner 0664 30 0x03f0 0x0105 root:scanner 0664 32 0x03f0 0x0201 root:scanner 0664 34 0x03f0 0x0205 root:scanner 0664 36 0x03f0 0x0305 root:scanner 0664 38 0x03f0 0x0401 root:scanner 0664 40 0x03f0 0x0405 root:scanner 0664 42 0x03f0 0x0505 root:scanner 0664 44 0x03f0 0x0601 root:scanner 0664 [all …]
|
| /third_party/cups/packaging/ |
| D | cups.list.in | 87 %replaces SUNWlpr LP Print Service, (Root) 91 %replaces SUNWpsr LP Print Server, (Root) 93 %replaces SUNWpcr LP Print Client, (Root) 252 f 0555 root sys $SBINDIR/cupsd scheduler/cupsd 254 d 0755 root sys $SERVERBIN - 256 d 0755 root sys $SERVERBIN/apple - 257 f 0555 root sys $SERVERBIN/apple/ipp backend/ipp 258 l 0755 root sys $SERVERBIN/apple/http ipp 259 l 0755 root sys $SERVERBIN/apple/https ipp 260 l 0755 root sys $SERVERBIN/apple/ipps ipp [all …]
|
| /third_party/openhitls/bsl/err/src/ |
| D | avl.c | 79 * @param root [IN] Root node to be rotated 80 * @return rNode Root node after rotation 82 static BSL_AvlTree *AVL_RotateLeft(BSL_AvlTree *root) in AVL_RotateLeft() argument 90 In this case, the input root node is 10, and the output node is 20. */ in AVL_RotateLeft() 91 BSL_AvlTree *rNode = root->rightNode; in AVL_RotateLeft() 93 root->rightNode = lNode; in AVL_RotateLeft() 94 rNode->leftNode = root; in AVL_RotateLeft() 95 UpdateAvlTreeHeight(root); in AVL_RotateLeft() 102 * @param root [IN] Root node to be rotated 103 * @return lNode Root node after rotation [all …]
|
| /third_party/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 …]
|
| /third_party/cJSON/tests/ |
| D | cjson_add.c | 50 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_add_null() local 53 cJSON_AddNullToObject(root, "null"); in cjson_add_null_should_add_null() 55 TEST_ASSERT_NOT_NULL(null = cJSON_GetObjectItemCaseSensitive(root, "null")); in cjson_add_null_should_add_null() 58 cJSON_Delete(root); in cjson_add_null_should_add_null() 63 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_fail_with_null_pointers() local 66 TEST_ASSERT_NULL(cJSON_AddNullToObject(root, NULL)); in cjson_add_null_should_fail_with_null_pointers() 68 cJSON_Delete(root); in cjson_add_null_should_fail_with_null_pointers() 73 cJSON *root = cJSON_CreateObject(); in cjson_add_null_should_fail_on_allocation_failure() local 77 TEST_ASSERT_NULL(cJSON_AddNullToObject(root, "null")); in cjson_add_null_should_fail_on_allocation_failure() 81 cJSON_Delete(root); in cjson_add_null_should_fail_on_allocation_failure() [all …]
|
| /third_party/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 …]
|
| /third_party/skia/m133/third_party/externals/icu/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 …]
|
| D | cutiltst.c | 28 void addHashtableTest(TestNode** root); 29 void addCStringTest(TestNode** root); 30 void addTrieTest(TestNode** root); 31 void addTrie2Test(TestNode** root); 32 void addUCPTrieTest(TestNode** root); 33 void addEnumerationTest(TestNode** root); 34 void addPosixTest(TestNode** root); 35 void addSortTest(TestNode** root); 37 void addUtility(TestNode** root); 39 void addUtility(TestNode** root) in addUtility() argument [all …]
|
| /third_party/python/Lib/tkinter/test/test_tkinter/ |
| D | test_misc.py | 27 t = tkinter.Toplevel(self.root, name='top') 32 t = tkinter.Toplevel(self.root) 40 root = self.root 41 root.tk_setPalette('black') 42 self.assertEqual(root['background'], 'black') 43 root.tk_setPalette('white') 44 self.assertEqual(root['background'], 'white') 47 root.tk_setPalette, 'spam') 49 root.tk_setPalette(background='black') 50 self.assertEqual(root['background'], 'black') [all …]
|
| D | test_variables.py | 25 self.root = Tcl() 28 del self.root 34 return self.root.getboolean(self.root.call("info", "exists", *args)) 37 v = Variable(self.root) 42 v = Variable(self.root, "sample string", "varname") 48 v = Variable(self.root, "sample string", "varname") 56 v1 = Variable(self.root, name="name") 57 v2 = Variable(self.root, name="name") 68 v1 = Variable(self.root, name="abc") 69 v2 = Variable(self.root, name="abc") [all …]
|
| D | test_geometry_managers.py | 18 pack = tkinter.Toplevel(self.root, name='pack') 48 self.root.update() 79 self.root.update() 124 self.root.update() 166 self.root.update() 207 self.root.update() 262 self.root.update() 266 self.root.update() 284 t = tkinter.Toplevel(self.root, width=300, height=200, bd=0) 289 self.root.update() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | pathMappingBasedModuleResolution6_node.trace.json | 2 "======== Resolving module './project/file3' from 'c:/root/src/file1.ts'. ========", 5 …"Checking if 'c:/root/src/' is the longest matching prefix for 'c:/root/src/project/file3' - 'true… 6 …"Checking if 'c:/root/generated/src/' is the longest matching prefix for 'c:/root/src/project/file… 7 "Longest matching prefix for 'c:/root/src/project/file3' is 'c:/root/src/'.", 8 …"Loading 'project/file3' from the root dir 'c:/root/src/', candidate location 'c:/root/src/project… 9 …"Loading module as file / folder, candidate module location 'c:/root/src/project/file3', target fi… 10 "Directory 'c:/root/src/project' does not exist, skipping all lookups in it.", 12 …"Loading 'project/file3' from the root dir 'c:/root/generated/src', candidate location 'c:/root/ge… 13 …"Loading module as file / folder, candidate module location 'c:/root/generated/src/project/file3',… 14 "File 'c:/root/generated/src/project/file3.ts' exist - use it as a name resolution result.", [all …]
|
| D | pathMappingBasedModuleResolution7_classic.trace.json | 2 "======== Resolving module './project/file2' from 'c:/root/src/file1.ts'. ========", 5 …"Checking if 'c:/root/src/' is the longest matching prefix for 'c:/root/src/project/file2' - 'true… 6 …"Checking if 'c:/root/generated/src/' is the longest matching prefix for 'c:/root/src/project/file… 7 "Longest matching prefix for 'c:/root/src/project/file2' is 'c:/root/src/'.", 8 …"Loading 'project/file2' from the root dir 'c:/root/src/', candidate location 'c:/root/src/project… 10 …"Loading 'project/file2' from the root dir 'c:/root/generated/src', candidate location 'c:/root/ge… 11 "File 'c:/root/generated/src/project/file2.ts' exist - use it as a name resolution result.", 12 …"======== Module name './project/file2' was successfully resolved to 'c:/root/generated/src/projec… 13 "======== Resolving module 'module3' from 'c:/root/src/file1.ts'. ========", 15 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'modul… [all …]
|
| D | pathMappingBasedModuleResolution_rootImport_aliasWithRoot_differentRootTypes.trace.json | 2 "======== Resolving module '/foo' from '/root/a.ts'. ========", 4 …"'baseUrl' option is set to '/root', using this value to resolve non-relative module name '/foo'.", 8 …"Loading module as file / folder, candidate module location '/root/src/foo', target file type 'Typ… 9 "File '/root/src/foo.ts' exist - use it as a name resolution result.", 10 "======== Module name '/foo' was successfully resolved to '/root/src/foo.ts'. ========", 11 "======== Resolving module '/bar' from '/root/a.ts'. ========", 13 …"'baseUrl' option is set to '/root', using this value to resolve non-relative module name '/bar'.", 17 …"Loading module as file / folder, candidate module location '/root/src/bar', target file type 'Typ… 18 "File '/root/src/bar.ts' does not exist.", 19 "File '/root/src/bar.tsx' does not exist.", [all …]
|
| D | pathMappingBasedModuleResolution7_node.trace.json | 2 "======== Resolving module './project/file2' from 'c:/root/src/file1.ts'. ========", 5 …"Checking if 'c:/root/src/' is the longest matching prefix for 'c:/root/src/project/file2' - 'true… 6 …"Checking if 'c:/root/generated/src/' is the longest matching prefix for 'c:/root/src/project/file… 7 "Longest matching prefix for 'c:/root/src/project/file2' is 'c:/root/src/'.", 8 …"Loading 'project/file2' from the root dir 'c:/root/src/', candidate location 'c:/root/src/project… 9 …"Loading module as file / folder, candidate module location 'c:/root/src/project/file2', target fi… 10 "Directory 'c:/root/src/project' does not exist, skipping all lookups in it.", 12 …"Loading 'project/file2' from the root dir 'c:/root/generated/src', candidate location 'c:/root/ge… 13 …"Loading module as file / folder, candidate module location 'c:/root/generated/src/project/file2',… 14 "File 'c:/root/generated/src/project/file2.ts' exist - use it as a name resolution result.", [all …]
|
| D | pathMappingBasedModuleResolution6_classic.trace.json | 2 "======== Resolving module './project/file3' from 'c:/root/src/file1.ts'. ========", 5 …"Checking if 'c:/root/src/' is the longest matching prefix for 'c:/root/src/project/file3' - 'true… 6 …"Checking if 'c:/root/generated/src/' is the longest matching prefix for 'c:/root/src/project/file… 7 "Longest matching prefix for 'c:/root/src/project/file3' is 'c:/root/src/'.", 8 …"Loading 'project/file3' from the root dir 'c:/root/src/', candidate location 'c:/root/src/project… 10 …"Loading 'project/file3' from the root dir 'c:/root/generated/src', candidate location 'c:/root/ge… 11 "File 'c:/root/generated/src/project/file3.ts' exist - use it as a name resolution result.", 12 …"======== Module name './project/file3' was successfully resolved to 'c:/root/generated/src/projec… 13 "======== Resolving module '../file2' from 'c:/root/generated/src/project/file3.ts'. ========", 16 …"Checking if 'c:/root/src/' is the longest matching prefix for 'c:/root/generated/src/file2' - 'fa… [all …]
|
| D | pathMappingBasedModuleResolution5_node.trace.json | 2 "======== Resolving module 'folder2/file1' from 'c:/root/folder1/file1.ts'. ========", 4 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 8 …"Loading module as file / folder, candidate module location 'c:/root/folder2/file1', target file t… 9 "File 'c:/root/folder2/file1.ts' exist - use it as a name resolution result.", 10 …"======== Module name 'folder2/file1' was successfully resolved to 'c:/root/folder2/file1.ts'. ===… 11 "======== Resolving module 'folder3/file2' from 'c:/root/folder1/file1.ts'. ========", 13 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 17 …"Loading module as file / folder, candidate module location 'c:/root/folder3/file2', target file t… 19 …"Loading module as file / folder, candidate module location 'c:/root/generated/folder3/file2', tar… 20 "File 'c:/root/generated/folder3/file2.ts' exist - use it as a name resolution result.", [all …]
|
| D | pathMappingBasedModuleResolution4_classic.trace.json | 2 "======== Resolving module 'folder2/file2' from 'c:/root/folder1/file1.ts'. ========", 4 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 5 … "Resolving module name 'folder2/file2' relative to base url 'c:/root' - 'c:/root/folder2/file2'.", 6 "File 'c:/root/folder2/file2.ts' exist - use it as a name resolution result.", 7 …"======== Module name 'folder2/file2' was successfully resolved to 'c:/root/folder2/file2.ts'. ===… 8 "======== Resolving module './file3' from 'c:/root/folder2/file2.ts'. ========", 10 "File 'c:/root/folder2/file3.ts' exist - use it as a name resolution result.", 11 …"======== Module name './file3' was successfully resolved to 'c:/root/folder2/file3.ts'. ========", 12 "======== Resolving module 'file4' from 'c:/root/folder2/file2.ts'. ========", 14 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'file4… [all …]
|
| D | pathMappingBasedModuleResolution3_classic.trace.json | 2 "======== Resolving module 'folder2/file2' from 'c:/root/folder1/file1.ts'. ========", 4 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 5 … "Resolving module name 'folder2/file2' relative to base url 'c:/root' - 'c:/root/folder2/file2'.", 6 "File 'c:/root/folder2/file2.ts' exist - use it as a name resolution result.", 7 …"======== Module name 'folder2/file2' was successfully resolved to 'c:/root/folder2/file2.ts'. ===… 8 "======== Resolving module './file3' from 'c:/root/folder2/file2.ts'. ========", 10 "File 'c:/root/folder2/file3.ts' exist - use it as a name resolution result.", 11 …"======== Module name './file3' was successfully resolved to 'c:/root/folder2/file3.ts'. ========", 12 "======== Resolving module 'file4' from 'c:/root/folder2/file2.ts'. ========", 14 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'file4… [all …]
|
| D | moduleAugmentationDoesNamespaceEnumMergeOfReexport.types | 2 export namespace Root { 20 export enum Root { 21 >Root : Root 24 >A : Root 27 >B : Root 30 >C : Root 34 declare const f: ns.Root.Foo; 35 >f : ns.Root.Foo 37 >Root : any 39 const g: ns.Root = ns.Root.A; [all …]
|
| D | pathMappingBasedModuleResolution5_classic.trace.json | 2 "======== Resolving module 'folder2/file1' from 'c:/root/folder1/file1.ts'. ========", 4 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 8 "File 'c:/root/folder2/file1.ts' exist - use it as a name resolution result.", 9 …"======== Module name 'folder2/file1' was successfully resolved to 'c:/root/folder2/file1.ts'. ===… 10 "======== Resolving module 'folder3/file2' from 'c:/root/folder1/file1.ts'. ========", 12 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'folde… 17 "File 'c:/root/generated/folder3/file2.ts' exist - use it as a name resolution result.", 18 …"======== Module name 'folder3/file2' was successfully resolved to 'c:/root/generated/folder3/file… 19 "======== Resolving module 'components/file3' from 'c:/root/folder1/file1.ts'. ========", 21 …"'baseUrl' option is set to 'c:/root', using this value to resolve non-relative module name 'compo… [all …]
|
| /third_party/skia/third_party/externals/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 …]
|
| /third_party/openhitls/testcode/sdv/testcase/bsl/err/ |
| D | test_suite_sdv_err.c | 466 * 1. root node is 100 467 * 2. root node is 100 468 * 3. root node is 100 469 * 4. root node is 100 470 * 5. root node is 100 471 * 6. root node is 90 472 * 7. root node is 85 473 * 8. root node is 85 474 * 9. root node is 85 475 * 10. root node is 80 [all …]
|
| /third_party/mbedtls/scripts/mbedtls_dev/ |
| D | build_tree.py | 13 """Whether the given directory looks like the root of the PSA Crypto source tree.""" 18 """Whether the given directory looks like the root of the Mbed TLS source tree.""" 25 def crypto_core_directory(root: Optional[str] = None, relative: Optional[bool] = False) -> str: 33 if root is None: 34 root = guess_project_root() 35 if looks_like_tf_psa_crypto_root(root): 38 return os.path.join(root, "core") 39 elif looks_like_mbedtls_root(root): 42 return os.path.join(root, "library") 46 def crypto_library_filename(root: Optional[str] = None) -> str: [all …]
|
| /third_party/typescript/src/testRunner/unittests/ |
| D | moduleResolution.ts | 935 const file1: File = { name: "/root/folder1/file1.ts" }; 936 const file2: File = { name: "/root/folder2/file2.ts" }; 937 const file3: File = { name: "/root/folder2/file3.ts" }; 940 const options: ts.CompilerOptions = { moduleResolution, baseUrl: "/root" }; 950 … const result = ts.resolveModuleName("/root/folder1/file1", file2.name, options, host); 963 const main: File = { name: "/root/a/b/main.ts" }; 964 const m1: File = { name: "/root/m1.ts" }; // load file as module 965 const m2: File = { name: "/root/m2/index.d.ts" }; // load folder as module 966 …const m3: File = { name: "/root/m3/package.json", content: JSON.stringify({ typings: "dist/typings… 967 const m3Typings: File = { name: "/root/m3/dist/typings.d.ts" }; [all …]
|