Searched refs:bindToken (Results 1 - 3 of 3) sorted by relevance
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | ast.js | 61 constructor(name, type, value, bindToken, jinzhi) { 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) { 107 this.lineno_ = bindToken.lineNo; 108 this.src_ = bindToken.src; 122 constructorSist(name, type, value, bindToken) { 123 this.constructorSiit(name, type, 0, bindToken, 1 [all...] |
/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | ast.cpp | 49 AstObject::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 AstObject::AstObject(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) 847 : AstObject("", PARSEROP_ARRAY, 0, bindToken), arrayType_(0), arraySize_(0)
|
H A D | ast.h | 55 AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const Token &bindToken); 57 AstObject(const std::string &name, uint32_t type, const std::string &strValue, const Token &bindToken); 254 explicit ConfigArray(const Token &bindToken);
|
Completed in 3 milliseconds