/external/mtpd/ |
mtpd.h | 42 void log_print(int level, char *format, ...);
|
/external/proguard/src/proguard/gui/ |
GUIResources.java | 54 return formatter.format(messageArguments);
|
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/ |
SDL_atarigl_c.h | 53 /* to convert the shadow buffer to the screen format */ 65 OSMesaContext (*OSMesaCreateContextExt)( GLenum format, GLint depthBits, GLint stencilBits, GLint accumBits, OSMesaContext sharelist); 72 void *(*OSMesaCreateLDG)( long format, long type, long width, long height ); 77 GLenum format; member in struct:SDL_PrivateGLData 91 #define gl_curformat (this->gl_data->format)
|
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_ph_modes_c.h | 34 extern SDL_Rect **ph_ListModes(_THIS,SDL_PixelFormat *format, Uint32 flags);
|
/external/tcpdump/ |
machdep.c | 49 __attribute__((format(printf, 3, 4)));
|
/external/valgrind/main/none/tests/ |
valgrind_cpp_test.cpp | 44 Int line, const Char* fn, const HChar* format, ... )
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
FontCustomPlatformData.cpp | 117 bool FontCustomPlatformData::supportsFormat(const String& format) 119 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || equalIgnoringCase(format, "woff");
|
/external/webkit/Source/WebKit/android/plugins/ |
PluginDebugAndroid.h | 39 # define PLUGIN_LOG(FORMAT, ARGS...) do { anp_logPlugin(FORMAT, ## ARGS); } while(0) 45 void anp_logPlugin(const char format[], ...);
|
/external/webkit/Source/WebKit/chromium/src/ |
VideoFrameChromiumImpl.h | 51 virtual Format format() const;
|
/external/webkit/Source/WebKit2/Shared/qt/ |
UpdateChunk.cpp | 122 QImage::Format format; 125 format = QImage::Format_RGB16; 128 format = QImage::Format_RGB32; 132 return QImage(reinterpret_cast<unsigned char*>(m_sharedMemory->data()), m_rect.width(), m_rect.height(), (m_rect.width() * bpp + 3) & ~0x3, format);
|
/frameworks/base/core/java/android/nfc/tech/ |
NdefFormatable.java | 32 * Provide access to NDEF format operations on a {@link Tag}. 37 * class for tags for which it can format to NDEF. 77 * Format a tag as NDEF, and write a {@link NdefMessage}. 94 public void format(NdefMessage firstMessage) throws IOException, FormatException { method in class:NdefFormatable 95 format(firstMessage, false); method 117 format(firstMessage, true); method 120 /*package*/ void format(NdefMessage firstMessage, boolean makeReadOnly) throws IOException, method in class:NdefFormatable 139 // Now check and see if the format worked
|
/frameworks/base/core/jni/android/graphics/ |
BitmapFactory.h | 20 jstring getMimeTypeString(JNIEnv* env, SkImageDecoder::Format format);
|
/frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/converter/ |
Android.mk | 24 frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/common \
|
/frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
Android.mk | 24 frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/common \
|
/frameworks/base/include/private/surfaceflinger/ |
SharedBufferStack.h | 34 uint8_t format; member in struct:android::display_cblk_t
|
/frameworks/base/include/ui/ |
EGLUtils.h | 39 PixelFormat format,
|
/frameworks/base/libs/gui/ |
IGraphicBufferAlloc.cpp | 46 PixelFormat format, uint32_t usage, status_t* error) { 51 data.writeInt32(format); 93 PixelFormat format = data.readInt32(); local 97 createGraphicBuffer(w, h, format, usage, &error);
|
/frameworks/base/services/java/com/android/server/ |
NativeDaemonConnectorException.java | 36 super(String.format("Cmd {%s} failed with code %d : {%s}", cmd, code, error));
|
/frameworks/compile/linkloader/lib/ |
ELFTypes.cpp | 19 #include <llvm/Support/Format.h> 25 os << llvm::format("%0*x", FORMAT_WIDTH, val.value); \
|
/libcore/luni/src/main/java/java/sql/ |
Date.java | 21 * A class which can consume and produce dates in SQL {@code Date} format. 24 * format only deals with year, month and day values. There are no values for 172 * Produces a string representation of the date in SQL format 174 * @return a string representation of the date in SQL format - {@code "yyyy-MM-dd"}. 180 format((getYear() + 1900), 4, sb); method 182 format((getMonth() + 1), 2, sb); method 184 format(getDate(), 2, sb); 192 * Private method to format the time 194 private void format(int date, int digits, StringBuilder sb) { method in class:Date 204 * format [all...] |
Time.java | 24 * format and parse the time's representation as a String in JDBC escape format. 178 * Formats the {@code Time} as a String in JDBC escape format: {@code 182 * format: {@code HH:mm:ss} 188 format(getHours(), 2, sb); 190 format(getMinutes(), 2, sb); 192 format(getSeconds(), 2, sb); 200 * Private method to format the time 202 private void format(int date, int digits, StringBuilder sb) { method in class:Time 212 * JDBC escape format: {@code hh:mm:ss} [all...] |
/libcore/luni/src/main/java/java/text/ |
Format.java | 35 * Many of the concrete subclasses of {@code Format} employ the notion of a 39 * common US English format for currency values, yielding strings such as 42 * patterns, the notion of a pattern is not inherent to {@code Format} classes 47 * {@code NumberFormat} which allows the user to format different number ranges 50 * is a formatter which utilizes other {@code Format} objects to format a string 57 public abstract class Format implements Serializable, Cloneable { 64 protected Format() { 68 * Returns a copy of this {@code Format} instance. 70 * @return a shallow copy of this format 92 public final String format(Object object) { method in class:Format 117 public abstract StringBuffer format(Object object, StringBuffer buffer, method in class:Format [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
error.h | 26 /* The __-protected variants of `format' and `printf' attributes 29 # define __format__ format 38 /* Print a message with `fprintf (stderr, FORMAT, ...)';
|
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/ |
FrameBuffer.h | 15 bool Init(int width, int height, GLenum format);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
AndroidXmlFormatter.java | 38 public final void format(IDocument document, IRegion region) { method in class:AndroidXmlFormatter 43 * {@link #format(IDocument,IFormattingContext)} instead. However, for 51 format(document, context); method 58 public void format(IDocument document, IFormattingContext context) { method in class:AndroidXmlFormatter 77 strategy.format();
|