Searched refs:bindToken (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | ast.js | 61 constructor(name, type, value, bindToken, jinzhi) { argument 68 if (Object.prototype.toString.call(bindToken) === '[object Object]') { 69 this.constructorSiit(name, type, value, bindToken, jinzhi); 74 if (Object.prototype.toString.call(bindToken) === '[object Object]') { 75 this.constructorSist(name, type, value, bindToken); 105 constructorSiit(name, type, value, bindToken, jinzhi) { argument 107 this.lineno_ = bindToken.lineNo; 108 this.src_ = bindToken.src; 122 constructorSist(name, type, value, bindToken) { argument 123 this.constructorSiit(name, type, 0, bindToken, 10);
|
/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | ast.cpp | 49 …t::AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const Token &bindToken) in AstObject() argument 50 : AstObject(name, type, integerValue, "", bindToken.lineNo, bindToken.src) in AstObject() 64 …Object(const std::string &name, uint32_t type, const std::string &strValue, const Token &bindToken) in AstObject() argument 65 : AstObject(name, type, 0, strValue, bindToken.lineNo, bindToken.src) in AstObject() 846 ConfigArray::ConfigArray(const Token &bindToken) in ConfigArray() argument 847 : AstObject("", PARSEROP_ARRAY, 0, bindToken), arrayType_(0), arraySize_(0) in ConfigArray()
|
H A D | ast.h | 55 … AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const Token &bindToken); 57 …bject(const std::string &name, uint32_t type, const std::string &strValue, const Token &bindToken); 254 explicit ConfigArray(const Token &bindToken);
|