/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
errwarn.h | 149 * \param format printf format string 150 * \param va argument list for format 153 void yasm_error_set_va(yasm_error_class eclass, const char *format, va_list va); 158 * \param format printf format string 159 * \param ... argument list for format 162 void yasm_error_set(yasm_error_class eclass, const char *format, ...) 169 * \param format printf format strin [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/ |
Assert.java | 115 * the format of error message to produce if the check fails, as expected by 116 * {@link String#format(String, Object...)}. For example 123 fail("null argument expected: " + String.format(errorFormat, args)); //$NON-NLS-1$ 129 * the format of error message suitable for {@link MessageFormat}. 131 * the format of error message to produce if the check fails, as expected by 137 String message = "null argument expected: " + MessageFormat.format(errorFormat, args); //$NON-NLS-1$ 182 * the format of error message to produce if the check fails, as expected by 183 * {@link String#format(String, Object...)}. For example 190 fail("null argument: " + String.format(errorFormat, args)); //$NON-NLS-1$ 196 * the format of error message suitable for {@link MessageFormat} [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_rect.c | 45 enum pipe_format format, 58 int blocksize = util_format_get_blocksize(format); 59 int blockwidth = util_format_get_blockwidth(format); 60 int blockheight = util_format_get_blockheight(format); 92 enum pipe_format format, 100 const struct util_format_description *desc = util_format_description(format);
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_blit.c | 142 util_format_description(texture->resource.b.b.format); 190 surf_tmpl.format = texture->resource.b.b.format; 198 surf_tmpl.format = flushed_depth_texture->resource.b.b.format; 280 surf_tmpl.format = rtex->resource.b.b.format; 393 return info->dst.res->format == info->src.res->format && 433 templ.format = info->src.res->format 561 unsigned format; member in struct:texture_orig_info [all...] |
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_tracker.c | 91 fdesc.format = PIPE_FORMAT_B8G8R8A8_UNORM; 94 fdesc.format = PIPE_FORMAT_B8G8R8X8_UNORM; 97 fdesc.format = PIPE_FORMAT_B5G6R5_UNORM; 100 fdesc.format = PIPE_FORMAT_B5G5R5A1_UNORM; 103 fdesc.format = PIPE_FORMAT_L8_UNORM; 106 fdesc.format = PIPE_FORMAT_Z24X8_UNORM; 109 fdesc.format = PIPE_FORMAT_Z16_UNORM; 112 fdesc.format = PIPE_FORMAT_Z32_UNORM; 115 fdesc.format = PIPE_FORMAT_Z24X8_UNORM; 118 fdesc.format = PIPE_FORMAT_X8Z24_UNORM [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel_read.c | 73 GLenum format, GLenum type, 100 !intel_check_blit_format(src, format, type)) { 101 DBG("%s - bad format for blit\n", __FUNCTION__); 126 format, type, 0, 0, 0); 171 GLenum format, GLenum type, 182 (ctx, x, y, width, height, format, type, pack, pixels)) 201 _mesa_readpixels(ctx, x, y, width, height, format, type, pack, pixels);
|
/external/mesa3d/src/mesa/main/ |
histogram.c | 47 _mesa_GetnMinmaxARB(GLenum target, GLboolean reset, GLenum format, 57 _mesa_GetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, 60 _mesa_GetnMinmaxARB(target, reset, format, type, INT_MAX, values); 65 _mesa_GetnHistogramARB(GLenum target, GLboolean reset, GLenum format, 75 _mesa_GetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, 78 _mesa_GetnHistogramARB(target, reset, format, type, INT_MAX, values);
|
/external/smali/ |
README.md | 3 smali/baksmali is an assembler/disassembler for the dex format used by dalvik, Android's Java VM implementation. The syntax is loosely based on Jasmin's/dedexer's syntax, and supports the full functionality of the dex format (annotations, debug info, line info, etc.) 17 - [Official dex format reference](http://s.android.com/tech/dalvik/dex-format.html
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
CropFilter.java | 33 import android.filterfw.format.ImageFormat; 34 import android.filterfw.format.ObjectFormat; 93 protected void createProgram(FilterContext context, FrameFormat format) { 95 if (mLastFormat != null && mLastFormat.getTarget() == format.getTarget()) return; 96 mLastFormat = format; 98 switch (format.getTarget()) { 123 // Create output format
|
/libcore/benchmarks/src/benchmarks/regression/ |
RealToStringBenchmark.java | 97 String.format("%f", SMALL); 103 String.format("%f", MEDIUM); 109 String.format("%f", LARGE); 115 String.format("%.2f", SMALL); 121 String.format("%.2f", MEDIUM); 127 String.format("%.2f", LARGE);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/ |
support.cpp | 27 int asprintf(char **sptr, const char *__restrict format, ...) 30 va_start(ap, format); 35 result = vasprintf(sptr, format, ap); 48 int vasprintf( char **sptr, const char *__restrict format, va_list ap ) 51 int count = _vsnprintf( NULL, 0, format, ap ); // Query the buffer size required. 56 if ( vsnprintf( p.get(), count+1, format, ap ) == count ) // We should have used exactly what was required.
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/ |
form2.pass.cpp | 16 // format(OutputIter out, const basic_string<char_type, ST, SA>& fmt, 38 char* r = m.format(output_iterator<char*>(out), fmt).base(); 49 char* r = m.format(output_iterator<char*>(out), 61 char* r = m.format(output_iterator<char*>(out), 74 wchar_t* r = m.format(output_iterator<wchar_t*>(out), fmt).base(); 85 wchar_t* r = m.format(output_iterator<wchar_t*>(out), 97 wchar_t* r = m.format(output_iterator<wchar_t*>(out),
|
form3.pass.cpp | 16 // format(const basic_string<char_type, ST, SA>& fmt, 36 nstr out = m.format(fmt); 45 nstr out = m.format(fmt, std::regex_constants::format_sed); 54 nstr out = m.format(fmt, std::regex_constants::format_sed); 64 wstr out = m.format(fmt); 73 wstr out = m.format(fmt, std::regex_constants::format_sed); 82 wstr out = m.format(fmt, std::regex_constants::format_sed);
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/ |
PhoneNumberTestService.java | 95 PhoneNumberFormat format) { 103 formatted = util.format(pn, format); 105 truncated = util.format(pn, format); 109 Log.i(TAG, " PhoneNumberUtil.format(parse(" + number + ", " + country + "), " + format
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursslk.h | 51 Justification format; // The Justification member in class:Soft_Label_Key_Set::Soft_Label_Key 54 Soft_Label_Key() : label(NULL), format(Left), num(-1) { 67 format = just; 86 format(rhs.format), 104 static Label_Layout NCURSES_IMPEXP format; // Layout of the Key Sets member in class:Soft_Label_Key_Set
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursslk.h | 51 Justification format; // The Justification member in class:Soft_Label_Key_Set::Soft_Label_Key 54 Soft_Label_Key() : label(NULL), format(Left), num(-1) { 67 format = just; 86 format(rhs.format), 104 static Label_Layout NCURSES_IMPEXP format; // Layout of the Key Sets member in class:Soft_Label_Key_Set
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
cursslk.h | 51 Justification format; // The Justification member in class:Soft_Label_Key_Set::Soft_Label_Key 54 Soft_Label_Key() : label(NULL), format(Left), num(-1) { 67 format = just; 86 format(rhs.format), 104 static Label_Layout NCURSES_IMPEXP format; // Layout of the Key Sets member in class:Soft_Label_Key_Set
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_surface.c | 95 depth = screen->format->BitsPerPixel; 96 Rmask = screen->format->Rmask; 97 Gmask = screen->format->Gmask; 98 Bmask = screen->format->Bmask; 99 Amask = screen->format->Amask; 102 surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask); 103 if ( surface->format == NULL ) { 190 (key == surface->format->colorkey) ) { 205 surface->format->colorkey = key; 219 surface->format->colorkey = 0 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/enc/ |
SoftVPXEncoder.cpp | 177 inputPort.format.video.pNativeRender = NULL; 178 inputPort.format.video.nFrameWidth = mWidth; 179 inputPort.format.video.nFrameHeight = mHeight; 180 inputPort.format.video.nStride = inputPort.format.video.nFrameWidth; 181 inputPort.format.video.nSliceHeight = inputPort.format.video.nFrameHeight; 182 inputPort.format.video.nBitrate = 0; 184 // in microseconds. It is also in Q16 format. 185 inputPort.format.video.xFramerate = (1000000/mFrameDurationUs) << 16 [all...] |
/external/chromium_org/chrome/browser/renderer_host/pepper/ |
pepper_flash_clipboard_message_filter.cc | 43 // native format type. However we should be able to store them in the same way 49 bool JumpToFormatInPickle(const string16& format, PickleIterator* iter) { 57 if (stored_format == format) 68 bool IsFormatAvailableInPickle(const string16& format, const Pickle& pickle) { 70 return JumpToFormatInPickle(format, &iter); 73 std::string ReadDataFromPickle(const string16& format, const Pickle& pickle) { 76 if (!JumpToFormatInPickle(format, &iter) || !iter.ReadString(&result)) 145 uint32_t format = custom_formats_.RegisterFormat(format_name); local 146 if (format == PP_FLASH_CLIPBOARD_FORMAT_INVALID) 149 PpapiPluginMsg_FlashClipboard_RegisterCustomFormatReply(format); [all...] |
/bionic/libc/kernel/common/linux/ |
device.h | 209 #define dev_printk(level, dev, format, arg...) printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg) 211 #define dev_dbg(dev, format, arg...) dev_printk(KERN_DEBUG , dev , format , ## arg) 214 #define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0) 216 #define dev_err(dev, format, arg...) dev_printk(KERN_ERR , dev , format , ## arg) 217 #define dev_info(dev, format, arg...) dev_printk(KERN_INFO , dev , format , ## arg) 219 #define dev_warn(dev, format, arg...) dev_printk(KERN_WARNING , dev , format , ## arg [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Output.java | 33 private static void generateHeader0(String fileName, String format) { 34 if (format.equals("brief")) { 38 } else if (format.equals("xml")) { 46 throw new RuntimeException("unknown output format"); 50 public static void generateFirstHeader(String fileName, String format) { 51 generateHeader0(fileName, format); 54 public static void generateHeader(String fileName, String format) { 56 generateHeader0(fileName, format); 59 public static void generateFooter(String format) { 60 if (format.equals("brief")) [all...] |
/development/ndk/platforms/android-3/include/linux/ |
device.h | 207 #define dev_printk(level, dev, format, arg...) printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg) 210 #define dev_dbg(dev, format, arg...) dev_printk(KERN_DEBUG , dev , format , ## arg) 212 #define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0) 215 #define dev_err(dev, format, arg...) dev_printk(KERN_ERR , dev , format , ## arg) 216 #define dev_info(dev, format, arg...) dev_printk(KERN_INFO , dev , format , ## arg) 217 #define dev_warn(dev, format, arg...) dev_printk(KERN_WARNING , dev , format , ## arg [all...] |
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttpost.c | 378 FT_Fixed format; local 393 format = face->postscript.FormatType; 400 if ( format == 0x00020000L ) 402 else if ( format == 0x00028000L ) 419 FT_Fixed format; local 424 format = face->postscript.FormatType; 426 if ( format == 0x00020000L ) 441 else if ( format == 0x00028000L ) 483 FT_Fixed format; local 507 format = face->postscript.FormatType [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/gbm/ |
gbm_drm.c | 44 gbm_format_to_gallium(enum gbm_bo_format format) 46 switch (format) { 77 enum gbm_bo_format format, 83 pf = gbm_format_to_gallium(format); 91 if (usage & GBM_BO_USE_SCANOUT && format != GBM_BO_FORMAT_XRGB8888) 147 switch (resource->format) { 149 bo->base.base.format = GBM_BO_FORMAT_XRGB8888; 152 bo->base.base.format = GBM_BO_FORMAT_ARGB8888; 174 enum gbm_bo_format format, uint32_t usage) 189 bo->base.base.format = format [all...] |