HomeSort by relevance Sort by last modified time
    Searched defs:compiled_methods (Results 1 - 2 of 2) sorted by null

  /art/compiler/debug/
debug_info.h 33 ArrayRef<const MethodDebugInfo> compiled_methods; member in struct:art::debug::DebugInfo
39 return compiled_methods.empty() && dex_files.empty();
  /art/compiler/driver/
compiled_method_storage_test.cc 61 std::vector<CompiledMethod*> compiled_methods; local
62 compiled_methods.reserve(1u << 4);
67 compiled_methods.push_back(CompiledMethod::SwapAllocCompiledMethod(
77 CHECK_EQ(compiled_methods.size(), 1u << 4);
78 for (size_t i = 0; i != compiled_methods.size(); ++i) {
79 for (size_t j = 0; j != compiled_methods.size(); ++j) {
80 CompiledMethod* lhs = compiled_methods[i];
81 CompiledMethod* rhs = compiled_methods[j];
96 for (CompiledMethod* method : compiled_methods) {

Completed in 411 milliseconds