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

/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/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.java282 fail(format(message, expected, actual));
285 static String format(String message, Object expected, Object actual) { method in class:Assert
/art/test/082-inline-execute/src/junit/framework/
H A DAssert.java282 fail(format(message, expected, actual));
285 static String format(String message, Object expected, Object actual) { method in class:Assert
/art/compiler/dex/
H A Dverified_method.cc86 // TODO: either a better GC map format or per method failures
94 // TODO: Either a better GC map format or per method failures.
100 verifier::RegisterMapFormat format; local
102 format = verifier::kRegMapFormatCompact8;
105 format = verifier::kRegMapFormatCompact16;
108 // TODO: Either a better GC map format or per method failures.
117 dex_gc_map_.push_back(format | ((ref_bitmap_bytes & ~0xFF) >> 5));
/art/sigchainlib/
H A Dsigchain.cc82 static void log(const char* format, ...) { argument
85 va_start(ap, format);
86 vsnprintf(buf, sizeof(buf), format, ap);
/art/compiler/utils/
H A Dassembler.h368 virtual void Comment(const char* format, ...) { } argument

Completed in 3915 milliseconds