Searched refs:body_ (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/wasm/ |
D | encoder.cc | 58 body_(builder->zone()), in WasmFunctionBuilder() 66 body_.push_back(*p); in EmitVarInt() 91 body_.push_back(code[i]); in EmitCode() 96 body_.push_back(static_cast<byte>(opcode)); in Emit() 100 body_.push_back(static_cast<byte>(opcode)); in EmitWithU8() 101 body_.push_back(immediate); in EmitWithU8() 106 body_.push_back(static_cast<byte>(opcode)); in EmitWithU8U8() 107 body_.push_back(imm1); in EmitWithU8U8() 108 body_.push_back(imm2); in EmitWithU8U8() 113 body_.push_back(static_cast<byte>(opcode)); in EmitWithVarInt() [all …]
|
D | encoder.h | 157 ZoneVector<uint8_t> body_; variable
|
/external/v8/src/regexp/ |
D | regexp-ast.h | 376 : body_(body), in RegExpQuantifier() 402 RegExpTree* body() { return body_; } in body() 405 RegExpTree* body_; 417 : body_(NULL), index_(index), name_(nullptr) {} in RegExpCapture() 427 int min_match() override { return body_->min_match(); } in min_match() 428 int max_match() override { return body_->max_match(); } in max_match() 429 RegExpTree* body() { return body_; } in body() 430 void set_body(RegExpTree* body) { body_ = body; } in set_body() 438 RegExpTree* body_; 450 : body_(body), in RegExpLookaround() [all …]
|
D | jsregexp.cc | 5761 RegExpNode* match = body_->ToNode(compiler, builder.on_match_success()); in ToNode()
|
/external/v8/src/ast/ |
D | ast.h | 623 Block* body() const { return body_; } in body() 627 : AstNode(pos), descriptor_(ModuleDescriptor::New(zone)), body_(NULL) {} in Module() 629 : AstNode(pos), descriptor_(descriptor), body_(body) {} in AstNode() 633 Block* body_; variable 642 Statement* body() const { return body_; } in body() 643 void set_body(Statement* s) { body_ = s; } in set_body() 663 body_(NULL), in IterationStatement() 667 void Initialize(Statement* body) { body_ = body; } in Initialize() 672 Statement* body_; variable 2590 ZoneList<Statement*>* body() const { return body_; } in body() [all …]
|