Home | History | Annotate | Download | only in aidl

Lines Matching full:c_str

71     to->Write("%s\n", this->comment.c_str());
74 to->Write("%s %s", this->variable->type->JavaType().c_str(),
75 this->variable->name.c_str());
77 to->Write(" = %s", this->value.c_str());
85 to->Write("%s", this->value.c_str());
91 to->Write("\"%s\"", this->value.c_str());
105 to->Write("%s%s %s", this->type->JavaType().c_str(), dim.c_str(),
106 this->name.c_str());
109 void Variable::Write(CodeWriter* to) const { to->Write("%s", name.c_str()); }
121 to->Write("%s", this->clazz->JavaType().c_str());
123 to->Write(".%s", name.c_str());
160 to->Write("(%s)", this->cast->JavaType().c_str());
206 to->Write("%s.", this->clazz->JavaType().c_str());
208 to->Write("%s(", this->name.c_str());
219 to->Write("%s", this->op.c_str());
241 to->Write("new %s(", this->type->InstantiableName().c_str());
250 to->Write("new %s[", this->type->JavaType().c_str());
271 to->Write("((%s)", this->type->JavaType().c_str());
287 to->Write("(%s)", this->cast->JavaType().c_str());
346 to->Write("case %s:\n", s.c_str());
376 to->Write("%s\n", this->comment.c_str());
387 to->Write("%s%s ", this->returnType->JavaType().c_str(), dim.c_str());
390 to->Write("%s(", this->name.c_str());
409 to->Write("%s", this->exceptions[i]->JavaType().c_str());
422 to->Write("int %s = %d;\n", name.c_str(), value);
429 to->Write("%s\n", this->comment.c_str());
443 name = name.c_str() + pos + 1;
446 to->Write("%s", name.c_str());
449 to->Write(" extends %s", this->extends->JavaType().c_str());
460 to->Write(" %s", this->interfaces[i]->JavaType().c_str());
501 to->Write("%s\n", comment_.c_str());
508 escape_backslashes(original_src_).c_str());
510 to->Write("package %s;\n", package_.c_str());