HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1151 - 1175 of 11127) sorted by null

<<41424344454647484950>>

  /external/icu/icu4c/source/i18n/unicode/
plurfmt.h 81 * <code>applyPattern()</code> method. The <code>format()</code>
123 * If you need a custom format and have a non-zero offset, then you need to pass the
132 * constructor, this locale will be used to format the number in the message
143 class U_I18N_API PluralFormat : public Format {
301 * Sets the pattern used by this plural format.
302 * The method parses the pattern and creates a map of format strings
306 * @param pattern the pattern for this plural format
315 using Format::format;
329 UnicodeString format(int32_t number, UErrorCode& status) const
    [all...]
rbnf.h 15 * \brief C++ API: Rule Based Number Format
83 * <p>For larger numbers, we can use the preceding set of rules to format the ones place, and
99 * isolate the number's ones digit, format it using this same set of rules, and place the
175 * <p>The above syntax suffices only to format positive integers. To format negative numbers,
181 * where the base value would be. This rule is used to format all negative numbers. the
182 * &gt;&gt; token here means &quot;find the number's absolute value, format it with these
210 * are <em>public:</em> the caller can specify that they be used to format and parse numbers.
285 * on whether it is used to format a number's integral part (or the whole number) or a
286 * number's fractional part. Using a rule set to format a rule's fractional part makes it
    [all...]
  /external/jemalloc/include/jemalloc/internal/
util.h 96 int malloc_vsnprintf(char *str, size_t size, const char *format,
98 int malloc_snprintf(char *str, size_t size, const char *format, ...)
99 JEMALLOC_ATTR(format(printf, 3, 4));
101 const char *format, va_list ap);
103 const char *format, ...) JEMALLOC_ATTR(format(printf, 3, 4));
104 void malloc_printf(const char *format, ...)
105 JEMALLOC_ATTR(format(printf, 1, 2));
  /external/junit/src/org/junit/runners/model/
MultipleFailureException.java 28 String.format("There were %d errors:", fErrors.size()));
30 sb.append(String.format("\n %s(%s)", e.getClass().getName(), e.getMessage()));
  /external/libcxx/src/support/win32/
locale_win32.cpp 83 int snprintf_l(char *ret, size_t n, locale_t loc, const char *format, ...)
87 va_start( ap, format );
88 int result = vsnprintf( ret, n, format, ap );
93 int asprintf_l( char **ret, locale_t loc, const char *format, ... )
96 va_start( ap, format );
97 int result = vasprintf_l( ret, loc, format, ap );
101 int vasprintf_l( char **ret, locale_t loc, const char *format, va_list ap )
104 return vasprintf( ret, format, ap );
  /external/libcxx/test/
