Searched refs:ObjectType (Results 1 - 4 of 4) sorted by relevance
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/ |
H A D | ast.js | 19 var ObjectType = { 111 case ObjectType.PARSEROP_UINT8: 112 case ObjectType.PARSEROP_UINT16: 113 case ObjectType.PARSEROP_UINT32: 114 case ObjectType.PARSEROP_UINT64: 129 return ObjectType.PARSEROP_UINT8; 131 return ObjectType.PARSEROP_UINT16; 133 return ObjectType.PARSEROP_UINT32; 135 return ObjectType.PARSEROP_UINT64; 255 this.type_ >= ObjectType [all...] |
H A D | parser.js | 25 ObjectType, 227 array.addChild(new AstObject('', ObjectType.PARSEROP_STRING, this.current_.strval, this.current_)); 229 array.addChild(new AstObject('', ObjectType.PARSEROP_UINT64, 266 term.addChild(new AstObject('', ObjectType.PARSEROP_BOOL, this.current_.numval, this.current_)); 269 term.addChild(new AstObject('', ObjectType.PARSEROP_STRING, this.current_.strval, this.current_)); 272 term.addChild(new AstObject('', ObjectType.PARSEROP_UINT64, this.current_.numval, this.current_, this.current_.baseSystem)); 288 term.addChild(new AstObject('', ObjectType.PARSEROP_NODEREF, this.current_.strval, this.current_)); 291 term.addChild(new AstObject('', ObjectType.PARSEROP_DELETE, this.current_.strval, this.current_));
|
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/ |
H A D | MainEditor.js | 31 const { ObjectType } = require('./hcs/ast');
926 if (node.value_.type_ === ObjectType.PARSEROP_ARRAY) {
930 node.value_.type_ === ObjectType.PARSEROP_UINT8 ||
931 node.value_.type_ === ObjectType.PARSEROP_UINT16 ||
932 node.value_.type_ === ObjectType.PARSEROP_UINT32 ||
933 node.value_.type_ === ObjectType.PARSEROP_UINT64
939 } else if (node.value_.type_ === ObjectType.PARSEROP_DELETE) {
941 } else if (node.value_.type_ === ObjectType.PARSEROP_BOOL) {
1043 case ObjectType.PARSEROP_UINT8:
1044 case ObjectType [all...] |
/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | ast.h | 22 enum ObjectType { enum
|
Completed in 4 milliseconds