Home
last modified time | relevance | path

Searched refs:includePath (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A Dparser.js60 convertAbsPath(includeBy, includePath) { argument
63 if (includePath[1] !== ':') {
68 includePath = currentSrc + includePath.replace(/\//g, '\\');
70 includePath = includePath.replace(/\\\.\\/g, '\\');
/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/
H A Dparser.cpp135 auto includePath = current_.strval; in ProcessInclude() local
136 if (includePath.empty()) { in ProcessInclude()
137 Logger().Error() << lexer_ << "include invalid file: \'" << includePath << '\''; in ProcessInclude()
141 if (includePath[0] != '/') { in ProcessInclude()
144 includePath = currentSrcDir.append(includePath); in ProcessInclude()
147 auto includeAbsPath = Util::File::AbsPath(includePath); in ProcessInclude()