Searched defs:prefix (Results 1 - 11 of 11) sorted by relevance

/art/runtime/base/
H A Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) argument
34 prefix_(prefix) {
H A Dbit_vector.cc329 void BitVector::Dump(std::ostream& os, const char *prefix) const {
331 DumpHelper(prefix, buffer);
335 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { argument
337 if (prefix != nullptr) {
338 buffer << prefix; local
/art/compiler/optimizing/
H A Dliveness_test.cc37 const char* prefix) {
38 buffer << prefix; local
34 DumpBitVector(BitVector* vector, std::ostream& buffer, size_t count, const char* prefix) argument
/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java31 static private void printAnnotationArray(String prefix, Annotation[] arr) { argument
40 System.out.println(prefix + " " + a);
41 System.out.println(prefix + " " + a.annotationType());
/art/dexlayout/
H A Ddex_visualize.cc38 static std::string MultidexName(const std::string& prefix, argument
41 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix;
/art/runtime/
H A Dnative_stack_dump.cc62 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { argument
63 if (prefix != nullptr) {
64 os << prefix; local
135 const char* prefix,
187 WritePrefix(os, prefix, (*pipe)->odd);
216 const char* prefix,
227 Drain(0, prefix, pipe, os);
259 Drain(2U, prefix, pipe, os);
285 const char* prefix,
301 os << prefix << "(backtrac
134 Drain(size_t expected, const char* prefix, std::unique_ptr<Addr2linePipe>* pipe , std::ostream& os) argument
213 Addr2line(const std::string& map_src, uintptr_t offset, std::ostream& os, const char* prefix, std::unique_ptr<Addr2linePipe>* pipe ) argument
282 DumpNativeStack(std::ostream& os, pid_t tid, BacktraceMap* existing_map, const char* prefix, ArtMethod* current_method, void* ucontext_ptr) argument
371 DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) argument
397 os << prefix; local
[all...]
H A Dmonitor.cc272 const char* prefix = is_wait ? "Waiting on " : "Locking "; local
287 prefix,
/art/disassembler/
H A Ddisassembler_x86.cc163 uint8_t* prefix, bool load, RegFile src_reg_file,
229 prefix[2], load ? src_reg_file : dst_reg_file);
281 uint8_t prefix[4] = {0, 0, 0, 0}; local
288 prefix[0] = *instr;
297 prefix[1] = *instr;
301 prefix[2] = *instr;
305 prefix[3] = *instr;
405 // In 32-bit mode (!supports_rex_) this is ARPL, with no REX prefix the functionality is the
441 if (prefix[0] == 0xF2) {
443 prefix[
161 DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w, bool no_ops, bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load, RegFile src_reg_file, RegFile dst_reg_file, const uint8_t** instr, uint32_t* address_bits) argument
[all...]
/art/tools/jfuzz/
H A Djfuzz.cc295 const char* prefix = tp == kLong ? "Long" : "Integer"; local
297 case 1: fprintf(out_, "%s.highestOneBit", prefix); break;
298 case 2: fprintf(out_, "%s.lowestOneBit", prefix); break;
299 case 3: fprintf(out_, "%s.numberOfLeadingZeros", prefix); break;
300 case 4: fprintf(out_, "%s.numberOfTrailingZeros", prefix); break;
301 case 5: fprintf(out_, "%s.bitCount", prefix); break;
302 case 6: fprintf(out_, "%s.signum", prefix); break;
303 case 7: fprintf(out_, "%s.reverse", prefix); break;
304 case 8: fprintf(out_, "%s.reverseBytes", prefix); break;
340 const char* prefix local
355 const char* prefix = tp == kDouble ? "Double" : "Float"; local
421 const char* prefix = tp == kLong ? "Long" : "Integer"; local
427 const char* prefix = tp == kDouble ? "Double" : "Float"; local
[all...]
/art/dex2oat/
H A Ddex2oat.cc979 // Get the prefix, which is the primary image name (without path components). Strip the
981 std::string prefix = base_img.substr(last_img_slash + 1); local
982 if (prefix.rfind('.') != std::string::npos) {
983 prefix = prefix.substr(0, prefix.rfind('.'));
985 if (!prefix.empty()) {
986 prefix = prefix + "-";
1026 std::string image_name = CreateMultiImageName(dex_locations_[i], prefix, infi
1047 CreateMultiImageName(std::string in, const std::string& prefix, const std::string& infix, const char* replace_suffix) argument
[all...]
/art/runtime/openjdkjvmti/include/
H A Djvmti.h1393 const char* prefix);
2345 jvmtiError SetNativeMethodPrefix(const char* prefix) { argument
2346 return functions->SetNativeMethodPrefix(this, prefix);

Completed in 746 milliseconds