Home
last modified time | relevance | path

Searched refs:dot (Results 1 – 7 of 7) 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.cc721 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/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.cc786 std::string dot; in ReadCommentedInputStream() local
787 std::getline(in_stream, dot); in ReadCommentedInputStream()
788 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
792 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream()
795 output->insert(output->end(), dot); in ReadCommentedInputStream()
/art/dex2oat/
Ddex2oat.cc2677 std::string dot; in ReadCommentedInputStream() local
2678 std::getline(in_stream, dot); in ReadCommentedInputStream()
2679 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
2683 std::string descriptor((*process)(dot.c_str())); in ReadCommentedInputStream()
2686 output->insert(output->end(), dot); in ReadCommentedInputStream()
/art/oatdump/
Doatdump.cc3335 std::string dot; in ReadCommentedInputStream() local
3336 std::getline(in_stream, dot); in ReadCommentedInputStream()
3337 if (android::base::StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
3340 output.push_back(dot); in ReadCommentedInputStream()