Searched refs:numval (Results 1 - 6 of 6) sorted by relevance
/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | token.cpp | 52 std::hex << token.numval; in operator <<() 57 Token::Token() : type(0), strval(), numval(0), src(), lineNo(0) {} 70 return token.type == type && token.numval == numval && token.strval == strval; 75 return token.type != type || token.numval != numval || token.strval != strval;
|
H A D | lexer.cpp | 241 token.numval = 0; in InitToken() 338 token.numval = v; in LexFromNumber() 359 token.numval = 1; in LexFromLiteral() 363 token.numval = 0; in LexFromLiteral()
|
H A D | token.h | 34 uint64_t numval; member
|
H A D | parser.cpp | 221 term->AddChild(std::make_shared<AstObject>("", PARSEROP_UINT64, current_.numval, current_)); in ParseTerm() 401 array->AddChild(std::make_shared<AstObject>("", PARSEROP_UINT64, current_.numval, current_)); in ParseArray()
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | lexer.js | 191 token.numval = 0; 212 token.numval = 1; 216 token.numval = 0; 345 token.numval = param.v;
|
H A D | parser.js | 230 this.current_.numval, this.current_, this.current_.baseSystem)); 266 term.addChild(new AstObject('', ObjectType.PARSEROP_BOOL, this.current_.numval, this.current_)); 272 term.addChild(new AstObject('', ObjectType.PARSEROP_UINT64, this.current_.numval, this.current_, this.current_.baseSystem));
|
Completed in 4 milliseconds