Lines Matching defs:body
136 IfBuilder0& Then(const VoidGenerator0& body) {
137 then_body_ = body;
140 IfBuilder0& Else(const VoidGenerator0& body) {
141 else_body_ = body;
151 // Unlike IfBuilder1, this supports an empty then or else body. This is
212 V8_WARN_UNUSED_RESULT IfBuilder1& Then(const If1BodyFunction& body) {
213 then_body_ = body;
216 V8_WARN_UNUSED_RESULT IfBuilder1& Else(const If1BodyFunction& body) {
217 else_body_ = body;
318 TNode<Object> MayThrow(const NodeGenerator0& body) {
319 TNode<Object> result = body();
489 void Do(const For0BodyFunction& body) {
507 body(i);
550 V8_WARN_UNUSED_RESULT ForBuilder1& Do(const For1BodyFunction& body) {
551 body_ = body;