HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 1326 - 1350 of 4596) sorted by null

<<51525354555657585960>>

  /external/clang/test/Analysis/
taint-tester.c 5 int scanf(const char *restrict format, ...);
94 int fscanf(FILE *restrict stream, const char *restrict format, ...);
95 int fprintf(FILE *stream, const char *format, ...);
  /external/freetype/src/cff/
cfftypes.h 80 FT_UInt format; member in struct:CFF_EncodingRec_
93 FT_UInt format; member in struct:CFF_CharsetRec_
188 FT_Byte format; member in struct:CFF_FDSelectRec_
195 /* small cache for format 3 only */
  /external/harfbuzz_ng/src/
hb-buffer.h 295 hb_buffer_serialize_format_to_string (hb_buffer_serialize_format_t format);
309 hb_buffer_serialize_format_t format,
318 hb_buffer_serialize_format_t format);
  /external/icu4c/i18n/
selfmt.cpp 49 SelectFormat::SelectFormat(const SelectFormat& other) : Format(other),
69 SelectFormat::format(const Formattable& obj, function in class:SelectFormat
78 return format(obj.getString(status), appendTo, pos, status);
86 SelectFormat::format(const UnicodeString& keyword, function in class:SelectFormat
152 Format* SelectFormat::clone() const
166 SelectFormat::operator==(const Format& other) const {
170 if (!Format::operator==(other)) {
178 SelectFormat::operator!=(const Format& other) const {
  /external/icu4c/test/intltest/
windttst.cpp 18 #include "unicode/format.h"
150 wbf->format(icuNow, ubBuffer);
151 wdf->format(icuNow, udBuffer);
152 wtf->format(icuNow, utBuffer);
158 log->errln("DateTime format error for locale " + baseName + ": expected date \"" + expected +
166 log->errln("DateTime format error for locale " + baseName + ": expected time \"" + expected +
174 log->errln("Date format error for locale " + baseName + ": expected \"" + expected +
182 log->errln("Time format error for locale " + baseName + ": expected \"" + expected +
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
MipMapGenerator.java 37 import com.jme3.texture.Image.Format;
91 Format format = null; local
95 format = converted.getFormat();
124 image.setFormat(format);
  /external/libxml2/
triop.h 134 int trio_print_ref TRIO_PROTO((trio_pointer_t ref, const char *format, ...));
135 int trio_vprint_ref TRIO_PROTO((trio_pointer_t ref, const char *format, va_list args));
136 int trio_printv_ref TRIO_PROTO((trio_pointer_t ref, const char *format, trio_pointer_t *args));
  /external/llvm/tools/llvm-readobj/
ELF.cpp 14 #include "llvm/Support/Format.h"
120 OS << format("0x%" PRIx64, Value);
164 << format(Is64 ? "0x%016" PRIx64 : "0x%08" PRIx64, Start->getTag())
165 << " " << format("%-21s", getTypeString(Start->getTag()));
  /external/skia/legacy/include/images/
SkImageDecoder.h 34 enum Format {
47 /** Contains the image format name.
48 * This should be consistent with Format.
50 * The format name gives a more meaningful error message than enum.
54 /** Return the compressed data's format (see Format enum)
56 virtual Format getFormat() const;
58 /** Return the compressed data's format name.
237 the decoder will attempt to decode the image into that format, unless
242 @param format On success, if format is non-null, it is set to the forma
    [all...]
  /external/srec/portable/src/
PFileImpl.c 162 ESR_ReturnCode PFileVfprintfImpl(PFile* self, int* result, const LCHAR* format, va_list args)
189 *result = vsprintf(buffer, format, args);
191 vsprintf(buffer, format, args);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
SharedGraphicsContext3D.h 98 bool texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels);
99 void texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels);
101 void readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, void* data);
122 Texture* createTexture(NativeImagePtr, Texture::Format, int width, int height);
132 PassRefPtr<Texture> createTexture(Texture::Format, int width, int height);
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 62 String format = String::format("%s>%s", encoding.name(), m_internalEncodingName); local
65 AEECLSID classID = ISHELL_GetHandler(shell, AEEIID_ICharsetConv, format.latin1().data());
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.cpp 172 void PluginTest::log(const char* format, ...)
175 va_start(args, format);
176 pluginLogWithArguments(m_npp, format, args);
  /external/zlib/src/
gzwrite.c 303 int ZEXPORTVA gzprintf (gzFile file, const char *format, ...)
338 va_start(va, format);
341 (void)vsprintf((char *)(state->in), format, va);
346 len = vsprintf((char *)(state->in), format, va);
351 (void)vsnprintf((char *)(state->in), size, format, va);
355 len = vsnprintf((char *)(state->in), size, format, va);
374 int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
377 const char *format;
419 sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8,
424 len = sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8
    [all...]
  /frameworks/av/media/libnbaio/
AudioBufferProviderSource.cpp 27 NBAIO_Format format) :
28 NBAIO_Source(format), mProvider(provider), mConsumed(0)
31 ALOG_ASSERT(format != Format_Invalid);
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 130 public void setFormat(int format) {
131 if (mRequestedFormat != format) {
132 mRequestedFormat = format;
  /frameworks/base/core/jni/
Time.cpp 88 Time::format(const char *format, const struct strftime_locale *locale) const function in class:android::Time
91 int n = strftime_tz(buf, 257, format, &(this->t), locale);
  /frameworks/base/media/java/android/media/
MediaCodec.java 35 * codec.configure(format, ...);
55 * // Subsequent data will conform to new format.
56 * MediaFormat format = codec.getOutputFormat();
86 * encoded data according to the format's type. For video types this data
99 * Codec specific data included in the format passed to {@link #configure}
116 * Note that the format of the data submitted after a flush must not change,
117 * flush does not support format discontinuities,
230 * @param format The format of the input data (decoder) or the desired
231 * format of the output data (encoder)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 38 NativeFrame(FrameFormat format, FrameManager frameManager) {
39 super(format, frameManager);
40 int capacity = format.getSize();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RedEyeFilter.java 29 import android.filterfw.format.ImageFormat;
172 FrameFormat format = ImageFormat.create(bitmapWidth, bitmapHeight, local
175 mRedEyeFrame = context.getFrameManager().newFrame(format);
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 28 // format - format this diagnostic into string, subsituting the formal
30 void Diagnostic::format(std::string& pOutStr) const function in class:Diagnostic
35 format(desc.begin(), desc.end(), pOutStr);
68 // format - format the given formal string, subsituting the formal
70 void Diagnostic::format(const char* pBegin, const char* pEnd, function in class:Diagnostic
106 // DIAG's format error
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 40 uint32_t format; member in struct:hwcTestGraphicFormat
113 const char *hwcTestGraphicFormat2str(uint32_t format);
122 uint32_t hwcTestColor2Pixel(uint32_t format, ColorFract color, float alpha);
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
Tracer.java 72 mOut.printf("%s %s\n", mDateFormat.format(new Date()), message);
176 log(String.format("%s (%s)", caller, join(", ", arguments)));
281 return String.format("%s.%s from %s() at %s:%d", shortClassName, caller.getMethodName(),
  /libcore/benchmarks/src/benchmarks/regression/
IntegralToStringBenchmark.java 157 String.format("%d", SMALL);
163 String.format("%d", MEDIUM);
169 String.format("%d", LARGE);
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountPreferenceBase.java 43 import android.text.format.DateFormat;
179 return mDateFormat.format(date) + " " + mTimeFormat.format(date);

Completed in 973 milliseconds

<<51525354555657585960>>