Lines Matching refs:string
221 std::string dvmHumanReadableDescriptor(const char* descriptor) { in dvmHumanReadableDescriptor()
253 std::string result; in dvmHumanReadableDescriptor()
269 std::string dvmHumanReadableType(const Object* obj) in dvmHumanReadableType()
278 std::string result(dvmHumanReadableDescriptor(obj->clazz->descriptor)); in dvmHumanReadableType()
286 std::string dvmHumanReadableField(const Field* field) in dvmHumanReadableField()
291 std::string result(dvmHumanReadableDescriptor(field->clazz->descriptor)); in dvmHumanReadableField()
297 std::string dvmHumanReadableMethod(const Method* method, bool withSignature) in dvmHumanReadableMethod()
302 std::string result(dvmHumanReadableDescriptor(method->clazz->descriptor)); in dvmHumanReadableMethod()
765 void StringAppendV(std::string* dst, const char* format, va_list ap) { in StringAppendV()
810 std::string StringPrintf(const char* fmt, ...) { in StringPrintf()
813 std::string result; in StringPrintf()
819 void StringAppendF(std::string* dst, const char* format, ...) { in StringAppendF()