Searched defs:format (Results 1 - 5 of 5) 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.h83 // The format of the table of the PCs for the table
90 RegisterMapFormat format = Format(); local
91 switch (format) {
97 LOG(FATAL) << "Invalid format " << static_cast<int>(format);
H A Dmethod_verifier.cc1239 // format. Only major difference from the method argument format is that 'V' is supported.
3994 // TODO: either a better GC map format or per method failures
4002 // TODO: either a better GC map format or per method failures
4008 RegisterMapFormat format; local
4010 format = kRegMapFormatCompact8;
4013 format = kRegMapFormatCompact16;
4016 // TODO: either a better GC map format or per method failures
4029 table->push_back(format | ((ref_bitmap_bytes >> DexPcToReferenceMap::kRegMapFormatShift) &
/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

Completed in 468 milliseconds