• Home
  • Raw
  • Download

Lines Matching refs:result

31 void AppendPrettyDescriptor(const char* descriptor, std::string* result) {  in AppendPrettyDescriptor()  argument
76 default: result->append(descriptor); return; in AppendPrettyDescriptor()
90 result->append(temp); in AppendPrettyDescriptor()
94 result->append("[]"); in AppendPrettyDescriptor()
99 std::string result; in PrettyDescriptor() local
100 AppendPrettyDescriptor(descriptor, &result); in PrettyDescriptor()
101 return result; in PrettyDescriptor()
105 std::string result; in InversePrettyDescriptor() local
122 result += '['; in InversePrettyDescriptor()
128 result += 'B'; in InversePrettyDescriptor()
130 result += 'C'; in InversePrettyDescriptor()
132 result += 'D'; in InversePrettyDescriptor()
134 result += 'F'; in InversePrettyDescriptor()
136 result += 'I'; in InversePrettyDescriptor()
138 result += 'J'; in InversePrettyDescriptor()
140 result += 'S'; in InversePrettyDescriptor()
142 result += 'Z'; in InversePrettyDescriptor()
144 result += 'V'; in InversePrettyDescriptor()
146 result += 'L'; in InversePrettyDescriptor()
148 result += temp_descriptor; in InversePrettyDescriptor()
149 result += ';'; in InversePrettyDescriptor()
151 return result; in InversePrettyDescriptor()
172 std::string result; in MangleForJni() local
178 result.push_back(ch); in MangleForJni()
180 result += "_"; in MangleForJni()
182 result += "_1"; in MangleForJni()
184 result += "_2"; in MangleForJni()
186 result += "_3"; in MangleForJni()
191 StringAppendF(&result, "_0%04x", leading); in MangleForJni()
193 StringAppendF(&result, "_0%04x", trailing); in MangleForJni()
197 return result; in MangleForJni()
214 std::string result(descriptor + 1, length - 2); in DescriptorToDot() local
215 std::replace(result.begin(), result.end(), '/', '.'); in DescriptorToDot()
216 return result; in DescriptorToDot()
219 std::string result(descriptor); in DescriptorToDot() local
220 std::replace(result.begin(), result.end(), '/', '.'); in DescriptorToDot()
221 return result; in DescriptorToDot()
231 std::string result(descriptor + 1, length - 2); in DescriptorToName() local
232 return result; in DescriptorToName()