Searched defs:format (Results 1 - 14 of 14) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOpcodeInfo.java30 public final AbstractFormat format; field in class:OpcodeInfo
39 this.format = fmt;
/art/runtime/base/
H A Dstringprintf.cc23 void StringAppendV(std::string* dst, const char* format, va_list ap) { argument
32 int result = vsnprintf(space, sizeof(space), format, backup_ap);
55 result = vsnprintf(buf, length, format, backup_ap);
74 void StringAppendF(std::string* dst, const char* format, ...) { argument
76 va_start(ap, format);
77 StringAppendV(dst, format, ap);
/art/sigchainlib/
H A Dsigchain_dummy.cc36 static void log(const char* format, ...) { argument
39 va_start(ap, format);
40 vsnprintf(buf, sizeof(buf), format, ap);
H A Dsigchain.cc101 static void log(const char* format, ...) { argument
104 va_start(ap, format);
105 vsnprintf(buf, sizeof(buf), format, ap);
/art/runtime/verifier/
H A Ddex_gc_map.h85 // The format of the table of the PCs for the table
92 RegisterMapFormat format = Format(); local
93 switch (format) {
99 LOG(FATAL) << "Invalid format " << static_cast<int>(format);
/art/test/021-string2/src/junit/framework/
H A DAssert.java287 fail(format(message, expected, actual));
290 public static String format(String message, Object expected, Object actual) { method in class:Assert
H A DComparisonCompactor.java27 // android-changed use local method instead of Assert.format, since
29 return format(message, fExpected, fActual);
35 // android-changed use local format method
36 return format(message, expected, actual);
80 // android-changed copy of Assert.format for reasons described above
81 private static String format(String message, Object expected, Object actual) { method in class:ComparisonCompactor
/art/test/082-inline-execute/src/junit/framework/
H A DAssert.java287 fail(format(message, expected, actual));
290 public static String format(String message, Object expected, Object actual) { method in class:Assert
H A DComparisonCompactor.java27 // android-changed use local method instead of Assert.format, since
29 return format(message, fExpected, fActual);
35 // android-changed use local format method
36 return format(message, expected, actual);
80 // android-changed copy of Assert.format for reasons described above
81 private static String format(String message, Object expected, Object actual) { method in class:ComparisonCompactor
/art/compiler/dwarf/
H A Dheaders.h44 CFIFormat format,
49 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id.
81 CFIFormat format,
87 if (format == DW_EH_FRAME_FORMAT) {
40 WriteDebugFrameCIE(bool is64bit, ExceptionHeaderValueApplication address_type, Reg return_address_register, const DebugFrameOpCodeWriter<Allocator>& opcodes, CFIFormat format, std::vector<uint8_t>* debug_frame) argument
78 WriteDebugFrameFDE(bool is64bit, size_t cie_offset, uint64_t initial_address, uint64_t address_range, const std::vector<uint8_t, Allocator>* opcodes, CFIFormat format, std::vector<uint8_t>* debug_frame, std::vector<uintptr_t>* debug_frame_patches) argument
/art/compiler/dex/
H A Dverified_method.cc110 verifier::RegisterMapFormat format; local
112 format = verifier::kRegMapFormatCompact8;
115 format = verifier::kRegMapFormatCompact16;
127 dex_gc_map_.push_back(format | ((ref_bitmap_bytes & ~0xFF) >> (kBitsPerByte - kFormatBits)));
/art/compiler/
H A Delf_writer_debug.cc35 CFIFormat format,
63 opcodes, format, eh_frame);
87 opcodes, format, eh_frame);
104 opcodes, format, eh_frame);
131 opcodes, format, eh_frame);
158 opcodes, format, eh_frame);
171 CFIFormat format,
182 WriteDebugFrameCIE(isa, address_type, format, debug_frame);
190 opcodes, format, debug_frame, debug_frame_patches); local
195 if (format
33 WriteDebugFrameCIE(InstructionSet isa, ExceptionHeaderValueApplication addr_type, CFIFormat format, std::vector<uint8_t>* eh_frame) argument
168 WriteCFISection(const CompilerDriver* compiler, const OatWriter* oat_writer, ExceptionHeaderValueApplication address_type, CFIFormat format, std::vector<uint8_t>* debug_frame, std::vector<uintptr_t>* debug_frame_patches, std::vector<uint8_t>* eh_frame_hdr, std::vector<uintptr_t>* eh_frame_hdr_patches) argument
[all...]
/art/compiler/utils/
H A Dassembler.h391 virtual void Comment(const char* format, ...) { UNUSED(format); } argument
/art/runtime/
H A Dcommon_runtime_test.cc195 // Helper - find directory with the following format:
219 std::string format = subdir2 + "-%f"; local
221 if (std::sscanf(entry->d_name, format.c_str(), &version) == 1) {

Completed in 341 milliseconds