Home | History | Annotate | Download | only in dex

Lines Matching refs:string

29 void AppendPrettyDescriptor(const char* descriptor, std::string* result) {
60 // At this point, 'c' is a string of the form "fully/qualified/Type;"
76 std::string PrettyDescriptor(const char* descriptor) {
77 std::string result;
82 std::string GetJniShortName(const std::string& class_descriptor, const std::string& method) {
84 std::string class_name(class_descriptor);
90 std::string short_name;
99 std::string MangleForJni(const std::string& s) {
100 std::string result;
128 std::string DotToDescriptor(const char* class_name) {
129 std::string descriptor(class_name);
137 std::string DescriptorToDot(const char* descriptor) {
142 std::string result(descriptor + 1, length - 2);
147 std::string result(descriptor);
156 std::string DescriptorToName(const char* descriptor) {
159 std::string result(descriptor + 1, length - 2);
268 // The empty string is not a valid name.
359 * the empty string "").
366 * case, make sure that this is the end of the string
406 void Split(const std::string& s, char separator, std::vector<std::string>* result) {
417 result->push_back(std::string(start, p - start));
422 std::string PrettyDescriptor(Primitive::Type type) {