Lines Matching defs:depth
1273 int depth = FindBreakLabelDepth(label_name);
1274 if (depth < 0) {
1278 current_function_builder_->EmitI32V(depth);
1290 int depth = FindContinueLabelDepth(label_name);
1291 if (depth < 0) {
1294 current_function_builder_->EmitWithI32V(kExprBr, depth);
2525 int depth = 0;
2528 ++depth;
2530 --depth;
2531 if (depth < 0) {
2543 int depth = 0;
2546 ++depth;
2548 --depth;
2549 if (depth <= 0) {
2552 } else if (depth == 1 && Peek(TOK(case))) {