/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeHeapSnapshot.java | 95 return String.format("%s bytes", formatMemorySize(getTotalSize())); 99 return NUMBER_FORMATTER.format(memSize);
|
/sdk/ide_common/src/com/android/ide/common/resources/configuration/ |
CountryCodeQualifier.java | 68 return String.format("mcc%1$d", code); //$NON-NLS-1$ 142 return String.format("MCC %1$d", mCode);
|
NetworkCodeQualifier.java | 68 return String.format("mnc%1$d", code); //$NON-NLS-1$ 153 return String.format("MNC %1$d", mCode);
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
FilterPort.java | 52 public void setPortFormat(FrameFormat format) { 53 mPortFormat = format;
|
VertexFrame.java | 34 VertexFrame(FrameFormat format, FrameManager frameManager) { 35 super(format, frameManager);
|
/system/media/mca/filterpacks/imageproc/java/ |
DrawOverlayFilter.java | 30 import android.filterfw.format.ImageFormat; 31 import android.filterfw.format.ObjectFormat;
|
/system/netd/ |
NetlinkHandler.cpp | 32 int format) : 33 NetlinkListener(listenerSocket, format) {
|
/external/iptables/iptables/ |
ip6tables.c | 67 #define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab)) 132 void ip6tables_exit_error(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3))); 446 print_num(uint64_t number, unsigned int format) 448 if (format & FMT_KILOMEGAGIGA) { 472 print_header(unsigned int format, const char *chain, struct ip6tc_handle *handle) 479 if (!(format & FMT_NOCOUNTS)) { 481 print_num(counters.pcnt, (format|FMT_NOTABLE)); 483 print_num(counters.bcnt, (format|FMT_NOTABLE)); 495 if (format & FMT_LINENUMBERS) 497 if (!(format & FMT_NOCOUNTS)) 934 unsigned int format; local [all...] |
iptables.c | 64 #define FMT(tab,notab) ((format) & FMT_NOTABLE ? (notab) : (tab)) 131 void iptables_exit_error(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3))); 451 print_num(uint64_t number, unsigned int format) 453 if (format & FMT_KILOMEGAGIGA) { 477 print_header(unsigned int format, const char *chain, struct iptc_handle *handle) 484 if (!(format & FMT_NOCOUNTS)) { 486 print_num(counters.pcnt, (format|FMT_NOTABLE)); 488 print_num(counters.bcnt, (format|FMT_NOTABLE)); 500 if (format & FMT_LINENUMBERS) 502 if (!(format & FMT_NOCOUNTS)) 939 unsigned int format; local [all...] |
/external/webkit/Tools/CSSTestSuiteHarness/harness/ |
harness.js | 229 Test.prototype.runForFormat = function(format) 231 if (format == 'html4') 234 if (format == 'xhtml1') 240 Test.prototype.completedForFormat = function(format) 242 if (format == 'html4') 245 if (format == 'xhtml1') 251 Test.prototype.statusForFormat = function(format) 253 if (format == 'html4') 256 if (format == 'xhtml1') 301 Chapter.prototype.description = function(format) [all...] |
/external/chromium/sdch/open-vcdiff/packages/rpm/ |
rpm.spec | 6 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format 21 (RFC 3284) format. Please see http://www.ietf.org/rfc/rfc3284.txt . 24 Summary: An encoder/decoder for the VCDIFF (RFC 3284) format
|
/external/emma/core/java12/com/vladium/emma/report/ |
IItemAttribute.java | 45 void format (IItem item, StringBuffer appendTo); method in interface:IItemAttribute 94 public void format (final IItem item, final StringBuffer appendTo) method in class:IItemAttribute.Factory.NameAttribute 138 public void format (final IItem item, final StringBuffer appendTo) method in class:IItemAttribute.Factory.FractionAttribute 150 m_format.format (1.0F, appendTo, m_fieldPosition); 152 m_format.format (n_scaled / d, appendTo, m_fieldPosition); 158 m_nFormat.format (n_scaled, appendTo, m_fieldPosition);
|
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/ |
SDL_cgximage.c | 228 surface->format->BytesPerPixel*(SDL_Window->BorderLeft+SDL_Window->LeftEdge)); 285 switch (screen->format->BytesPerPixel) { 321 switch (screen->format->BytesPerPixel) { 382 int i,format,customroutine=0; local 388 format=RECTFMT_RAW; 390 else switch(this->screen->format->BytesPerPixel) 393 format=RECTFMT_RGBA; 396 format=RECTFMT_RGB; 420 // format=RECTFMT_LUT8; Vecchia funzione x usare la WritePixelArray. 432 ((this->screen->format->BytesPerPixel%2) == 0) ) 679 int format,customroutine=0; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/ |
SDL_syswm.c | 67 struct /* quasi-BMP format */ Win32Icon { 120 pal_256 = icon_256->format->palette; 121 if (icon->format->palette && 122 (icon->format->BitsPerPixel == icon_256->format->BitsPerPixel)){ 124 SDL_memcpy(pal_256->colors, icon->format->palette->colors, 134 icon_256->format->BitsPerPixel); 144 /* Convert icon to a standard surface format. This may not always
|
/external/srec/portable/include/ |
PFile.h | 205 * @param format see vfprintf() 209 ESR_ReturnCode(*vfprintf)(struct PFile_t* self, int* result, const LCHAR* format, va_list args); 368 * @param format see fprintf() 372 PORTABLE_API ESR_ReturnCode PFileFprintf(PFile* self, int* result, const LCHAR* format, va_list args); 379 * @param format see vfprintf() 383 PORTABLE_API ESR_ReturnCode PFileVfprintf(PFile* self, int* result, const LCHAR* format, va_list args); 556 * @param format See vfprintf() 560 PORTABLE_API int pvfprintf(PFile* stream, const LCHAR* format, va_list args); 566 * @param format See fprintf() 569 PORTABLE_API int pfprintf(PFile* stream, const LCHAR* format, ...) [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
VideoLayerChromium.cpp | 116 m_frameFormat = frame->format(); 174 switch (frame->format()) { 231 if (plane == VideoFrameChromium::yPlane && frame->format() == VideoFrameChromium::YV12) { 247 void VideoLayerChromium::updateTexture(GraphicsContext3D* context, unsigned textureId, const IntSize& dimensions, unsigned format, const void* data) const 251 void* mem = static_cast<Extensions3DChromium*>(context->getExtensions())->mapTexSubImage2DCHROMIUM(GraphicsContext3D::TEXTURE_2D, 0, 0, 0, dimensions.width(), dimensions.height(), format, GraphicsContext3D::UNSIGNED_BYTE, Extensions3DChromium::WRITE_ONLY); 259 GLC(context, context->texSubImage2D(GraphicsContext3D::TEXTURE_2D, 0, 0, 0, dimensions.width(), dimensions.height(), format, GraphicsContext3D::UNSIGNED_BYTE, data));
|
/external/webkit/Source/WebCore/platform/win/ |
ClipboardUtilitiesWin.cpp | 74 static bool getDataMapItem(const DragDataMap* dataObject, FORMATETC* format, String& item) 76 DragDataMap::const_iterator found = dataObject->find(format->cfFormat); 216 // MS HTML Format parsing 250 // Documentation for the CF_HTML format is available at http://msdn.microsoft.com/workshop/networking/clipboard/htmlclipboard.asp 356 // MSIE HTML Format 359 static UINT cf = RegisterClipboardFormat(L"HTML Format"); 366 static UINT cf = RegisterClipboardFormat(L"WebKit Smart Paste Format"); 628 FORMATETC* format; member in struct:WebCore::ClipboardDataItem 630 ClipboardDataItem(FORMATETC* format, GetStringFunction getString, SetStringFunction setString): format(format), getString(getString), setString(setString) { [all...] |
/frameworks/base/core/jni/ |
android_view_TextureView.cpp | 74 static inline SkBitmap::Config convertPixelFormat(int32_t format) { 75 switch (format) { 145 ssize_t bytesCount = buffer.stride * bytesPerPixel(buffer.format); 148 bitmap.setConfig(convertPixelFormat(buffer.format), buffer.width, buffer.height, bytesCount); 150 if (buffer.format == WINDOW_FORMAT_RGBX_8888) { 160 SET_INT(canvas, gCanvasClassInfo.surfaceFormat, buffer.format);
|
/frameworks/base/core/tests/hosttests/src/android/content/pm/ |
PackageManagerStressHostTests.java | 126 return String.format("%s%s%s%s", AppRepositoryPath, fileDirectory, 136 return String.format("%s%s%s", getTestAppPath(), File.separator, fileName); 156 String currentApkName = String.format("%s%d.apk", 270 String currentPkgName = String.format("%s%d", MANY_APPS_PKG_PREFIX, i); 277 String currentApkName = String.format("%s%d.apk", MANY_APPS_APK_PREFIX, i); 288 String currentPkgName = String.format("%s%d", MANY_APPS_PKG_PREFIX, i);
|
/frameworks/base/include/media/ |
AudioTrack.h | 72 int format; member in class:android::AudioTrack::Buffer 130 * format: Audio format (e.g AUDIO_FORMAT_PCM_16_BIT for signed 145 int format = 0, 165 int format = 0, 184 * - BAD_VALUE: invalid parameter (channels, format, sampleRate...) 189 int format = 0, 217 int format() const; 441 uint32_t format,
|
/frameworks/base/media/libmedia/ |
IMediaPlayerService.cpp | 151 int format; local 152 sp<IMemory> player = decode(url, &sampleRate, &numChannels, &format); 155 reply->writeInt32(format); 166 int format; local 167 sp<IMemory> player = decode(fd, offset, length, &sampleRate, &numChannels, &format); 170 reply->writeInt32(format);
|
/frameworks/base/media/libstagefright/rtsp/ |
ARTPSession.cpp | 67 LOGE("Invalid media format."); 73 LOGE("Unsupported format."); 201 AString format; local 202 mDesc->getFormat(index, &format); 204 ssize_t i = format.find(" "); 211 while (isdigit(format.c_str()[j])) { 214 if (format.c_str()[j] != ' ') { 218 AString portString(format, i, j - i);
|
/frameworks/media/libvideoeditor/lvpp/ |
VideoEditorSRC.cpp | 47 sp<MetaData> format = mSource->getFormat(); local 49 CHECK(format->findCString(kKeyMIMEType, &mime)); 130 // Change resampler and retry if format change happened 214 // just remember the fact that the format has changed, and let 273 sp<MetaData> format = mSource->getFormat(); local 275 CHECK(format->findCString(kKeyMIMEType, &mime)); 278 CHECK(format->findInt32(kKeySampleRate, &mSampleRate)); 279 CHECK(format->findInt32(kKeyChannelCount, &mChannelCnt));
|
/packages/apps/Camera/jni/feature_stab/src/dbregtest/ |
PgmImage.cpp | 29 PgmImage::PgmImage(int w, int h, int format) : 30 m_colors(255),m_w(w),m_h(h),m_format(format),m_over_allocation(256) 32 SetFormat(format); 83 void PgmImage::SetFormat(int format) 85 m_format = format; 87 switch (format) 249 o << "Format: RGB binary pixmap"; 252 o << "Format: PPM binary graymap"; 255 o << "Format: Invalid";
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
DialogDetailsView.java | 25 import android.text.format.Formatter; 89 String title = String.format( 162 value = String.format("1/%d", (int) (0.5f + 1 / time)); 168 value += String.format(" 1/%d", (int) (0.5f + 1 / time)); 183 value = String.format("%s : %s %s", DetailsHelper.getDetailsName( 186 value = String.format("%s : %s", DetailsHelper.getDetailsName(
|