Searched refs:dot (Results 1 – 8 of 8) sorted by relevance
/art/test/684-checker-simd-dotprod/ |
D | info.txt | 1 Functional tests on dot product idiom SIMD vectorization.
|
/art/tools/ |
D | analyze-init-failures.py | 78 (root_err_class,dot,root_method_name) = left_of_paren.rpartition('.') 97 (err_class,dot,err_method_name) = left_of_paren.rpartition('.')
|
/art/dexdump/ |
D | dexdump.cc | 721 std::unique_ptr<char[]> dot(descriptorToDot(interfaceName)); in dumpInterface() local 722 fprintf(gOutFile, "<implements name=\"%s\">\n</implements>\n", dot.get()); in dumpInterface() 1139 std::unique_ptr<char[]> dot(descriptorToDot(backDescriptor)); in dumpBytecodes() local 1141 codeOffset, codeOffset, dot.get(), name, signature.ToString().c_str()); in dumpBytecodes() 1263 std::unique_ptr<char[]> dot(descriptorClassToName(backDescriptor)); in dumpMethod() local 1264 fprintf(gOutFile, "<constructor name=\"%s\"\n", dot.get()); in dumpMethod() 1265 dot = descriptorToDot(backDescriptor); in dumpMethod() 1266 fprintf(gOutFile, " type=\"%s\"\n", dot.get()); in dumpMethod() 1274 std::unique_ptr<char[]> dot(descriptorToDot(returnType + 1)); in dumpMethod() local 1275 fprintf(gOutFile, " return=\"%s\"\n", dot.get()); in dumpMethod() [all …]
|
/art/dexlayout/ |
D | dexlayout.cc | 776 std::string dot(DescriptorToDot(interface_name)); in DumpInterface() local 777 fprintf(out_file_, "<implements name=\"%s\">\n</implements>\n", dot.c_str()); in DumpInterface() 1034 std::string dot(DescriptorToDot(back_descriptor)); in DumpBytecodes() local 1036 code_offset, code_offset, dot.c_str(), name, type_descriptor.c_str()); in DumpBytecodes() 1207 std::string dot(DescriptorClassToName(back_descriptor)); in DumpMethod() local 1208 fprintf(out_file_, "<constructor name=\"%s\"\n", dot.c_str()); in DumpMethod() 1209 dot = DescriptorToDot(back_descriptor); in DumpMethod() 1210 fprintf(out_file_, " type=\"%s\"\n", dot.c_str()); in DumpMethod() 1218 std::string dot(DescriptorToDot(return_type + 1)); in DumpMethod() local 1219 fprintf(out_file_, " return=\"%s\"\n", dot.c_str()); in DumpMethod() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/proguard/ |
D | ProguardMap.java | 440 int dot = filename.lastIndexOf('.'); in getFileName() local 441 if (dot != -1) { in getFileName() 442 filename = filename.substring(dot + 1); in getFileName()
|
/art/profman/ |
D | profman.cc | 883 std::string dot; in ReadCommentedInputStream() local 884 std::getline(in_stream, dot); in ReadCommentedInputStream() 885 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream() 889 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream() 892 output->insert(output->end(), dot); in ReadCommentedInputStream()
|
/art/dex2oat/ |
D | dex2oat.cc | 2941 std::string dot; in ReadCommentedInputStream() local 2942 std::getline(in_stream, dot); in ReadCommentedInputStream() 2943 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream() 2947 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream() 2950 output->insert(output->end(), dot); in ReadCommentedInputStream()
|
/art/oatdump/ |
D | oatdump.cc | 3353 std::string dot; in ReadCommentedInputStream() local 3354 std::getline(in_stream, dot); in ReadCommentedInputStream() 3355 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream() 3358 output.push_back(dot); in ReadCommentedInputStream()
|