Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 5 of 5) sorted by relevance

/tools/dexter/slicer/
Ddex_format.cc57 std::stringstream ss; in DescriptorToDecl() local
68 ss << (*descriptor == '/' ? '.' : *descriptor); in DescriptorToDecl()
71 ss << PrimitiveTypeName(*descriptor); in DescriptorToDecl()
78 ss << "[]"; in DescriptorToDecl()
81 return ss.str(); in DescriptorToDecl()
Ddex_ir.cc100 std::stringstream ss; in Signature() local
101 ss << "("; in Signature()
104 ss << type->descriptor->c_str(); in Signature()
107 ss << ")"; in Signature()
108 ss << return_type->descriptor->c_str(); in Signature()
109 return ss.str(); in Signature()
Ddex_ir_builder.cc136 std::stringstream ss; in CreateShorty() local
137 ss << dex::DescriptorToShorty(return_type->descriptor->c_str()); in CreateShorty()
140 ss << dex::DescriptorToShorty(param_type->descriptor->c_str()); in CreateShorty()
143 return ss.str(); in CreateShorty()
/tools/dexter/dexter/
Ddissasembler.cc27 std::stringstream ss; in MethodDeclaration() local
28 ss << "("; in MethodDeclaration()
32 ss << (first ? "" : ", ") << type->Decl(); in MethodDeclaration()
36 ss << "):"; in MethodDeclaration()
37 ss << proto->return_type->Decl(); in MethodDeclaration()
38 return ss.str(); in MethodDeclaration()
Ddexter.cc35 std::stringstream ss; in ClassNameToDescriptor() local
36 ss << "L"; in ClassNameToDescriptor()
38 ss << (*p == '.' ? '/' : *p); in ClassNameToDescriptor()
40 ss << ";"; in ClassNameToDescriptor()
41 return ss.str(); in ClassNameToDescriptor()