/art/disassembler/ |
D | disassembler_x86.cc | 173 uint8_t* prefix, bool load, RegFile src_reg_file, in DumpAddress() argument 239 prefix[2], load ? src_reg_file : dst_reg_file); in DumpAddress() 291 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local 298 prefix[0] = *instr; in DumpInstruction() 307 prefix[1] = *instr; in DumpInstruction() 311 prefix[2] = *instr; in DumpInstruction() 315 prefix[3] = *instr; in DumpInstruction() 456 if (prefix[0] == 0xF2) { in DumpInstruction() 458 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction() 459 } else if (prefix[0] == 0xF3) { in DumpInstruction() [all …]
|
D | disassembler_x86.h | 40 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
|
/art/runtime/ |
D | hidden_api_test.cc | 245 std::string prefix("L"); in TEST_F() local 246 ASSERT_TRUE(MemberSignature(class1_field1_).DoesPrefixMatch(prefix)); in TEST_F() 247 ASSERT_TRUE(MemberSignature(class1_field12_).DoesPrefixMatch(prefix)); in TEST_F() 248 ASSERT_TRUE(MemberSignature(class1_init_).DoesPrefixMatch(prefix)); in TEST_F() 249 ASSERT_TRUE(MemberSignature(class1_method1_).DoesPrefixMatch(prefix)); in TEST_F() 250 ASSERT_TRUE(MemberSignature(class1_method1_i_).DoesPrefixMatch(prefix)); in TEST_F() 251 ASSERT_TRUE(MemberSignature(class12_field1_).DoesPrefixMatch(prefix)); in TEST_F() 252 ASSERT_TRUE(MemberSignature(class12_method1_).DoesPrefixMatch(prefix)); in TEST_F() 253 ASSERT_TRUE(MemberSignature(class1_method12_).DoesPrefixMatch(prefix)); in TEST_F() 254 ASSERT_TRUE(MemberSignature(class2_field1_).DoesPrefixMatch(prefix)); in TEST_F() [all …]
|
D | native_stack_dump.cc | 84 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument 85 if (prefix != nullptr) { in WritePrefix() 86 os << prefix; in WritePrefix() 157 const char* prefix, in Drain() argument 206 WritePrefix(os, prefix, (*pipe)->odd); in Drain() 235 const char* prefix, in Addr2line() argument 253 Drain(0, prefix, pipe, os); in Addr2line() 286 Drain(2U, prefix, pipe, os); in Addr2line() 323 const char* prefix, in DumpNativeStack() argument 338 os << prefix << "(backtrace::Unwind failed for thread " << tid in DumpNativeStack() [all …]
|
D | aot_class_linker.cc | 212 std::string prefix = 'L' + package + '/'; in SetUpdatableBootClassPackages() local 213 std::replace(prefix.begin(), prefix.end(), '.', '/'); in SetUpdatableBootClassPackages() 214 prefixes.push_back(std::move(prefix)); in SetUpdatableBootClassPackages() 238 for (const std::string& prefix : updatable_boot_class_path_descriptor_prefixes_) { in IsUpdatableBootClassPathDescriptor() local 239 if (StartsWith(descriptor_sv, prefix)) { in IsUpdatableBootClassPathDescriptor()
|
D | native_stack_dump.h | 36 const char* prefix = "",
|
D | hidden_api.cc | 205 bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const { in DoesPrefixMatch() 208 size_t count = std::min(prefix.length() - pos, strlen(part)); in DoesPrefixMatch() 209 if (prefix.compare(pos, count, part, 0, count) == 0) { in DoesPrefixMatch() 217 return pos == prefix.length(); in DoesPrefixMatch()
|
D | entrypoints_order_test.cc | 48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument 49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, /* NOLINT */ \ 50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
|
/art/tools/checker/file_format/checker/ |
D | parser.py | 25 def __extractLine(prefix, line, arch = None, debuggable = False): argument 37 prefix + arch_specifier + dbg_specifier + r":" 47 def __preprocessLineForStart(prefix, line, targetArch): argument 55 if prefix in line: 73 def __processLine(line, lineNo, prefix, fileName, targetArch): argument 87 sline = __preprocessLineForStart(prefix + "-START", line, targetArch) 89 startLine = __extractLine(prefix + "-START", sline, arch, debuggable) 94 plainLine = __extractLine(prefix, line) 99 nextLine = __extractLine(prefix + "-NEXT", line) 104 dagLine = __extractLine(prefix + "-DAG", line) [all …]
|
/art/libartbase/base/ |
D | string_view_cpp20.h | 30 inline bool StartsWith(std::string_view sv, std::string_view prefix) { in StartsWith() argument 31 return sv.substr(0u, prefix.size()) == prefix; in StartsWith()
|
D | hex_dump.h | 32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument 34 prefix_(prefix) { in HexDump()
|
D | bit_vector.cc | 329 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump() 331 DumpHelper(prefix, buffer); in Dump() 335 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument 337 if (prefix != nullptr) { in DumpHelper() 338 buffer << prefix; in DumpHelper()
|
D | common_art_test.cc | 439 std::string prefix = host_dir; in GetLibCoreDexLocations() local 440 CHECK(!prefix.empty()); in GetLibCoreDexLocations() 441 if (prefix.back() != '/') { in GetLibCoreDexLocations() 442 prefix += '/'; in GetLibCoreDexLocations() 445 CHECK_GT(location.size(), prefix.size()); in GetLibCoreDexLocations() 446 CHECK_EQ(location.compare(0u, prefix.size(), prefix), 0); in GetLibCoreDexLocations() 447 location.erase(0u, prefix.size()); in GetLibCoreDexLocations()
|
D | bit_vector.h | 260 void Dump(std::ostream& os, const char* prefix) const; 269 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
|
/art/tools/jfuzz/ |
D | jfuzz.cc | 321 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic1() local 323 case 1: fprintf(out_, "%s.highestOneBit", prefix); break; in emitIntrinsic1() 324 case 2: fprintf(out_, "%s.lowestOneBit", prefix); break; in emitIntrinsic1() 325 case 3: fprintf(out_, "%s.numberOfLeadingZeros", prefix); break; in emitIntrinsic1() 326 case 4: fprintf(out_, "%s.numberOfTrailingZeros", prefix); break; in emitIntrinsic1() 327 case 5: fprintf(out_, "%s.bitCount", prefix); break; in emitIntrinsic1() 328 case 6: fprintf(out_, "%s.signum", prefix); break; in emitIntrinsic1() 329 case 7: fprintf(out_, "%s.reverse", prefix); break; in emitIntrinsic1() 330 case 8: fprintf(out_, "%s.reverseBytes", prefix); break; in emitIntrinsic1() 366 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic2() local [all …]
|
/art/tools/golem/ |
D | env | 65 local prefix="$2" 68 echo >&$out_fd "${prefix}${target}"
|
/art/tools/signal_dumper/ |
D | signal_dumper.cc | 192 void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument 193 if (prefix != nullptr) { in WritePrefix() 194 os << prefix; in WritePrefix() 203 const char* prefix, in Drain() argument 252 WritePrefix(os, prefix, (*pipe)->odd); in Drain() 279 const char* prefix, in Addr2line() argument 292 Drain(0, prefix, pipe, os); in Addr2line() 324 Drain(2U, prefix, pipe, os); in Addr2line() 498 const char* prefix, in DumpThread() argument 509 LOG(ERROR) << prefix << "(failed to create Backtrace for thread " << tid << ")"; in DumpThread() [all …]
|
/art/test/1971-multi-force-early-return/src/art/ |
D | Test1971.java | 58 private static String safeDumpStackTrace(StackTraceElement st[], String prefix) { in safeDumpStackTrace() argument 63 prefix in safeDumpStackTrace() 71 os.println(prefix + "<Additional frames hidden>"); in safeDumpStackTrace()
|
/art/test/005-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 32 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument 41 System.out.println(prefix + " " + a); in printAnnotationArray() 42 System.out.println(prefix + " " + a.annotationType()); in printAnnotationArray()
|
/art/libdexfile/dex/ |
D | utf_test.cc | 180 for (const auto& prefix : prefixes) { in TEST_F() local 181 const std::vector<uint16_t>& prefix_in = prefix.first; in TEST_F() 182 const std::vector<uint8_t>& prefix_out = prefix.second; in TEST_F()
|
/art/compiler/optimizing/ |
D | liveness_test.cc | 38 const char* prefix) { in DumpBitVector() argument 39 buffer << prefix; in DumpBitVector()
|
/art/ |
D | CPPLINT.cfg | 20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
|
/art/test/testrunner/ |
D | env.py | 72 ART_HOST_TEST_DIR = tempfile.mkdtemp(prefix = 'test-art-')
|
/art/dexlayout/ |
D | dex_visualize.cc | 40 static std::string MultidexName(const std::string& prefix, in MultidexName() argument 43 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
|
/art/runtime/gc/space/ |
D | image_space_test.cc | 89 std::string prefix = GetFilenameBase(base_image_location); in TEST_F() local 91 bool success = CompileBootImage(extra_args, image_dir + '/' + prefix, dex_files, &error_msg); in TEST_F() 96 scratch_dir + prefix + '-' + GetFilenameBase(jar_name) + ".art"); in TEST_F()
|