Home
last modified time | relevance | path

Searched refs:location_ (Results 1 – 12 of 12) sorted by relevance

/art/compiler/
Doutput_stream.h37 explicit OutputStream(const std::string& location) : location_(location) {} in OutputStream()
42 return location_; in GetLocation()
50 const std::string location_;
/art/runtime/
Ddex_file_verifier.h38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location), in DexFileVerifier()
117 const char* const location_; variable
Doat_file.h85 return location_; in GetLocation()
319 const std::string location_; variable
Ddex_file.h407 return location_; in GetLocation()
423 size_t pos = location_.rfind(kMultiDexSeparator); in GetBaseLocation()
425 return location_; in GetBaseLocation()
427 return location_.substr(0, pos); in GetBaseLocation()
967 const std::string location_; variable
Doat_file.cc145 : location_(location), begin_(NULL), end_(NULL), is_executable_(is_executable), in OatFile()
148 CHECK(!location_.empty()); in OatFile()
Ddex_file.cc350 location_(location), in DexFile()
Ddex_file_verifier.cc2110 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_); in ErrorStringPrintf()
Dclass_linker_test.cc574 …offsets.push_back(CheckOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "loc… in DexCacheOffsets()
/art/runtime/mirror/
Ddex_cache.h59 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); in GetLocation()
160 HeapReference<String> location_; variable
Ddex_cache.cc48 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location); in Init()
/art/compiler/utils/arm/
Dassembler_thumb2.h506 assembler_(assembler), type_(type), location_(location), in assembler_()
515 assembler_(assembler), type_(type), location_(location), in Branch()
524 assembler_(assembler), type_(type), location_(location), in assembler_()
551 location_ += delta; in Move()
560 if (location_ > oldlocation) { in Relocate()
561 location_ += delta; in Relocate()
589 return location_; in GetLocation()
625 int32_t delta = target_ - location_ - 4; in CalculateSize()
662 uint32_t location_; // Offset into assembler buffer in bytes. variable
Dassembler_thumb2.cc1172 int32_t offset = target_ - location_; in Emit()
1201 buffer->Store<int16_t>(location_, static_cast<int16_t>(encoding >> 16)); in Emit()
1202 buffer->Store<int16_t>(location_+2, static_cast<int16_t>(encoding & 0xffff)); in Emit()
1214 buffer->Store<int16_t>(location_, encoding); in Emit()
1226 buffer->Store<int16_t>(location_, encoding); in Emit()