HomeSort by relevance Sort by last modified time
    Searched defs:Format (Results 51 - 75 of 175) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table.h 30 struct Format {
  /external/jhead/
gpsinfo.c 77 int format = GpsTags[i].Format; local
78 if (format == 0) {
79 printf("tag %s format not defined", GpsTags[i].Desc);
95 int format = GpsTags[i].Format; local
96 if (format == 0) {
97 printf("tag %s format not defined", GpsTags[i].Desc);
100 return format;
143 unsigned Tag, Format, Components
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
57 // Format key for constructor
58 enum Format {
65 // Simpler zlib stream format.
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
72 Format format = AUTO,
91 Format format_;
111 // Format key for constructo
122 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table.h 30 struct Format {
  /ndk/sources/android/support/tests/minitest/
minitest.cc 73 #define MINITEST_STRING_OPERATOR_LL_(ParamType, Format) \
76 ::snprintf(buf, sizeof(buf), Format, v); \
126 internal::String Format(const char* format, ...) {
129 va_start(args, format);
135 len = vsnprintf(&result[0], result.size(), format, args2);
  /external/chromium_org/media/base/
video_frame.h 48 enum Format {
49 UNKNOWN = 0, // Unknown format value.
57 NATIVE_TEXTURE = 6, // Native texture. Pixel-format agnostic.
64 // Returns the name of a Format as a string.
65 static std::string FormatToString(Format format);
70 Format format,
79 static bool IsValidConfig(Format format, const gfx::Size& coded_size
215 Format format() const { return format_; } function in class:media::VideoFrame
    [all...]
  /external/chromium_org/net/cert/
x509_certificate.h 88 enum Format {
105 // Automatically detect the format.
128 // The format is [int count], [data - this certificate],
187 // Parses all of the certificates possible from |data|. |format| is a
188 // bit-wise OR of Format, indicating the possible formats the
193 int format);
378 // specific |format|. Returns an empty collection on failure.
382 Format format);
441 // platform-specific certificate handle. The format of the certificat
    [all...]
  /external/chromium_org/third_party/skia/tools/
render_pictures_main.cpp 58 * Table for translating from format of data to a suffix.
60 struct Format {
61 SkImageDecoder::Format fFormat;
64 static const Format gFormats[] = {
76 * Get an appropriate suffix for an image format.
78 static const char* get_suffix_from_format(SkImageDecoder::Format format) {
80 if (gFormats[i].fFormat == format) {
123 SkImageDecoder::Format format = SkImageDecoder::GetStreamFormat(&memStream) local
    [all...]
  /external/chromium_org/ui/base/l10n/
formatter.cc 213 void Formatter::Format(Unit unit,
218 formatted_string = simple_format_[unit]->format(value, error);
219 DCHECK(U_SUCCESS(error)) << "Error in icu::PluralFormat::format().";
223 void Formatter::Format(TwoUnits units,
228 << "Detailed() not implemented for your (format, length) combination!";
230 << "Detailed() not implemented for your (format, length) combination!";
232 formatted_string = detailed_format_[units][0]->format(value_1, error);
234 formatted_string += detailed_format_[units][1]->format(value_2, error);
248 scoped_ptr<icu::PluralFormat> format(
251 return format.Pass()
261 scoped_ptr<icu::PluralFormat> format = l10n_util::BuildPluralFormat(ids); local
    [all...]
  /external/deqp/framework/common/
tcuCompressedTexture.hpp 43 enum Format
91 bool isASTCModeLDR; //!< \note Ignored if not ASTC format.
97 CompressedTexture (Format format, int width, int height, int depth = 1);
101 void setStorage (Format format, int width, int height, int depth = 1);
105 Format getFormat (void) const { return m_format; }
114 Format m_format;
121 bool isEtcFormat (CompressedTexture::Format fmt);
122 bool isASTCFormat (CompressedTexture::Format fmt)
    [all...]
tcuFormatUtil.hpp 23 * \brief String format utilities.
34 namespace Format
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
83 #define TCU_BIT_DESC(BIT) tcu::Format::BitDesc(BIT, #BIT)
216 // Hex format iterator (useful for combining with ArrayFormatter).
217 // \todo [2012-10-30 pyry] Implement more generic format iterator.
240 } // Format
246 /** Format value as hexadecimal number. */
248 inline Format::Hex<NumDigits> toHex (T value)
250 return Format::Hex<NumDigits>(toUint64(value))
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 1 //===- Archive.h - ar archive file format -----------------------*- C++ -*-===//
10 // This file declares the ar archive file format class.
177 return Format;
200 Kind Format;
  /external/llvm/lib/TableGen/
SetTheory.cpp 15 #include "llvm/Support/Format.h"
166 // (sequence "Format", From, To) Generate a sequence of records by name.
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
182 std::string Format;
184 Format = SI->getValue();
186 PrintFatalError(Loc, "Format must be a string: " + Expr->getAsString());
214 OS << format(Format.c_str(), unsigned(From));
  /external/pdfium/core/src/fpdfapi/fpdf_font/
ttgsubtable.cpp 336 TT_uint16_t Format = GetUInt16(sp);
337 switch(Format) {
381 TT_uint16_t Format = GetUInt16(sp);
382 switch(Format) {
  /external/skia/tools/
render_pictures_main.cpp 58 * Table for translating from format of data to a suffix.
60 struct Format {
61 SkImageDecoder::Format fFormat;
64 static const Format gFormats[] = {
76 * Get an appropriate suffix for an image format.
78 static const char* get_suffix_from_format(SkImageDecoder::Format format) {
80 if (gFormats[i].fFormat == format) {
123 SkImageDecoder::Format format = SkImageDecoder::GetStreamFormat(&memStream) local
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItem.java 29 package org.jf.baksmali.Adaptors.Format;
113 referenceString = String.format("%s@%d",
161 switch (instruction.getOpcode().format) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Format.java 34 public enum Format {
74 private Format(int size) {
78 private Format(int size, boolean isPayloadFormat) {
  /frameworks/av/media/libstagefright/codecs/common/include/
voAudio.h 34 #define VO_PID_AUDIO_FORMAT (VO_PID_AUDIO_BASE | 0X0001) /*!< The format data of audio in track */
90 * General audio format info
104 VO_AUDIO_FORMAT Format; /*!< Sample rate */
135 * \param pOutInfo [OUT] The codec fills audio format and the input data size used in current call.
  /frameworks/base/rs/java/android/renderscript/
ProgramFragmentFixedFunction.java 123 * Format describes the pixel format of textures in the fixed
127 public enum Format {
146 Format(int id) {
153 Format format; field in class:ProgramFragmentFixedFunction.Builder.Slot
154 Slot(EnvMode _env, Format _fmt) {
156 format = _fmt;
184 switch (mSlots[i].format) {
200 switch (mSlots[i].format) {
    [all...]
  /frameworks/native/include/input/
KeyCharacterMap.h 55 enum Format {
72 static status_t load(const String8& filename, Format format, sp<KeyCharacterMap>* outMap);
76 const char* contents, Format format, sp<KeyCharacterMap>* outMap);
194 Format mFormat;
199 Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format);
232 static status_t load(Tokenizer* tokenizer, Format format, sp<KeyCharacterMap>* outMap)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10_1.h 211 DXGI_FORMAT Format;
474 DXGI_FORMAT Format,
622 DXGI_FORMAT Format);
671 DXGI_FORMAT *Format,
901 DXGI_FORMAT Format,
906 DXGI_FORMAT Format,
    [all...]
dxgitype.h 59 DXGI_FORMAT Format;
scardssp_p.c 26 unsigned char Format[TYPE_FORMAT_STRING_SIZE];
31 unsigned char Format[PROC_FORMAT_STRING_SIZE];
47 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&IByteBuffer_FormatStringOffsetTable[-3],0,0,0,0
51 &Object_StubDesc,__MIDL_ProcFormatString.Format,&IByteBuffer_FormatStringOffsetTable[-3],0,0,0
76 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardTypeConv_FormatStringOffsetTable[-3],0,0,0,0
80 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardTypeConv_FormatStringOffsetTable[-3],0,0,0
105 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardCmd_FormatStringOffsetTable[-3],0,0,0,0
109 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardCmd_FormatStringOffsetTable[-3],0,0,0
133 &Object_StubDesc,0,__MIDL_ProcFormatString.Format,&ISCardISO7816_FormatStringOffsetTable[-3],0,0,0,0
137 &Object_StubDesc,__MIDL_ProcFormatString.Format,&ISCardISO7816_FormatStringOffsetTable[-3],0,0,
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/tests/
test_util.h 110 void Format(const char* fmt, ...) {
154 file_path.Format("%s/%s", path_, entry->d_name);
226 src_path.Format("%s/%s", src_file_dir, src_file_name);
232 dst_path.Format("%s/%s", dst_file_dir, dst_file_name);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
name_table.cc 442 int32_t NameTable::Format() {

Completed in 1638 milliseconds

1 23 4 5 6 7