Searched refs:location_ (Results 1 – 12 of 12) sorted by relevance
/art/compiler/ |
D | output_stream.h | 37 explicit OutputStream(const std::string& location) : location_(location) {} in OutputStream() 42 return location_; in GetLocation() 50 const std::string location_;
|
/art/runtime/ |
D | dex_file_verifier.h | 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location), in DexFileVerifier() 117 const char* const location_; variable
|
D | oat_file.h | 85 return location_; in GetLocation() 319 const std::string location_; variable
|
D | dex_file.h | 407 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
|
D | oat_file.cc | 145 : location_(location), begin_(NULL), end_(NULL), is_executable_(is_executable), in OatFile() 148 CHECK(!location_.empty()); in OatFile()
|
D | dex_file.cc | 350 location_(location), in DexFile()
|
D | dex_file_verifier.cc | 2110 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_); in ErrorStringPrintf()
|
D | class_linker_test.cc | 574 …offsets.push_back(CheckOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "loc… in DexCacheOffsets()
|
/art/runtime/mirror/ |
D | dex_cache.h | 59 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); in GetLocation() 160 HeapReference<String> location_; variable
|
D | dex_cache.cc | 48 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location); in Init()
|
/art/compiler/utils/arm/ |
D | assembler_thumb2.h | 506 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
|
D | assembler_thumb2.cc | 1172 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()
|