makemake.py 47 makefile.write('test_makefile := {}\n'.format(makefile_path))
54 '''.format(out_name, test, build_mk_path))
  /external/libexif/libexif/
exif-entry.h 39 #include <libexif/exif-format.h>
48 ExifFormat format; member in struct:_ExifEntry
60 * than exif_format_get_size(format)*components */
116 /*! Initialize an empty #ExifEntry with default data in the correct format
127 /*! Fix the type or format of the given EXIF entry to bring it into spec.
129 * format according to the EXIF specification, then it is converted to make it
146 * This is meant for display to the user. The format of each tag is subject
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
helpline.c 28 static int tui_helpline__show(const char *format, va_list ap)
35 sizeof(ui_helpline__last_msg) - backlog, format, ap);
  /external/lldb/include/lldb/API/
SBError.h 59 SetErrorStringWithFormat (const char *format, ...) __attribute__ ((format (printf, 2, 3)));
SBStream.h 42 Printf (const char *format, ...) __attribute__ ((format (printf, 2, 3)));
  /external/lldb/source/Host/macosx/cfcpp/
CFCData.cpp 70 CFCData::Serialize(CFPropertyListRef plist, CFPropertyListFormat format)
76 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
  /external/lldb/test/
progress.py 15 format Format
29 format='[%(fill)s%(marker)s%(blank)s] %(progress)s%%',
39 self.format = format
60 return self.format % {'fill': fill, 'blank': blank, 'marker': self.marker, 'progress': int(self.progress)}
85 format='[%(fill)s%(marker)s%(blank)s] %(progress)s%%',
88 super(AnimatedProgressBar, self).__init__(start,end,width,fill,blank,marker,format,incremental)
111 format='[%(fill)s%(marker)s%(blank)s] %(progress)s%%',
114 super(ProgressWithEvents, self).__init__(start,end,width,fill,blank,marker,format,incremental,stdout
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
CFData.cpp 73 CFData::Serialize(CFPropertyListRef plist, CFPropertyListFormat format)
79 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
  /external/mesa3d/src/gallium/auxiliary/util/
u_caps.h 55 #define UTIL_CHECK_FORMAT(format) \
56 UTIL_CAPS_CHECK_FORMAT, PIPE_FORMAT_##format
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.h 79 lp_tile_swizzle_4ub(enum pipe_format format,
86 lp_tile_unswizzle_4ub(enum pipe_format format,
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.c 93 /* Translate a pipe_format into a useful texture format for sampling.
101 * R300_EASY_TX_FORMAT(B, G, R, A, FORMAT);
103 * The FORMAT specifies how the texture sampler will treat the texture, and
105 uint32_t r300_translate_texformat(enum pipe_format format,
121 desc = util_format_description(format);
128 switch (format) {
145 switch (format) {
160 switch (format) {
172 if (format != PIPE_FORMAT_RGTC1_SNORM &&
173 format != PIPE_FORMAT_LATC1_SNORM)
    [all...]
  /external/mesa3d/src/gallium/include/state_tracker/
sw_winsys.h 74 enum pipe_format format );
90 enum pipe_format format,
  /external/mesa3d/src/gallium/winsys/sw/dri/
dri_sw_winsys.c 42 enum pipe_format format; member in struct:dri_sw_displaytarget
74 enum pipe_format format )
83 enum pipe_format format,
95 dri_sw_dt->format = format;
99 format_stride = util_format_get_stride(format, width);
102 nblocksy = util_format_get_nblocksy(format, height);
182 width = dri_sw_dt->stride / util_format_get_blocksize(dri_sw_dt->format);
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 51 enum pipe_format format; member in struct:gdi_sw_displaytarget
75 enum pipe_format format )
77 switch(format) {
124 enum pipe_format format,
137 gdt->format = format;
141 bpp = util_format_get_blocksizebits(format);
142 cpp = util_format_get_blocksize(format);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_driver.h 68 #define nouveau_error(format, ...) \
69 fprintf(stderr, "%s: " format, __func__, ## __VA_ARGS__)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_pixel_read.c 41 static gl_format gl_format_and_type_to_mesa_format(GLenum format, GLenum type)
43 switch (format)
92 GLenum format, GLenum type,
97 const gl_format dst_format = gl_format_and_type_to_mesa_format(format, type);
161 rrb->base.Base.Format,
200 GLenum format, GLenum type,
206 if (do_blit_readpixels(ctx, x, y, width, height, format, type, pack, pixels))
214 "Falling back to sw for ReadPixels (format %s, type %s)\n",
215 _mesa_lookup_enum_by_nr(format), _mesa_lookup_enum_by_nr(type));
220 _mesa_readpixels(ctx, x, y, width, height, format, type, pack, pixels)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_framebuffer.c 59 enum pipe_format format = st->ctx->Color.sRGBEnabled ? resource->format : util_format_linear(resource->format); local
62 strb->surface->format != format ||
73 surf_tmpl.format = format;
125 (strb->texture && util_format_is_srgb(strb->texture->format))) {
  /external/openssl/crypto/bio/
b_print.c 137 const char *format, va_list args);
139 /* format read states */
149 /* format flags - Bits */
175 const char *format,
192 ch = *format++;
204 ch = *format++;
210 ch = *format++;
214 ch = *format++;
218 ch = *format++;
222 ch = *format++
    [all...]
  /external/qemu/android/
charmap.c 64 /* Line format was bad. */
335 // Make sure token format was ok and value doesn't exceed unsigned short.
397 * returns BAD_FORMAT if line format was not recognized, SKIP_LINE if line
398 * format was ok, but it didn't contain key information, or KEY_ENTRY
424 derror("Invalid format of charmap file %s. Unknown key %s in line %d",
432 derror("Invalid format of charmap file %s. Invalid display value in line %d",
440 derror("Invalid format of charmap file %s. Invalid number value in line %d",
448 derror("Invalid format of charmap file %s. Invalid base value in line %d",
456 derror("Invalid format of charmap file %s. Invalid caps value in line %d",
464 derror("Invalid format of charmap file %s. Invalid fn value in line %d"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
soundcommon.h 57 u8 channel,format; member in struct:__anon33996
66 extern void SoundSystemInit(u32 rate,u32 buffersize,u8 channel,u8 format);

Completed in 1245 milliseconds

<<41424344454647484950>>