HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 276 - 300 of 895) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blit.c 152 if (readRb->Format == drawRb->Format) {
154 pixelSize = _mesa_get_format_bytes(readRb->Format);
169 if (readRb->Format == MESA_FORMAT_Z32_FLOAT ||
170 readRb->Format == MESA_FORMAT_Z32_FLOAT_X24S8) {
218 GLint formatSize = _mesa_get_format_bytes(readRb->Format);
300 _mesa_unpack_rgba_row(readRb->Format, srcWidth, srcRowStart,
304 _mesa_unpack_float_z_row(readRb->Format, srcWidth, srcRowStart,
308 _mesa_unpack_uint_z_row(readRb->Format, srcWidth, srcRowStart,
312 _mesa_unpack_ubyte_stencil_row(readRb->Format, srcWidth
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkMaskFilter.h 41 /** Returns the format of the resulting mask that this subclass will return
44 virtual SkMask::Format getFormat() const = 0;
  /external/chromium_org/third_party/skia/src/core/
SkMask.cpp 61 static int maskFormatToShift(SkMask::Format format) {
62 SkASSERT((unsigned)format < SK_ARRAY_COUNT(gMaskFormatToShift));
63 SkASSERT(SkMask::kBW_Format != format);
64 return gMaskFormatToShift[format];
SkScalerContext.h 98 SkMask::Format getFormat() const {
99 return static_cast<SkMask::Format>(fMaskFormat);
158 SkMask::Format getMaskFormat() const {
159 return (SkMask::Format)fRec.fMaskFormat;
  /external/chromium_org/third_party/skia/src/ports/
SkImageDecoder_CG.cpp 215 // format.
266 SkImageDecoder::Format fFormat;
280 static SkImageDecoder::Format UTType_to_Format(const CFStringRef uttype) {
289 static SkImageDecoder::Format get_format_cg(SkStream *stream) {
304 static SkTRegistry<SkImageDecoder::Format, SkStream*> gFormatReg(get_format_cg);
  /external/chromium_org/tools/grit/grit/format/
js_map_format.py 18 def Format(root, lang='en', output_dir='.'):
30 """Format a single message."""
  /external/chromium_org/webkit/support/
mock_webclipboard_impl.h 25 virtual bool isFormatAvailable(WebKit::WebClipboard::Format format,
  /external/gtest/src/
gtest-filepath.cc 119 String dot_extension(String::Format(".%s", extension));
182 file = String::Format("%s.%s", base_name.c_str(), extension);
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
196 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /external/icu4c/i18n/unicode/
datefmt.h 29 #include "unicode/format.h"
51 * DateFormat helps you to format and parse dates for any locale. Your code can
53 * week, or even the calendar format: lunar vs. solar.
55 * To format a date for the current Locale, use one of the static factory
62 * myString = dfmt->format( myDate, myString );
66 * format and use it multiple times so that the system doesn't have to fetch the
75 * cout << df->format( myDateArr[i], myString ) << endl;
86 * myString = dfmt->format( myDate, myString );
91 * To format a date for a different Locale, specify it in the call to
106 * Use createDateInstance() to produce the normal date format for that country
785 DateFormat::format(const Formattable& obj, function in class:DateFormat
    [all...]
numfmt.h 35 #include "unicode/format.h"
57 * NumberFormat helps you to format and parse numbers for any locale.
60 * decimal digits used, or whether the number format is even decimal.
62 * To format a number for the current Locale, use one of the static
70 * nf->format(myNumber, myString);
78 * the format and use it multiple times so that the system doesn't
90 * nf->format(a[i], myString);
96 * To format a number for a different Locale, specify it in the
111 * Use createInstance to get the normal number format for that country.
113 * to get the currency number format for that country. Use getPercen
1131 NumberFormat::format(const Formattable& obj, function in class:NumberFormat
    [all...]
  /external/icu4c/i18n/
windtfmt.h 21 #include "unicode/format.h"
29 * \brief C++ API: Format dates using Windows API.
49 virtual Format *clone(void) const;
53 UnicodeString &format(Calendar &cal, UnicodeString &appendTo, FieldPosition &pos) const;
55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { function in class:Win32DateFormat
131 return DateFormat::format(date, appendTo);
winnmfmt.h 19 #include "unicode/format.h"
29 * \brief C++ API: Format numbers using Windows API.
45 virtual Format *clone(void) const;
50 * Format a double number. Concrete subclasses must implement
60 virtual UnicodeString& format(double number,
64 * Format a long number. Concrete subclasses must implement
74 virtual UnicodeString& format(int32_t number,
79 * Format an int64 number.
88 virtual UnicodeString& format(int64_t number,
93 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const
    [all...]
  /external/jhead/
jhead.h 152 int Format; // format of data
153 char* Value; // value of data in string format
154 int DataLength; // length of string when format says Value is a string
162 int Format;
163 int DataLength; // Number of elements in Format. -1 means any length.
179 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount);
180 double ConvertAnyFormat(void * ValuePtr, int Format);
190 // Exif format descriptor stuff
255 extern char* formatStr(int format);
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorBlend.java 38 import com.jme3.texture.Image.Format;
125 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8; local
162 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorVoronoi.java 39 import com.jme3.texture.Image.Format;
79 Format format = voronoiColorType != 0 || colorBand != null ? Format.RGBA8 : Format.Luminance8; local
159 return new Texture3D(new Image(format, width, height, depth, dataArray));
TextureGeneratorWood.java 37 import com.jme3.texture.Image.Format;
82 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8; local
119 return new Texture3D(new Image(format, width, height, depth, dataArray));
  /external/llvm/tools/llvm-diff/
DiffLog.cpp 26 StringRef LogBuilder::getFormat() const { return Format; }
  /external/llvm/utils/unittest/googletest/
gtest-filepath.cc 117 String dot_extension(String::Format(".%s", extension));
180 file = String::Format("%s.%s", base_name.c_str(), extension);
182 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
194 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 119 String dot_extension(String::Format(".%s", extension));
182 file = String::Format("%s.%s", base_name.c_str(), extension);
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
196 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /external/mesa3d/src/mesa/swrast/
s_blit.c 152 if (readRb->Format == drawRb->Format) {
154 pixelSize = _mesa_get_format_bytes(readRb->Format);
169 if (readRb->Format == MESA_FORMAT_Z32_FLOAT ||
170 readRb->Format == MESA_FORMAT_Z32_FLOAT_X24S8) {
218 GLint formatSize = _mesa_get_format_bytes(readRb->Format);
300 _mesa_unpack_rgba_row(readRb->Format, srcWidth, srcRowStart,
304 _mesa_unpack_float_z_row(readRb->Format, srcWidth, srcRowStart,
308 _mesa_unpack_uint_z_row(readRb->Format, srcWidth, srcRowStart,
312 _mesa_unpack_ubyte_stencil_row(readRb->Format, srcWidth
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-filepath.cc 104 String dot_extension(String::Format(".%s", extension));
151 file = String::Format("%s.%s", base_name.c_str(), extension);
153 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
165 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /external/protobuf/gtest/src/
gtest-filepath.cc 104 String dot_extension(String::Format(".%s", extension));
151 file = String::Format("%s.%s", base_name.c_str(), extension);
153 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
165 return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.cpp 15 b.Format(_L("vector buffer at % d "), aLine);
  /external/sfntly/cpp/src/test/
verify_name.cc 48 EXPECT_EQ(name->Format(), NAME_FORMAT);
  /external/skia/include/core/
SkMaskFilter.h 42 /** Returns the format of the resulting mask that this subclass will return
45 virtual SkMask::Format getFormat() const = 0;

Completed in 1724 milliseconds

<<11121314151617181920>>