/external/webkit/Source/WebKit/chromium/public/ |
WebVideoFrame.h | 40 enum Format { 60 virtual Format format() const = 0;
|
/external/webkit/Source/WebKit/chromium/src/ |
VideoFrameChromiumImpl.cpp | 61 VideoFrameChromium::Format VideoFrameChromiumImpl::format() const function in class:WebKit::VideoFrameChromiumImpl 64 return static_cast<VideoFrameChromium::Format>(m_webVideoFrame->format()); 78 if (format() == YV12 && plane != static_cast<unsigned>(yPlane)) 93 if (format() == YV12 && plane != static_cast<unsigned>(yPlane))
|
/frameworks/base/core/java/com/android/internal/view/ |
RootViewSurfaceTaker.java | 10 void setSurfaceFormat(int format);
|
/frameworks/base/core/tests/coretests/src/android/os/ |
MessageQueueTest.java | 177 failure(new RuntimeException(String.format( 181 failure(new RuntimeException(String.format( 185 failure(new RuntimeException(String.format( 189 failure(new RuntimeException(String.format( 205 failure(new RuntimeException(String.format( 211 failure(new RuntimeException(String.format( 226 failure(new RuntimeException(String.format( 231 failure(new RuntimeException(String.format( 236 failure(new RuntimeException(String.format( 241 failure(new RuntimeException(String.format( [all...] |
/frameworks/base/opengl/libagl/ |
dxt.h | 29 void *surface, int stride, int format);
|
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/ |
FrameBuffer.cpp | 24 bool FrameBuffer::Init(int width, int height, GLenum format) { 35 format, 39 format, 64 mFormat = format;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
ActivityLaunchAction.java | 64 String msg = String.format("Starting activity %1$s on device %2$s", mActivity, 87 AdtPlugin.printErrorToConsole(info.getProject(), String.format( 98 String.format("Launch error: %s", e.getMessage())); 110 return String.format("%1$s activity launch", mActivity);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestColor.java | 34 return String.format("#%6x", mRgb);
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
StdSdkLog.java | 31 String msg = String.format("Error: " + errorFormat, args); 47 System.err.println(String.format("Error: %1$s%2$s", t.getMessage())); 52 String msg = String.format("Warning: " + warningFormat, args); 69 String msg = String.format(msgFormat, args);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
PkgCategoryApi.java | 45 mPlatformName = String.format("Android %1$s", platformName); 57 return String.format("API %1$d", getKey()); 73 label = String.format("%1$s (%2$s)", mPlatformName, getApiLabel()); 90 return String.format("%s <API=%s, label=%s, #items=%d>",
|
/system/core/adb/ |
utils.h | 56 char* buff_add (char* buff, char* buffEnd, const char* format, ... );
|
/development/tools/emulator/opengl/host/libs/Translator/GLcommon/ |
GLESvalidate.cpp | 34 bool GLESvalidate::pixelOp(GLenum format,GLenum type) { 38 return format == GL_RGBA; 40 return format == GL_RGB; 45 bool GLESvalidate::pixelFrmt(GLEScontext* ctx ,GLenum format) { 46 if (ctx && ctx->getCaps()->GL_EXT_TEXTURE_FORMAT_BGRA8888 && format == GL_BGRA_EXT) 48 if (ctx && ctx->getCaps()->GL_EXT_PACKED_DEPTH_STENCIL && format == GL_DEPTH_STENCIL_OES) 50 switch(format) {
|
/external/dropbear/ |
svr-session.c | 126 /* failure exit - format must be <= 100 chars */ 127 void svr_dropbear_exit(int exitcode, const char* format, va_list param) { 134 "premature exit: %s", format); 139 ses.authstate.printableuser, format); 144 ses.authstate.printableuser, ses.authstate.failcount, format); 148 "exit before auth: %s", format); 161 void svr_dropbear_log(int priority, const char* format, va_list param) { 168 vsnprintf(printbuf, sizeof(printbuf), format, param);
|
/external/icu4c/i18n/unicode/ |
plurfmt.h | 81 * <code>applyPattern()</code> method. The <code>format()</code> 109 * format patterns. <code>PluralFormat</code> preserves these so that you 113 * automatically evaluate the resulting format pattern.<br> 115 * in message texts to define a nested format pattern.<br> 120 * <code>format()</code> method. It will be formatted using a 139 * msgFmt->format(args1, 1, result, ignore, status); 142 * msgFmt->format(args2, 1, result, ignore, status); 153 * If you use plural format strings with <code>MessageFormat</code> and want 158 * <code>'</code> in the number format pattern. Since 168 * constructor, this locale will be used to format the number in the messag [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/windx5/ |
SDL_dx5audio.c | 196 error = "Unsupported audio format"; 430 DSBUFFERDESC format; local 445 SDL_memset(&format, 0, sizeof(format)); 446 format.dwSize = sizeof(format); 447 format.dwFlags=(DSBCAPS_PRIMARYBUFFER|DSBCAPS_GETCURRENTPOSITION2); 448 format.dwFlags |= DSBCAPS_STICKYFOCUS; 450 format.dwFlags |= DSBCAPS_CTRLPOSITIONNOTIFY; 452 result = IDirectSound_CreateSoundBuffer(sndObj, &format, sndbuf, NULL) 506 DSBUFFERDESC format; local [all...] |
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioHardwareInterface.h | 64 * return audio format in 8bit or 16bit PCM format - 67 virtual int format() const = 0; 72 uint32_t frameSize() const { return popcount(channels())*((format()==AUDIO_FORMAT_PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); } 133 * return audio format in 8bit or 16bit PCM format - 136 virtual int format() const = 0; 141 uint32_t frameSize() const { return AudioSystem::popCount(channels())*((format()==AudioSystem::PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); } 229 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount) = 0; 234 int *format=0 [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
StringUtils.java | 120 return String.format("%02d:%02d:%02d.%01d", hours, mins, sec, time);
137 return String.format("%02d:%02d:%02d", hours, mins, sec);
157 return String.format(context.getString(R.string.seconds), sec);
159 return String.format(context.getString(R.string.minute_and_seconds), sec);
161 return String.format(context.getString(R.string.minutes), mins);
164 return String.format(context.getString(R.string.hour_and_minutes), mins);
166 return String.format(context.getString(R.string.hours_and_minutes), hours, mins);
|
/external/esd/include/ |
esd.h | 65 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */ 129 /* rate, format = (bits | channels | stream | func) */ 145 int esd_play_stream( esd_format_t format, int rate, 147 int esd_play_stream_fallback( esd_format_t format, int rate, 149 int esd_monitor_stream( esd_format_t format, int rate, 151 /* int esd_monitor_stream_fallback( esd_format_t format, int rate ); */ 152 int esd_record_stream( esd_format_t format, int rate, 154 int esd_record_stream_fallback( esd_format_t format, int rate, 156 int esd_filter_stream( esd_format_t format, int rate, 160 int esd_sample_cache( int esd, esd_format_t format, const int rate, 200 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_server_info 216 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_player_info 231 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_sample_info [all...] |
/external/valgrind/main/drd/tests/ |
unit_vc.c | 20 Int line, const Char* function, const HChar* format, 41 UInt VG_(printf)(const HChar *format, ...) 42 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); return ret; } 43 UInt VG_(snprintf)(Char* buf, Int size, const HChar *format, ...) 44 { UInt ret; va_list vargs; va_start(vargs, format); ret = vsnprintf(buf, size, format, vargs); va_end(vargs); return ret; } 46 UInt VG_(message)(VgMsgKind kind, const HChar* format, ...) 47 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); printf("\n"); return ret; [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
esd.h | 65 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */ 129 /* rate, format = (bits | channels | stream | func) */ 145 int esd_play_stream( esd_format_t format, int rate, 147 int esd_play_stream_fallback( esd_format_t format, int rate, 149 int esd_monitor_stream( esd_format_t format, int rate, 151 /* int esd_monitor_stream_fallback( esd_format_t format, int rate ); */ 152 int esd_record_stream( esd_format_t format, int rate, 154 int esd_record_stream_fallback( esd_format_t format, int rate, 156 int esd_filter_stream( esd_format_t format, int rate, 160 int esd_sample_cache( int esd, esd_format_t format, const int rate, 200 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_server_info 216 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_player_info 231 esd_format_t format; \/* magic int with the format info *\/ member in struct:esd_sample_info [all...] |
/bionic/libc/stdlib/ |
wchar.c | 40 int fwprintf(FILE *stream, const wchar_t *format, ...) 45 va_start(args, format); 46 result = vfwprintf(stream, format, args); 51 int wprintf(const wchar_t *format, ...) 56 va_start(args, format); 57 result = vwprintf(format, args); 62 int swprintf(wchar_t *s, size_t n, const wchar_t *format, ...) 67 va_start(args, format); 68 result = vswprintf(s, n, format, args); 73 int vwprintf(const wchar_t *format, va_list arg [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SerializerFactory.java | 52 * value is passed in this format: {uri}localName 82 * @param format The output format, minimally the "method" property must be set. 90 public static Serializer getSerializer(Properties format) 96 String method = format.getProperty(OutputKeys.METHOD); 106 format.getProperty(OutputPropertiesFactory.S_KEY_CONTENT_HANDLER); 139 ser.setOutputFormat(format); 161 sh.setOutputFormat(format);
|
/external/chromium/net/disk_cache/ |
trace.cc | 88 void Trace(const char* format, ...) { 93 va_start(ap, format); 96 vsprintf_s(s_trace_buffer->buffer[s_trace_buffer->current], format, ap); 99 sizeof(s_trace_buffer->buffer[s_trace_buffer->current]), format, 154 void Trace(const char* format, ...) {
|
/external/freetype/src/base/ |
ftsynth.c | 54 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE ) 92 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE && 93 slot->format != FT_GLYPH_FORMAT_BITMAP ) 101 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE ) 111 else /* slot->format == FT_GLYPH_FORMAT_BITMAP */ 155 if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
|
/frameworks/base/libs/ui/ |
EGLUtils.cpp | 58 PixelFormat format, 84 if (nativeVisualId>0 && format == nativeVisualId) { 107 int format; local 112 if ((err = window->query(window, NATIVE_WINDOW_FORMAT, &format)) < 0) { 116 return selectConfigForPixelFormat(dpy, attrs, format, outConfig);
|