Home
last modified time | relevance | path

Searched refs:dot (Results 1 – 8 of 8) sorted by relevance

/art/test/684-checker-simd-dotprod/
Dinfo.txt1 Functional tests on dot product idiom SIMD vectorization.
/art/tools/
Danalyze-init-failures.py78 (root_err_class,dot,root_method_name) = left_of_paren.rpartition('.')
97 (err_class,dot,err_method_name) = left_of_paren.rpartition('.')
/art/dexdump/
Ddexdump.cc760 std::unique_ptr<char[]> dot(descriptorToDot(interfaceName)); in dumpInterface() local
761 fprintf(gOutFile, "<implements name=\"%s\">\n</implements>\n", dot.get()); in dumpInterface()
1178 std::unique_ptr<char[]> dot(descriptorToDot(backDescriptor)); in dumpBytecodes() local
1180 codeOffset, codeOffset, dot.get(), name, signature.ToString().c_str()); in dumpBytecodes()
1305 std::unique_ptr<char[]> dot(descriptorClassToName(backDescriptor)); in dumpMethod() local
1306 fprintf(gOutFile, "<constructor name=\"%s\"\n", dot.get()); in dumpMethod()
1307 dot = descriptorToDot(backDescriptor); in dumpMethod()
1308 fprintf(gOutFile, " type=\"%s\"\n", dot.get()); in dumpMethod()
1316 std::unique_ptr<char[]> dot(descriptorToDot(returnType + 1)); in dumpMethod() local
1317 fprintf(gOutFile, " return=\"%s\"\n", dot.get()); in dumpMethod()
[all …]
/art/dexlayout/
Ddexlayout.cc776 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()
1210 std::string dot(DescriptorClassToName(back_descriptor)); in DumpMethod() local
1211 fprintf(out_file_, "<constructor name=\"%s\"\n", dot.c_str()); in DumpMethod()
1212 dot = DescriptorToDot(back_descriptor); in DumpMethod()
1213 fprintf(out_file_, " type=\"%s\"\n", dot.c_str()); in DumpMethod()
1221 std::string dot(DescriptorToDot(return_type + 1)); in DumpMethod() local
1222 fprintf(out_file_, " return=\"%s\"\n", dot.c_str()); in DumpMethod()
[all …]
/art/tools/ahat/src/main/com/android/ahat/proguard/
DProguardMap.java440 int dot = filename.lastIndexOf('.'); in getFileName() local
441 if (dot != -1) { in getFileName()
442 filename = filename.substring(dot + 1); in getFileName()
/art/profman/
Dprofman.cc883 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/
Ddex2oat.cc2945 std::string dot; in ReadCommentedInputStream() local
2946 std::getline(in_stream, dot); in ReadCommentedInputStream()
2947 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
2951 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream()
2954 output->insert(output->end(), dot); in ReadCommentedInputStream()
/art/oatdump/
Doatdump.cc3367 std::string dot; in ReadCommentedInputStream() local
3368 std::getline(in_stream, dot); in ReadCommentedInputStream()
3369 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
3372 output.push_back(dot); in ReadCommentedInputStream()