Home
last modified time | relevance | path

Searched refs:first (Results 26 – 50 of 226) sorted by relevance

12345678910

/art/runtime/
Dimtable_test.cc82 classes.first->FindDeclaredVirtualMethodByName(method_name, pointer_size); in LoadMethods()
94 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second)); in TEST_F()
101 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second)); in TEST_F()
Dreference_table.cc166 int first = count - kLast; in Dump() local
167 if (first < 0) { in Dump()
168 first = 0; in Dump()
170 os << " Last " << (count - first) << " entries (of " << count << "):\n"; in Dump()
172 for (int idx = count - 1; idx >= first; --idx) { in Dump()
222 GcRoot<mirror::Object>& stack_for_object = it->first; in Dump()
/art/runtime/gc/collector/
Dgarbage_collector.cc105 return std::less()(a.first, b.first); in ExtractRssFromMincore()
115 if (it->second == next_it->first) { in ExtractRssFromMincore()
122 size_t length = static_cast<uint8_t*>(it->second) - static_cast<uint8_t*>(it->first); in ExtractRssFromMincore()
128 size_t length = static_cast<uint8_t*>(it.second) - static_cast<uint8_t*>(it.first); in ExtractRssFromMincore()
129 if (mincore(it.first, length, vec.get()) == 0) { in ExtractRssFromMincore()
136 LOG(WARNING) << "Call to mincore() on memory range [0x" << std::hex << it.first in ExtractRssFromMincore()
/art/test/1906-suspend-list-me-first/
Dexpected.txt1 Second thread suspended before first thread suspended self!
Dinfo.txt1 Test jvmti SuspendThreadList with the current thread as the first thread in the list.
DAndroid.bp3 name: "art-run-test-1906-suspend-list-me-first",
/art/dex2oat/linker/x86_64/
Drelative_patcher_x86_64_test.cc38 CHECK(result.first); in GetMethodOffset()
119 ASSERT_TRUE(result.first); in TEST_F()
143 ASSERT_TRUE(result.first); in TEST_F()
167 ASSERT_TRUE(result.first); in TEST_F()
/art/dex2oat/linker/x86/
Drelative_patcher_x86_test.cc34 CHECK(result.first); in GetMethodOffset()
99 ASSERT_TRUE(result.first); in TEST_F()
130 ASSERT_TRUE(result.first); in TEST_F()
162 ASSERT_TRUE(result.first); in TEST_F()
/art/runtime/interpreter/
Dlock_count_data.cc97 mirror::Object* first = (*monitors_)[0]; in CheckAllMonitorsReleasedOrThrow() local
100 mirror::Object::PrettyTypeOf(first).c_str()); in CheckAllMonitorsReleasedOrThrow()
/art/test/504-regression-baseline-entry/smali/
DTest.smali24 :first
29 goto :first
/art/test/676-proxy-jit-at-first-use/
Dinfo.txt1 Regression test for "jit at first use" (-Xjitthreshold:0) crash for proxy methods. b/73718713
DAndroid.bp3 name: "art-run-test-676-proxy-jit-at-first-use",
/art/test/680-checker-deopt-dex-pc-0/
Dinfo.txt2 for JIT-at-first-use.
/art/test/596-checker-dead-phi/
Dinfo.txt2 phi with its first incoming input.
/art/test/596-monitor-inflation/
Dexpected.txt4 Finished first check
/art/libartbase/base/
Diteration_range.h35 IterationRange(iterator first, iterator last) : first_(first), last_(last) { } in IterationRange() argument
Dmalloc_arena_pool.h31 void FreeArenaChain(Arena* first) override;
/art/test/509-pre-header/
Dinfo.txt3 first predecessor was not preserved.
/art/test/1980-obsolete-object-cleared/src/
DMain.java258 private boolean first;
265 first = false;
270 if (first) {
271 first = false;
291 first = true;
/art/test/674-hiddenapi/
Dinfo.txt2 two JARs. The first (parent) defines methods and fields and the second (child)
4 Note that the first is compiled twice - once with and once without hidden access
/art/libdexfile/dex/
Dutf_test.cc181 const std::vector<uint16_t>& prefix_in = prefix.first; in TEST_F()
184 const std::vector<uint16_t>& test_in = test.first; in TEST_F()
187 const std::vector<uint16_t>& suffix_in = suffix.first; in TEST_F()
311 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { in codePointToSurrogatePair() argument
312 first = (code_point >> 10) + 0xd7c0; in codePointToSurrogatePair()
/art/compiler/utils/
Dassembler.h333 result.first.swap(opcodes_); in ReleaseStreamAndPrepareForDelayedAdvancePC()
344 void AppendRawData(const std::vector<uint8_t>& raw_data, size_t first, size_t last) { in AppendRawData() argument
345 DCHECK_LE(0u, first); in AppendRawData()
346 DCHECK_LE(first, last); in AppendRawData()
348 opcodes_.insert(opcodes_.end(), raw_data.begin() + first, raw_data.begin() + last); in AppendRawData()
/art/test/606-erroneous-class/jasmin-multidex/
DClassA.j21 ; Obtain the ErrClass type from Dex cache of the first Dex file. Note that
22 ; because the first Dex file has already been verified, we know the class
/art/test/1962-multi-thread-events/
Dinfo.txt4 deoptimization count if it was the first thread of a particular event type to be activated. This
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h157 bool first = true; in DumpHelp() local
159 os << (first ? "{" : "|") << val; in DumpHelp()
160 first = false; in DumpHelp()
375 const TokenRange* best_match_arg_def = closest_match_res.first; in ParseArgument()
452 const char* name = value_pair.first; in ParseArgumentSingle()
462 const char* name = value_pair.first; in ParseArgumentSingle()

12345678910