Home
last modified time | relevance | path

Searched refs:relativePath (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_js2bundle/ace-loader/plugin/templater/
Dindex.js31 const relativePath = replaceAll(path.sep, '/', path.relative(
40 if (checkNullNode(template, operate) || checkRootNode(template, operate, relativePath)) {
52 generate(rootArray[rootIndex], filePath, undefined, relativePath)
88 function checkRootNode(template, operate, relativePath) { argument
101 …componentValidator.elementNames[relativePath] = componentValidator.elementNames[relativePath] || []
102 componentValidator.elementNames[relativePath].push(element.value.toLowerCase())
134 function generate(node, filePath, preNode, relativePath) { argument
135 componentValidator.validateTagName(node, compileResult, relativePath)
137 checkNodeAttrs(node, filePath, preNode, relativePath)
140 checkNodeChildren(node, filePath, relativePath)
[all …]
Dcomponent_validator.js170 function validateTagName(domNode, out, relativePath) { argument
186 const elementNamesInFile = elementNames[relativePath] || []
211 setDebugLine(jsonTemplate, relativePath, nodeLoc.line)
685 function validateClass(classNames, out, nodeLoc, relativePath) { argument
687 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line, classNames)
758 function validateStyle(css, out, nodeLoc, relativePath) { argument
765 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
928 function validateIf(val, out, flag, nodeLoc, relativePath) { argument
951 setDebugLine(out.jsonTemplate, relativePath, nodeLoc.line)
961 function validateElif(val, out, flag, nodeLoc, relativePath) { argument
[all …]
/developtools/packing_tool/adapter/ohos/
DBinaryTool.java140 String relativePath = f.getParent().replace(directory, ""); in writeFileInfo() local
142 relativePath = relativePath.replace("\\", "/"); in writeFileInfo()
144 appStream.writeInt(relativePath.length()); in writeFileInfo()
146 appStream.writeBytes(relativePath); in writeFileInfo()
/developtools/ace_js2bundle/ace-loader/
Dmain.product.js179 const relativePath = path.relative(process.env.projectPath, worker);
180 if (filterWorker(relativePath)) {
181 workerEntryObj[relativePath.replace(/\.(ts|js)$/,'').replace(/\\/g, '/')] = worker;
/developtools/ace_ets2bundle/compiler/src/
Dark_utils.ts97 const relativePath = processSrcMain(result, projectFilePath); constant
99 return `${bundleName}/${moduleName}@${namespace}/${relativePath}`;
101 return `${bundleName}/${moduleName}/${relativePath}`;
120 let relativePath: string = result[3];
125 relativePath = projectFilePath.substring(srcMainIndex).replace(REG_SRC_MAIN, '');
126 langType = projectFilePath.replace(relativePath, '').match(REG_SRC_MAIN)[1];
128 return `${langType}/${relativePath}`;
Dprocess_visual.ts319 const relativePath = filePath.replace(projectRootPath, ''); constant
320 const moduleNames = relativePath.split(path.sep);