/external/chromium/chrome/common/extensions/ |
extension_error_utils.h | 14 static std::string FormatErrorMessage(const std::string& format, 17 static std::string FormatErrorMessage(const std::string& format, 21 static std::string FormatErrorMessage(const std::string& format,
|
/external/e2fsprogs/intl/ |
vasnprintf.h | 33 /* The __-protected variants of `format' and `printf' attributes 36 # define __format__ format 52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) 54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
|
/external/skia/src/ports/ |
SkDebug_nacl.cpp | 27 void SkDebugf(const char format[], ...) { 31 va_start(args, format); 33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
|
/external/valgrind/main/coregrind/ |
pub_core_debuglog.h | 77 const HChar* format, ... ) 78 __attribute__((format(__printf__, 3, 4))); 87 const HChar *format,
|
/frameworks/av/include/media/nbaio/ |
NBAIO.h | 36 NEGOTIATE = 0x80000010, // Must (re-)negotiate format. For negotiate() only, the offeree 45 // Negotiation of format is based on the data provider and data sink, or the data consumer and 49 // attributes, rather than a struct with separate fields for format, sample rate, channel count, 60 size_t Format_frameSize(NBAIO_Format format); 63 size_t Format_frameBitShift(NBAIO_Format format); 69 unsigned Format_sampleRate(NBAIO_Format format); 72 unsigned Format_channelCount(NBAIO_Format format); 112 // Return the current negotiated format, or Format_Invalid if negotiation has not been done, 114 virtual NBAIO_Format format() const { return mNegotiated ? mFormat : Format_Invalid; } function in class:android::NBAIO_Port 117 NBAIO_Port(NBAIO_Format format) : mNegotiated(false), mFormat(format) [all...] |
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
GLEncoderUtils.h | 20 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
|
/external/ceres-solver/internal/ceres/ |
stringprintf.h | 50 // Tell the compiler to do printf format string checking if the compiler 51 // supports it; see the 'format' attribute in 66 extern string StringPrintf(const char* format, ...) 67 // Tell the compiler to do printf format string checking. 71 extern const string& SStringPrintf(string* dst, const char* format, ...) 72 // Tell the compiler to do printf format string checking. 76 extern void StringAppendF(string* dst, const char* format, ...) 77 // Tell the compiler to do printf format string checking. 82 extern void StringAppendV(string* dst, const char* format, va_list ap);
|
/external/chromium/base/ |
stringprintf.h | 18 BASE_API std::string StringPrintf(const char* format, ...) PRINTF_FORMAT(1, 2); 19 BASE_API std::wstring StringPrintf(const wchar_t* format, ...) 23 BASE_API std::string StringPrintV(const char* format, va_list ap) 28 const char* format, ...) 31 const wchar_t* format, ...) 35 BASE_API void StringAppendF(std::string* dst, const char* format, ...) 39 BASE_API void StringAppendF(std::wstring* dst, const wchar_t* format, ...) 44 BASE_API void StringAppendV(std::string* dst, const char* format, va_list ap) 47 const wchar_t* format, va_list ap)
|
/external/chromium/third_party/libjingle/source/talk/base/ |
checks.h | 37 void Fatal(const char* file, int line, const char* format, ...);
|
/external/clang/test/CodeGen/ |
2002-06-25-FWriteInterfaceFailure.c | 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
|
/external/clang/test/Sema/ |
block-printf-attribute-1.c | 6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}} local 7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}} 9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {}; local 11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}} 16 // Handle block with multiple format attributes. 20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
|
/external/eigen/doc/snippets/ |
IOFormat.cpp | 11 std::cout << m1.format(CommaInitFmt) << sep; 12 std::cout << m1.format(CleanFmt) << sep; 13 std::cout << m1.format(OctaveFmt) << sep; 14 std::cout << m1.format(HeavyFmt) << sep;
|
/external/llvm/lib/Target/CppBackend/ |
Makefile | 16 CompileCommonOpts += -Wno-format
|
/external/openssh/ |
log.h | 59 __attribute__((format(printf, 1, 2))); 60 void error(const char *, ...) __attribute__((format(printf, 1, 2))); 62 __attribute__((format(printf, 1, 2))); 63 void logit(const char *, ...) __attribute__((format(printf, 1, 2))); 64 void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); 65 void debug(const char *, ...) __attribute__((format(printf, 1, 2))); 66 void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); 67 void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); 72 __attribute__((format(printf, 2, 3)));
|
/external/protobuf/src/google/protobuf/stubs/ |
substitute.cc | 1 // Protocol Buffers - Google's data interchange format 54 const char* format, 61 SubstituteAndAppend(&result, format, arg0, arg1, arg2, arg3, arg4, 67 string* output, const char* format, 79 for (int i = 0; format[i] != '\0'; i++) { 80 if (format[i] == '$') { 81 if (ascii_isdigit(format[i+1])) { 82 int index = format[i+1] - '0'; 85 << "strings::Substitute format string invalid: asked for \"$" 87 << " args were given. Full format string was: \" [all...] |
/external/webkit/Source/WebKit/android/plugins/ |
SurfaceCallback.h | 36 virtual void surfaceChanged(int format, int width, int height) = 0;
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrame.java | 24 import android.filterfw.format.ObjectFormat; 37 SimpleFrame(FrameFormat format, FrameManager frameManager) { 38 super(format, frameManager); 39 initWithFormat(format); 44 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE); local 45 SimpleFrame result = new SimpleFrame(format, frameManager); 50 private void initWithFormat(FrameFormat format) { 51 final int count = format.getLength(); 52 final int baseType = format.getBaseType(); 134 MutableFrameFormat format = getFormat().mutableCopy() local 144 FrameFormat format = getFormat(); local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/ |
LogUtils.java | 107 * @param format the format string (see {@link java.util.Formatter#format}) 110 * more arguments than required by {@code format}, 113 public static int v(String tag, String format, Object... args) { 115 return Log.v(tag, String.format(format, args)); 125 * @param format the format string (see {@link java.util.Formatter#format}) [all...] |
/packages/apps/Email/src/com/android/mail/utils/ |
LogUtils.java | 179 * @param format the format string (see {@link java.util.Formatter#format}) 182 * more arguments than required by {@code format}, 185 public static int v(String tag, String format, Object... args) { 187 return Log.v(tag, String.format(format, args)); 197 * @param format the format string (see {@link java.util.Formatter#format}) [all...] |
/system/vold/ |
Ext4.h | 26 static int format(const char *fsPath, const char *mountpoint);
|
/frameworks/av/media/libnbaio/ |
NBAIO.cpp | 25 size_t Format_frameSize(NBAIO_Format format) 27 return Format_channelCount(format) * sizeof(short); 30 size_t Format_frameBitShift(NBAIO_Format format) 33 return Format_channelCount(format); 54 unsigned Format_sampleRate(NBAIO_Format format) 56 if (format == Format_Invalid) { 59 switch (format & Format_SR_Mask) { 81 unsigned Format_channelCount(NBAIO_Format format) 83 if (format == Format_Invalid) { 86 switch (format & Format_C_Mask) 98 NBAIO_Format format; local [all...] |
/external/clang/unittests/Format/ |
FormatTest.cpp | 1 //===- unittest/Format/FormatTest.cpp - Formatting unit tests -------------===// 10 #define DEBUG_TYPE "format-test" 12 #include "clang/Format/Format.h" 19 namespace format { namespace in namespace:clang 23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length, function in class:clang::format::FormatTest 44 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) { function in class:clang::format::FormatTest 45 return format(Code, 0, Code.size(), Style); 95 EXPECT_EQ(Code.str(), format(messUp(Code), Style)); 123 EXPECT_EQ(";", format(";")); [all...] |
/libcore/luni/src/main/java/java/security/ |
KeyRep.java | 41 // Key encoding format 42 private final String format; field in class:KeyRep 55 * @param format 56 * the format of the key (obtained by {@link Key#getFormat()}). 61 * if {@code type, algorithm, format or encoded} is {@code null} 64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) { 67 this.format = format; 75 if(this.format == null) { 76 throw new NullPointerException("format == null") [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridMatch.java | 91 return String.format("Align baseline in row %1$d", cellIndex + 1); 96 return String.format("Insert into column %1$d", cellIndex + 1); 102 return String.format("Add next to column %1$d", cellIndex + 1); 104 return String.format("Align left at x=%1$d", matchedLine - layout.getBounds().x); 107 return String.format("Insert right-aligned into column %1$d", cellIndex + 1); 109 return String.format("Align right at x=%1$d", matchedLine - layout.getBounds().x); 112 return String.format("Insert into row %1$d", cellIndex + 1); 118 return String.format("Add below row %1$d", cellIndex + 1); 120 return String.format("Align top at y=%1d", matchedLine - layout.getBounds().y); 123 return String.format("Insert into bottom of row %1$d", cellIndex + 1) [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
Support_SimpleDateFormat.java | 56 SimpleDateFormat format = (SimpleDateFormat) DateFormat local 58 format.setTimeZone(tz); 61 format 75 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2); 76 t_FormatWithField(1, format, date, null, Field.YEAR, 15, 17); 77 t_FormatWithField(2, format, date, null, Field.MONTH, 26, 27); 78 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 45, 47); 79 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 55, 57); 80 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 65, 67); 81 t_FormatWithField(6, format, date, null, Field.HOUR1, 75, 76) 143 SimpleDateFormat format = (SimpleDateFormat) DateFormat local [all...] |