Lines Matching refs:c_str
82 to->Write("%s\n", this->comment.c_str()); in Write()
85 to->Write("%s\n", a.c_str()); in Write()
91 to->Write(" = %s", this->value.c_str()); in Write()
99 to->Write("%s", this->value.c_str()); in Write()
105 to->Write("\"%s\"", this->value.c_str()); in Write()
112 to->Write("%s ", a.c_str()); in WriteDeclaration()
114 to->Write("%s %s", this->type.c_str(), this->name.c_str()); in WriteDeclaration()
117 void Variable::Write(CodeWriter* to) const { to->Write("%s", name.c_str()); } in Write()
127 [&](const std::string& s) { to->Write("%s", s.c_str()); }, [](std::monostate) {}}, in Write()
129 to->Write(".%s", name.c_str()); in Write()
135 to->Write("%s", value_.c_str()); in Write()
174 to->Write("(%s)", this->cast->c_str()); in Write()
202 [&](const std::string& s) { to->Write("%s.", s.c_str()); }, [](std::monostate) {}}, in Write()
204 to->Write("%s(", this->name.c_str()); in Write()
216 to->Write("%s", this->op.c_str()); in Write()
228 to->Write("new %s(", this->instantiableName.c_str()); in Write()
237 to->Write("new %s[", this->type.c_str()); in Write()
245 to->Write("((%s)", this->type.c_str()); in Write()
303 to->Write("case %s:\n", s.c_str()); in Write()
333 to->Write("%s\n", this->comment.c_str()); in Write()
337 to->Write("%s\n", a.c_str()); in Write()
344 to->Write("%s ", this->returnType->c_str()); in Write()
347 to->Write("%s(", this->name.c_str()); in Write()
366 to->Write("%s", this->exceptions[i].c_str()); in Write()
378 to->Write("%s", element.c_str()); in Write()
385 to->Write("%s\n", this->comment.c_str()); in Write()
388 to->Write("%s\n", a.c_str()); in Write()
402 name = name.c_str() + pos + 1; in Write()
405 to->Write("%s", name.c_str()); in Write()
408 to->Write(" extends %s", this->extends->c_str()); in Write()
419 to->Write(" %s", this->interfaces[i].c_str()); in Write()
446 to->Write("%s\n", comment_.c_str()); in Write()
453 to->Write("package %s;\n", package_.c_str()); in Write()