/third_party/node/test/common/ |
H A D | heap.js | 113 validateSnapshot(rootName, expected, { loose = false } = {}) { 115 (node) => node.name === rootName && node.type !== 'string'); 118 `Expect to find at least ${expected.length} '${rootName}', ` + 123 `Expect to find ${expected.length} '${rootName}', ` + 165 validateGraph(rootName, expected, { loose = false } = {}) { 167 (node) => node.name === rootName, 171 `Expect to find at least ${expected.length} '${rootName}', ` + 176 `Expect to find ${expected.length} '${rootName}', ` + 200 validateSnapshotNodes(rootName, expected, { loose = false } = {}) { 201 this.validateSnapshot(rootName, expecte [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Path.cpp | 682 rootName = has_root_name(p); 684 rootName = true; 687 return rootDir && rootName; 813 rootName = path::has_root_name(p); 815 rootName = true; 819 if (rootName && rootDirectory) 830 if (!rootName && !rootDirectory) { 838 if (!rootName && rootDirectory) { 847 if (rootName && !rootDirectory) { 859 llvm_unreachable("All rootName an [all...] |
/third_party/astc-encoder/Test/testlib/ |
H A D | image.py | 127 rootName = os.path.splitext(fileName)[0] 129 parts = rootName.split("-")
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Path.cpp | 691 bool rootName = 694 return rootDir && rootName; 881 bool rootName = path::has_root_name(p); 884 if ((rootName || real_style(Style::native) != Style::windows) && 893 if (!rootName && !rootDirectory) { 901 if (!rootName && rootDirectory) { 910 if (rootName && !rootDirectory) { 922 llvm_unreachable("All rootName and rootDirectory combinations should have "
|
/third_party/icu/icu4c/source/tools/ctestfw/ |
H A D | ctest.c | 1281 ctest_xml_init(const char *rootName) { in ctest_xml_init() argument 1289 while(*rootName&&!isalnum((int)*rootName)) { in ctest_xml_init() 1290 rootName++; in ctest_xml_init() 1292 strcpy(XML_PREFIX,rootName); in ctest_xml_init()
|
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/ |
H A D | ctest.c | 1271 ctest_xml_init(const char *rootName) { in ctest_xml_init() argument 1279 while(*rootName&&!isalnum((int)*rootName)) { in ctest_xml_init() 1280 rootName++; in ctest_xml_init() 1282 strcpy(XML_PREFIX,rootName); in ctest_xml_init()
|
/third_party/icu/icu4c/source/tools/ctestfw/unicode/ |
H A D | ctest.h | 298 * @param rootName the test root name to be written 302 ctest_xml_init(const char *rootName);
|
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/unicode/ |
H A D | ctest.h | 291 * @param rootName the test root name to be written 295 ctest_xml_init(const char *rootName);
|
/third_party/typescript/tests/arkTSTest/ |
H A D | run.js | 164 function runLinter(rootName) {
175 rootNames: [path.join(process.cwd(), rootName)],
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationUserDefinedIO.cpp | 118 std::string glslTraverseBasicTypes (const std::string& rootName, in glslTraverseBasicTypes() argument 125 return visit(rootName, rootType.getBasicType(), indentationDepth); in glslTraverseBasicTypes() 133 glslTraverseBasicTypes(rootName + "[" + loopIndexName + "]", rootType.getElementType(), arrayNestingDepth+1, indentationDepth+1, visit) + in glslTraverseBasicTypes() 145 result += glslTraverseBasicTypes(rootName + "." + member.getName(), member.getType(), arrayNestingDepth, indentationDepth, visit); in glslTraverseBasicTypes()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/ |
H A D | vktTessellationUserDefinedIO.cpp | 118 std::string glslTraverseBasicTypes (const std::string& rootName, in glslTraverseBasicTypes() argument 125 return visit(rootName, rootType.getBasicType(), indentationDepth); in glslTraverseBasicTypes() 133 glslTraverseBasicTypes(rootName + "[" + loopIndexName + "]", rootType.getElementType(), arrayNestingDepth+1, indentationDepth+1, visit) + in glslTraverseBasicTypes() 145 result += glslTraverseBasicTypes(rootName + "." + member.getName(), member.getType(), arrayNestingDepth, indentationDepth, visit); in glslTraverseBasicTypes()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | LdmlConverter.java | 320 String rootName = getBaseSegmentName(p.getSegment(0)); in processLdml() 321 splitPaths.put(LOCALE_SPLIT_INFO.getOrDefault(rootName, LOCALES), p); in processLdml()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cldrtest.c | 79 TestKeyInRootRecursive(UResourceBundle *root, const char *rootName, in TestKeyInRootRecursive() argument 106 rootName, in TestKeyInRootRecursive() 170 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive() 325 /* if (sameArray && strcmp(rootName, "root") == 0) { in TestKeyInRootRecursive() 429 TestKeyInRootRecursive(subRootBundle, rootName, subBundle, locale); in TestKeyInRootRecursive()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.cpp | 700 auto rootName = ""; in parseCaseList() local 701 test_case_hash_t hash = hashTestNodeName(rootName, &hashCollisionDetectionMap); in parseCaseList()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fProgramUniformTests.cpp | 849 string rootName; //!< If this is a member of a basic-typed array, rootName is the name of that array with "[0]" appended. Otherwise it equals name. member 864 , rootName (rootName_ == DE_NULL ? name_ : rootName_) in BasicUniform() 1375 const string curName = isArrayMember ? beforeLast(uniform.rootName, '[') + "[" + de::toString(uniform.elemNdx+i) + "]" : uniform.name; in assignUniforms()
|
H A D | es31fProgramInterfaceQueryTestCase.cpp | 1959 const std::string rootName = resourceName.substr(0, rootNameEnd); 1986 else if (isInterfaceBlockInterfaceName(programDefinition, interface, rootName)) 2014 const std::string interafaceName = getInterfaceBlockInteraceNameByMember(programDefinition, interface, rootName);
|
H A D | es31fTessellationTests.cpp | 5763 static string glslTraverseBasicTypes (const string& rootName, 5808 * basic-type subobjects in a rootType-typed object named rootName. Arrays 5813 string UserDefinedIOCase::glslTraverseBasicTypes (const string& rootName, 5820 return visit(rootName, rootType.getBasicType(), indentationDepth); 5828 glslTraverseBasicTypes(rootName + "[" + loopIndexName + "]", rootType.getElementType(), arrayNestingDepth+1, indentationDepth+1, visit) + 5840 result += glslTraverseBasicTypes(rootName + "." + member.getName(), member.getType(), arrayNestingDepth, indentationDepth, visit);
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fUniformApiTests.cpp | 959 string rootName; //!< If this is a member of a basic-typed array, rootName is the name of that array with "[0]" appended. Otherwise it equals name. member 974 , rootName (rootName_ == DE_NULL ? name_ : rootName_) in BasicUniform() 1872 const string curName = isArrayMember ? beforeLast(uniform.rootName, '[') + "[" + de::toString(uniform.elemNdx+i) + "]" : uniform.name; in assignUniforms()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fUniformApiTests.cpp | 794 string rootName; //!< If this is a member of a basic-typed array, rootName is the name of that array with "[0]" appended. Otherwise it equals name. member 809 , rootName (rootName_ == DE_NULL ? name_ : rootName_) in BasicUniform() 1501 const string curName = isArrayMember ? beforeLast(uniform.rootName, '[') + "[" + de::toString(uniform.elemNdx+i) + "]" : uniform.name; in assignUniforms()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 6356 std::string const& rootName, 16976 std::string const& rootName, 16980 if( !rootName.empty() ) 16981 name = rootName + '/' + name;
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | [all...] |
H A D | tsc.js | [all...] |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |