/external/harfbuzz_ng/util/ |
hb-shape.cc | 36 format (parser) {} 52 fail (false, "Unknown output format `%s'; supported formats are: %s", 61 if (!format.show_glyph_names) 63 if (!format.show_clusters) 65 if (!format.show_positions) 79 format.serialize_buffer_of_text (buffer, line_no, text, text_len, font, gs); 88 format.serialize_message (line_no, "msg: all shapers failed", gs); 97 format.serialize_buffer_of_glyphs (buffer, line_no, text, text_len, font, 111 format_options_t format; member in struct:output_buffer_t
|
/external/icu4c/i18n/unicode/ |
compactdecimalformat.h | 34 * 'Hits: 1,200,000,000'. The format will be appropriate for the given language, 89 * Clone this Format object polymorphically. The caller owns the 95 virtual Format* clone() const; 98 * Return TRUE if the given Format objects are semantically equal. 102 * @return TRUE if the given Format objects are semantically equal. 105 virtual UBool operator==(const Format& other) const; 108 using DecimalFormat::format; 111 * Format a double or long number using base-10 representation. 121 virtual UnicodeString& format(double number, 126 * Format a double or long number using base-10 representation [all...] |
/external/libvpx/libvpx/tools/ |
gen_authors.sh | 9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_texture_desc.h | 40 unsigned r300_get_pixel_alignment(enum pipe_format format, 53 unsigned r300_stride_to_width(enum pipe_format format,
|
r300_texture.h | 42 uint32_t r300_translate_texformat(enum pipe_format format, 47 uint32_t r500_tx_format_msb_bit(enum pipe_format format); 49 boolean r300_is_colorbuffer_format_supported(enum pipe_format format); 51 boolean r300_is_zs_format_supported(enum pipe_format format); 53 boolean r300_is_sampler_format_supported(enum pipe_format format); 57 enum pipe_format format,
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_surface.h | 42 gl_format format; member in struct:nouveau_surface 51 unsigned flags, unsigned format,
|
/frameworks/base/graphics/java/android/graphics/ |
ImageFormat.java | 28 * RGB format used for pictures encoded as RGB_565. See 34 * <p>Android YUV format.</p> 36 * <p>This format is exposed to software decoders and applications.</p> 38 * <p>YV12 is a 4:2:0 YCrCb planar format comprised of a WxH Y plane followed 41 * <p>This format assumes 57 * <p>This format is guaranteed to be supported for camera preview images since 76 * <p>Android Y8 format.</p> 78 * <p>Y8 is a YUV planar format comprised of a WxH Y plane only, with each pixel 80 * format.</p> 82 * <p>This format assume [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
AudioTrackDecoder.java | 45 public AudioTrackDecoder(int trackIndex, MediaFormat format, Listener listener) { 46 super(trackIndex, format, listener); 48 if (!DecoderUtil.isAudioFormat(format)) { 56 mAudioSampleRate = format.getInteger(MediaFormat.KEY_SAMPLE_RATE); 57 mAudioChannelCount = format.getInteger(MediaFormat.KEY_CHANNEL_COUNT); 61 protected MediaCodec initMediaCodec(MediaFormat format) { 63 format.getString(MediaFormat.KEY_MIME)); 64 mediaCodec.configure(format, null, null, 0);
|
/art/runtime/base/ |
stringprintf.cc | 23 void StringAppendV(std::string* dst, const char* format, va_list ap) { 32 int result = vsnprintf(space, sizeof(space), format, backup_ap); 55 result = vsnprintf(buf, length, format, backup_ap); 74 void StringAppendF(std::string* dst, const char* format, ...) { 76 va_start(ap, format); 77 StringAppendV(dst, format, ap);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
Dop.java | 29 /** {@code non-null;} the instruction format */ 30 private final InsnFormat format; field in class:Dop 44 * @param format {@code non-null;} the instruction format 49 public Dop(int opcode, int family, InsnFormat format, 59 if (format == null) { 60 throw new NullPointerException("format == null"); 69 this.format = format; 100 * Gets the instruction format [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
Dop.java | 40 /** {@code non-null;} the instruction format */ 41 private final InsnFormat format; field in class:Dop 56 * @param format {@code non-null;} the instruction format 60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, 74 if (format == null) { 75 throw new NullPointerException("format == null"); 81 this.format = format; 111 * Gets the instruction format [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
MyKeyPairGenerator1.java | 96 private String format; field in class:MyKeyPairGenerator1.PubKey 102 this.format = "test1"; 111 return format; 122 private String format; field in class:MyKeyPairGenerator1.PrivKey 128 this.format = "test1"; 137 return format;
|
/external/chromium_org/native_client_sdk/src/libraries/error_handling/ |
string_stream.c | 21 int ssvprintf(sstream_t* stream, const char* format, va_list args) { 27 len = vsnprintf(NULL, 0, format, args); 36 vsprintf(&stream->data[stream->length], format, hold); 42 int ssprintf(sstream_t* stream, const char* format, ...) { 45 va_start(args, format); 46 out = ssvprintf(stream, format, args);
|
/external/chromium_org/ppapi/api/ |
ppb_image_data.idl | 65 PP_ImageDataFormat format; 83 * GetNativeImageDataFormat() returns the browser's preferred format for 84 * image data. The browser uses this format internally for painting. Other 88 * @return A <code>PP_ImageDataFormat</code> containing the preferred format. 93 * IsImageDataFormatSupported() determines if the given image data format is 99 * @param[in] format The image data format. 102 * image data format is supported by the browser. 105 [in] PP_ImageDataFormat format); 108 * Create() allocates an image data resource with the given format and size [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_texture.h | 42 uint32_t r300_translate_texformat(enum pipe_format format, 47 uint32_t r500_tx_format_msb_bit(enum pipe_format format); 49 boolean r300_is_colorbuffer_format_supported(enum pipe_format format); 51 boolean r300_is_zs_format_supported(enum pipe_format format); 53 boolean r300_is_sampler_format_supported(enum pipe_format format); 57 enum pipe_format format,
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
compsize.c | 35 ** Return the number of elements per group of a specified format 38 __glElementsPerGroup(GLenum format, GLenum type) 65 switch (format) { 137 ** and format. 141 GLenum format, GLenum type, GLenum target) 167 ** Zero is returned if either format or type are invalid. 169 components = __glElementsPerGroup(format, type); 171 if (format == GL_COLOR_INDEX || format == GL_STENCIL_INDEX) {
|
/external/chromium_org/tools/gyp/test/variables/commands/ |
update_golden | 7 python ../../../gyp --debug variables --format gypd --depth . commands.gyp > commands.gyp.stdout 8 python ../../../gyp --ignore-environment --debug variables --format gypd --depth . commands.gyp > commands.gyp.ignore-env.stdout 10 python ../../../gyp --debug variables --format gypd --depth . commands-repeated.gyp > commands-repeated.gyp.stdout
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
Dop.java | 40 /** {@code non-null;} the instruction format */ 41 private final InsnFormat format; field in class:Dop 56 * @param format {@code non-null;} the instruction format 60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, 74 if (format == null) { 75 throw new NullPointerException("format == null"); 81 this.format = format; 111 * Gets the instruction format [all...] |
/external/dropbear/ |
dbutil.h | 36 extern void (*_dropbear_exit)(int exitcode, const char* format, va_list param); 37 extern void (*_dropbear_log)(int priority, const char* format, va_list param); 39 void dropbear_exit(const char* format, ...); 40 void dropbear_close(const char* format, ...); 41 void dropbear_log(int priority, const char* format, ...); 44 void dropbear_trace(const char* format, ...);
|
/external/icu4c/layout/ |
DeviceTables.cpp | 24 le_uint16 format = SWAPW(deltaFormat) - 1; local 27 if (ppem >= start && ppem <= SWAPW(endSize) && format < FORMAT_COUNT) { 29 le_uint16 bits = fieldBits[format]; 34 le_uint16 field = (word >> shift) & fieldMasks[format]; 38 if ((field & fieldSignBits[format]) != 0) { 39 result |= ~ fieldMasks[format];
|
/external/mesa3d/src/glx/ |
compsize.c | 35 ** Return the number of elements per group of a specified format 38 __glElementsPerGroup(GLenum format, GLenum type) 65 switch (format) { 137 ** and format. 141 GLenum format, GLenum type, GLenum target) 167 ** Zero is returned if either format or type are invalid. 169 components = __glElementsPerGroup(format, type); 171 if (format == GL_COLOR_INDEX || format == GL_STENCIL_INDEX) {
|
/external/srtp/crypto/include/ |
err.h | 138 err_report(int priority, char *format, ...); 158 #define debug_print(mod, format, arg) \ 159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg) 160 #define debug_print2(mod, format, arg1,arg2) \ 161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2) 166 #define debug_print(mod, format, arg)
|
/libcore/support/src/test/java/libcore/java/io/ |
NullPrintStream.java | 36 public PrintStream format(String format, Object... args) { return this; } method in class:NullPrintStream 37 public PrintStream format(Locale l, String format, Object... args) { return this; } method in class:NullPrintStream 38 public PrintStream printf(String format, Object... args) { return this; } 39 public PrintStream printf(Locale l, String format, Object... args) { return this; }
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
MyKeyPairGenerator1.java | 97 private String format; field in class:MyKeyPairGenerator1.PubKey 103 this.format = "test1"; 112 return format; 123 private String format; field in class:MyKeyPairGenerator1.PrivKey 129 this.format = "test1"; 138 return format;
|
/libcore/support/src/test/java/tests/support/ |
Support_DecimalFormat.java | 42 DecimalFormat format = (DecimalFormat) NumberFormat local 47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY, 49 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER, 51 t_FormatWithField(2, format, number, text, 53 t_FormatWithField(3, format, number, text, 55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION, 59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0, 61 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT, 63 t_FormatWithField(7, format, number, text, 65 t_FormatWithField(8, format, number, text 164 DecimalFormat format = new DecimalFormat("###0.##\\u2030"); local [all...] |