/art/test/626-const-class-linking/ |
D | expected.txt | 2 first: Helper1 class loader: DelegatingLoader 4 first: Helper1 class loader: DelegatingLoader 7 first: Helper1 class loader: DelegatingLoader 9 first: Helper2 class loader: DelegatingLoader 12 first: Helper1 class loader: RacyLoader 14 first: Helper1 class loader: RacyLoader 16 first: Helper1 class loader: RacyLoader 18 first: Helper1 class loader: RacyLoader 24 first: Helper1 class loader: RacyLoader 26 first: Helper1 class loader: RacyLoader [all …]
|
/art/test/626-const-class-linking/src/ |
D | ClassPair.java | 18 public Class<?> first; field in ClassPair 21 public ClassPair(Class<?> first, Class<?> second) { in ClassPair() argument 22 this.first = first; in ClassPair() 27 String first_loader_name = first.getClassLoader().getClass().getName(); in print() 28 System.out.println("first: " + first.getName() + " class loader: " + first_loader_name); in print()
|
/art/libartbase/base/ |
D | bit_vector_test.cc | 146 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST() local 152 bool changed = first.UnionIfNotIn(&second, &third); in TEST() 153 EXPECT_EQ(0u, first.NumSetBits()); in TEST() 158 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST() local 163 bool changed = first.UnionIfNotIn(&second, &third); in TEST() 164 EXPECT_EQ(1u, first.NumSetBits()); in TEST() 166 EXPECT_TRUE(first.IsBitSet(64)); in TEST() 172 BitVector first(2, true, Allocator::GetMallocAllocator()); in TEST() local 175 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST() 177 EXPECT_TRUE(first.IsSubsetOf(&second)); in TEST() [all …]
|
D | malloc_arena_pool.cc | 134 void MallocArenaPool::FreeArenaChain(Arena* first) { in FreeArenaChain() argument 136 for (Arena* arena = first; arena != nullptr; arena = arena->next_) { in FreeArenaChain() 143 while (first != nullptr) { in FreeArenaChain() 144 Arena* next = first->next_; in FreeArenaChain() 145 delete first; in FreeArenaChain() 146 first = next; in FreeArenaChain() 151 if (first != nullptr) { in FreeArenaChain() 152 Arena* last = first; in FreeArenaChain() 158 free_arenas_ = first; in FreeArenaChain()
|
D | hash_map.h | 32 return fn_(pair.first); in operator() 40 return fn_(a.first, b.first); in operator() 44 return fn_(a.first, element); in operator() 58 return item.first == Key(); in IsEmpty()
|
D | intrusive_forward_list.h | 149 IntrusiveForwardList(InputIterator first, InputIterator last) : IntrusiveForwardList() { in IntrusiveForwardList() argument 150 insert_after(before_begin(), first, last); in IntrusiveForwardList() 184 void assign(InputIterator first, InputIterator last) { in assign() argument 185 IntrusiveForwardList tmp(first, last); in assign() 202 iterator insert_after(const_iterator position, InputIterator first, InputIterator last) { in insert_after() argument 203 while (first != last) { in insert_after() 204 position = insert_after(position, *first++); in insert_after() 253 const_iterator first, in splice_after() argument 256 DCHECK(first != last); in splice_after() 257 if (++const_iterator(first) == last) { in splice_after() [all …]
|
D | dchecked_vector.h | 69 dchecked_vector(InputIterator first, 72 : Base(first, last, alloc) { } in Base() argument 159 iterator insert(const_iterator position, InputIterator first, InputIterator last) { in insert() argument 161 return Base::insert(position, first, last); in insert() 177 iterator erase(const_iterator first, const_iterator last) { in erase() argument 178 DCHECK(cbegin() <= first && first <= cend()); in erase() 179 DCHECK(first <= last && last <= cend()); in erase() 180 return Base::erase(first, last); in erase()
|
D | safe_map.h | 101 return result.first; in Put() 106 return result.first; in Put() 112 DCHECK(pos == map_.end() || map_.key_comp()(k, pos->first)); in PutBefore() 113 DCHECK(pos == map_.begin() || map_.key_comp()((--const_iterator(pos))->first, k)); in PutBefore() 118 DCHECK(pos == map_.end() || map_.key_comp()(k, pos->first)); in PutBefore() 119 DCHECK(pos == map_.begin() || map_.key_comp()((--const_iterator(pos))->first, k)); in PutBefore() 130 result.first->second = v; in Overwrite() 132 return result.first; in Overwrite() 140 if (lb != end() && !key_comp()(k, lb->first)) { in GetOrCreate()
|
/art/runtime/base/ |
D | mem_map_arena_pool.cc | 137 void MemMapArenaPool::FreeArenaChain(Arena* first) { in FreeArenaChain() argument 139 for (Arena* arena = first; arena != nullptr; arena = arena->next_) { in FreeArenaChain() 146 while (first != nullptr) { in FreeArenaChain() 147 Arena* next = first->next_; in FreeArenaChain() 148 delete first; in FreeArenaChain() 149 first = next; in FreeArenaChain() 154 if (first != nullptr) { in FreeArenaChain() 155 Arena* last = first; in FreeArenaChain() 161 free_arenas_ = first; in FreeArenaChain()
|
/art/test/170-interface-init/src/ |
D | Main.java | 28 final CountDownLatch first = new CountDownLatch(1); in main() local 35 first.countDown(); in main() 44 first.await(); in main()
|
/art/compiler/optimizing/ |
D | pretty_printer.h | 46 bool first = true; in PrintPostInstruction() local 48 if (first) { in PrintPostInstruction() 49 first = false; in PrintPostInstruction() 59 bool first = true; in PrintPostInstruction() local 61 if (first) { in PrintPostInstruction() 62 first = false; in PrintPostInstruction()
|
D | dead_code_elimination.cc | 243 HInstruction* first = block->GetFirstInstruction(); in SimplifyAlwaysThrows() local 246 if (first->AlwaysThrows() && in SimplifyAlwaysThrows() 247 first->GetNext() == last && in SimplifyAlwaysThrows() 327 HInstruction* first = block->GetFirstInstruction(); in SimplifyIfs() local 332 bool has_only_phi_and_if = (last == first) && (last->InputAt(0) == block->GetFirstPhi()); in SimplifyIfs() 335 first->IsCondition() && in SimplifyIfs() 336 HasInput(first->AsCondition(), block->GetFirstPhi()) && in SimplifyIfs() 337 (first->GetNext() == last) && in SimplifyIfs() 338 (last->InputAt(0) == first) && in SimplifyIfs() 339 first->HasOnlyOneNonEnvironmentUse(); in SimplifyIfs() [all …]
|
/art/libdexfile/dex/ |
D | test_dex_file_builder.h | 43 auto it = strings_.emplace(str, IdxAndDataOffset()).first; in AddString() 44 CHECK_LT(it->first.length(), 128u); // Don't allow multi-byte length in uleb128. in AddString() 75 auto it = protos_.emplace(proto_key, IdxAndDataOffset()).first; in AddMethod() 76 const ProtoKey* proto = &it->first; // Valid as long as the element remains in protos_. in AddMethod() 110 data_section_size += entry.first.length() + 1u /* length */ + 1u /* null-terminator */; in Build() 129 size_t num_args = entry.first.args.size(); in Build() 171 CHECK_LT(entry.first.size(), 128u); in Build() 173 dex_file_data_[raw_offset] = static_cast<uint8_t>(entry.first.size()); in Build() 174 std::memcpy(&dex_file_data_[raw_offset + 1], entry.first.c_str(), entry.first.size() + 1); in Build() 179 Write32(type_ids_offset + entry.second * sizeof(dex::TypeId), GetStringIdx(entry.first)); in Build() [all …]
|
/art/test/597-deopt-new-string/ |
D | deopt.cc | 39 static bool first = true; in Java_Main_deoptimizeAll() local 40 if (first) { in Java_Main_deoptimizeAll() 43 first = false; in Java_Main_deoptimizeAll()
|
/art/tools/dexfuzz/src/dexfuzz/ |
D | MutationStats.java | 62 boolean first = true; in getStatsString() 64 if (!first) { in getStatsString() 67 first = false; in getStatsString()
|
/art/runtime/ |
D | cha_test.cc | 48 ASSERT_EQ(dependents[0].first, METHOD2); in TEST_F() 56 ASSERT_EQ(dependents[0].first, METHOD2); in TEST_F() 58 ASSERT_EQ(dependents[1].first, METHOD3); in TEST_F() 68 ASSERT_EQ(dependents[0].first, METHOD3); in TEST_F() 84 ASSERT_EQ(dependents[0].first, METHOD1); in TEST_F()
|
/art/test/092-locale/ |
D | expected.txt | 2 USA: first=1, name=Sunday 4 France: first=2, name=lundi
|
/art/tools/jvmti-agents/chain-agents/ |
D | chainagents.cc | 57 std::string first(source.substr(0, source.find(delim))); in Split() local 59 return std::pair(first, ""); in Split() 61 return std::pair(first, source.substr(source.find(delim) + 1)); in Split() 70 void* handle = dlopen(lib_and_args.first.c_str(), RTLD_LAZY); in Load() 108 PLOG(WARNING) << "Failed to load library " << lib_and_args.first in AgentStart()
|
/art/runtime/verifier/ |
D | class_verifier.cc | 88 VLOG(verifier_debug) << "Setting " << it.first->PrettyMethod() << " count locks to " in ReverifyClass() 91 it.first->SetMustCountLocks(); in ReverifyClass() 93 it.first->ClearMustCountLocks(); in ReverifyClass() 95 if (skip_access_checks && it.first->IsInvokable() && !it.first->IsNative()) { in ReverifyClass() 96 it.first->SetSkipAccessChecks(); in ReverifyClass() 100 VLOG(verifier_debug) << "Setting " << it.first->PrettyMethod() << " dont-compile to " in ReverifyClass() 103 it.first->SetDontCompile(); in ReverifyClass() 105 it.first->ClearDontCompile(); in ReverifyClass()
|
/art/libelffile/dwarf/ |
D | debug_abbrev_writer.h | 70 uint32_t abbrev_code = it.first->second; in EndAbbrev() 72 const Vector& abbrev = it.first->first; in EndAbbrev()
|
/art/tools/veridex/ |
D | hidden_api_finder.cc | 178 const auto& name = pair.first; in Dump() 182 hiddenapi::ApiList api_list = hidden_api_.GetApiList(pair.first); in Dump() 184 os << "#" << ++stats->count << ": Linking " << api_list << " " << pair.first << " use(s):"; in Dump() 194 const auto& name = pair.first; in Dump() 198 hiddenapi::ApiList api_list = hidden_api_.GetApiList(pair.first); in Dump() 202 os << "#" << ++stats->count << ": Linking " << api_list << " " << pair.first << " use(s):"; in Dump() 247 os << kPrefix << pair.first; in DumpReferences()
|
/art/tools/ |
D | host_bcp.sh | 20 host_bcp <image> [--use-first-dir] | xargs <art-host-tool> ... 26 If --use-first-dir is specified, the script will use the first apex dir instead
|
/art/libprofile/profile/ |
D | profile_boot_info_test.cc | 61 ASSERT_EQ(loaded_info.GetMethods()[0].first, 0u); in TEST_F() 86 ASSERT_EQ(loaded_info.GetMethods()[0].first, 0u); in TEST_F() 88 ASSERT_EQ(loaded_info.GetMethods()[1].first, 1u); in TEST_F() 90 ASSERT_EQ(loaded_info.GetMethods()[2].first, 1u); in TEST_F()
|
/art/profman/ |
D | boot_image_profile.cc | 237 profile_methods.Put(BootImageRepresentation(it.first), metadata); in GenerateBootImageProfile() 242 const TypeReference& type_ref = it.first; in GenerateBootImageProfile() 248 profile_classes.Put(BootImageRepresentation(it.first), it.second); in GenerateBootImageProfile() 250 std::string preloaded_class_representation = PreloadedClassesRepresentation(it.first); in GenerateBootImageProfile() 264 profile_content += ClassToProfileFormat(it.first, it.second, options.append_package_use_list) in GenerateBootImageProfile() 268 profile_content += MethodToProfileFormat(it.first, it.second, options.append_package_use_list) in GenerateBootImageProfile() 275 ClassToProfileFormat(it.first, it.second, options.append_package_use_list) + "\n"; in GenerateBootImageProfile()
|
/art/test/996-breakpoint-obsolete/ |
D | expected.txt | 3 Should be after first breakpoint. 9 Should be after first breakpoint.
|