Lines Matching refs:str
301 TNode<String> CodeAssembler::StringConstant(const char* str) {
303 factory()->InternalizeString(base::OneByteVector(str));
526 void CodeAssembler::Comment(std::string str) {
528 raw_assembler()->Comment(str);
1450 std::stringstream str;
1451 str << "#Use of unbound variable:"
1453 state_->PrintCurrentBlock(str);
1454 FATAL("%s", str.str().c_str());
1457 std::stringstream str;
1458 str << "#Accessing variable value outside a block:"
1460 FATAL("%s", str.str().c_str());
1545 std::stringstream str;
1546 str << "Unmerged variable found when jumping to block. \n"
1549 str << "\n# Target block: " << *label_->block();
1551 str << "\n# Current Block: ";
1552 state_->PrintCurrentBlock(str);
1553 FATAL("%s", str.str().c_str());
1565 std::stringstream str;
1566 str << "Cannot bind the same label twice:"
1569 FATAL("%s", str.str().c_str());
1612 std::stringstream str;
1613 str << "A variable that has been marked as beeing merged at the label"
1625 FATAL("%s", str.str().c_str());