Lines Matching refs:str
393 void StackMapFrame::print_on(outputStream* str) const {
394 str->indent().print_cr("bci: @%d", _offset);
395 str->indent().print_cr("flags: {%s }",
397 str->indent().print("locals: {");
399 str->print(" ");
400 _locals[i].print_on(str);
402 str->print(",");
405 str->print_cr(" }");
406 str->indent().print("stack: {");
408 str->print(" ");
409 _stack[j].print_on(str);
411 str->print(",");
414 str->print_cr(" }");