Searched refs:pathComponents (Results 1 – 8 of 8) sorted by relevance
/third_party/typescript/src/compiler/ |
D | path.ts | 390 function pathComponents(path: string, rootLength: number) { function 429 return pathComponents(path, getRootLength(path)); 442 export function getPathFromPathComponents(pathComponents: readonly string[]) { 443 if (pathComponents.length === 0) return ""; 445 const root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 446 return root + pathComponents.slice(1).join(directorySeparator); 554 function getPathWithoutRoot(pathComponents: readonly string[]) { 555 if (pathComponents.length === 0) return ""; 556 return pathComponents.slice(1).join(directorySeparator); 811 …const pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? equateStringsCa… constant [all …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuWaiverUtil.cpp | 127 …deUint32 findComponentInBuildTree(const std::vector<std::string>& pathComponents, deUint32 index… 296 deUint32 WaiverTreeBuilder::findComponentInBuildTree(const std::vector<std::string>& pathComponents… in findComponentInBuildTree() argument 298 const std::string& checkedName = pathComponents[index]; in findComponentInBuildTree() 318 if (pathComponents[reverseLevel] != m_buildTree[ancestorInTreeIndex].name) in findComponentInBuildTree() 352 const std::vector<std::string> pathComponents = de::splitString(path, '.'); in buildTreeFromPathList() local 358 for (deUint32 level = 1 ; level < pathComponents.size() ; ++level) in buildTreeFromPathList() 361 deUint32 componentIndex = findComponentInBuildTree(pathComponents, level); in buildTreeFromPathList() 369 const std::string componentName = pathComponents[level]; in buildTreeFromPathList()
|
/third_party/typescript/lib/ |
D | tsc.js | 3417 function pathComponents(path, rootLength) { function 3427 return pathComponents(path, getRootLength(path)); 3430 function getPathFromPathComponents(pathComponents) { argument 3431 if (pathComponents.length === 0) 3433 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 3434 return root + pathComponents.slice(1).join(ts.directorySeparator); 3510 function getPathWithoutRoot(pathComponents) { argument 3511 if (pathComponents.length === 0) 3513 return pathComponents.slice(1).join(ts.directorySeparator); 3669 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|
D | typingsInstaller.js | 5796 function pathComponents(path, rootLength) { function 5836 return pathComponents(path, getRootLength(path)); 5848 function getPathFromPathComponents(pathComponents) { argument 5849 if (pathComponents.length === 0) 5851 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 5852 return root + pathComponents.slice(1).join(ts.directorySeparator); 5974 function getPathWithoutRoot(pathComponents) { argument 5975 if (pathComponents.length === 0) 5977 return pathComponents.slice(1).join(ts.directorySeparator); 6165 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|
D | typescriptServices.js | 6001 function pathComponents(path, rootLength) { function 6041 return pathComponents(path, getRootLength(path)); 6053 function getPathFromPathComponents(pathComponents) { argument 6054 if (pathComponents.length === 0) 6056 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 6057 return root + pathComponents.slice(1).join(ts.directorySeparator); 6179 function getPathWithoutRoot(pathComponents) { argument 6180 if (pathComponents.length === 0) 6182 return pathComponents.slice(1).join(ts.directorySeparator); 6370 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|
D | tsserverlibrary.js | 6001 function pathComponents(path, rootLength) { function 6041 return pathComponents(path, getRootLength(path)); 6053 function getPathFromPathComponents(pathComponents) { argument 6054 if (pathComponents.length === 0) 6056 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 6057 return root + pathComponents.slice(1).join(ts.directorySeparator); 6179 function getPathWithoutRoot(pathComponents) { argument 6180 if (pathComponents.length === 0) 6182 return pathComponents.slice(1).join(ts.directorySeparator); 6370 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|
D | tsserver.js | 5807 function pathComponents(path, rootLength) { function 5847 return pathComponents(path, getRootLength(path)); 5859 function getPathFromPathComponents(pathComponents) { argument 5860 if (pathComponents.length === 0) 5862 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 5863 return root + pathComponents.slice(1).join(ts.directorySeparator); 5985 function getPathWithoutRoot(pathComponents) { argument 5986 if (pathComponents.length === 0) 5988 return pathComponents.slice(1).join(ts.directorySeparator); 6176 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|
D | typescript.js | 6001 function pathComponents(path, rootLength) { function 6041 return pathComponents(path, getRootLength(path)); 6053 function getPathFromPathComponents(pathComponents) { argument 6054 if (pathComponents.length === 0) 6056 var root = pathComponents[0] && ensureTrailingDirectorySeparator(pathComponents[0]); 6057 return root + pathComponents.slice(1).join(ts.directorySeparator); 6179 function getPathWithoutRoot(pathComponents) { argument 6180 if (pathComponents.length === 0) 6182 return pathComponents.slice(1).join(ts.directorySeparator); 6370 …var pathComponents = getPathComponentsRelativeTo(fromDirectory, to, ignoreCase ? ts.equateStringsC… [all …]
|