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

<<11121314151617181920>>

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_library_list.cpp 242 error->Format("System library can't be loaded at fixed address %08x",
248 error->Format("Library already loaded at @%08x, can't load it at @%08x",
265 error->Format("Can't load system library %s: %s", lib_name, ::dlerror());
287 error->Format("Can't find library file %s", lib_name);
304 error->Format("Library file doesn't exist: %s", full_path.c_str());
326 error->Format("When loading %s: %s", base_name, dep_error.c_str());
  /external/chromium_org/third_party/skia/src/ports/
SkImageDecoder_WIC.cpp 52 // only the format.
64 * @param format Out parameter for the SkImageDecoder::Format of the SkStream. Only used if
67 bool decodeStream(SkStream* stream, SkBitmap* bm, WICModes wicMode, Format* format) const;
75 SkImageDecoder::Format fFormat;
86 static SkImageDecoder::Format GuidContainerFormat_to_Format(REFGUID guid) {
109 Format* format) const {
153 SkASSERT(format != NULL)
456 SkImageDecoder::Format format; local
    [all...]
  /external/skia/src/ports/
SkImageDecoder_WIC.cpp 52 // only the format.
64 * @param format Out parameter for the SkImageDecoder::Format of the SkStream. Only used if
67 bool decodeStream(SkStream* stream, SkBitmap* bm, WICModes wicMode, Format* format) const;
75 SkImageDecoder::Format fFormat;
86 static SkImageDecoder::Format GuidContainerFormat_to_Format(REFGUID guid) {
109 Format* format) const {
153 SkASSERT(format != NULL)
456 SkImageDecoder::Format format; local
    [all...]
  /ndk/sources/android/crazy_linker/src/
crazy_linker_library_list.cpp 242 error->Format("System library can't be loaded at fixed address %08x",
248 error->Format("Library already loaded at @%08x, can't load it at @%08x",
265 error->Format("Can't load system library %s: %s", lib_name, ::dlerror());
287 error->Format("Can't find library file %s", lib_name);
304 error->Format("Library file doesn't exist: %s", full_path.c_str());
326 error->Format("When loading %s: %s", base_name, dep_error.c_str());
  /external/chromium_org/media/audio/win/
audio_low_latency_output_win.cc 38 WAVEFORMATPCMEX format; local
49 if (!client || FAILED(CoreAudioUtil::GetSharedModeMixFormat(client, &format)))
52 return static_cast<int>(format.Format.nSamplesPerSec);
82 // Set up the desired render format specified by the client. We use the
86 // Begin with the WAVEFORMATEX structure that specifies the basic format.
87 WAVEFORMATEX* format = &format_.Format; local
88 format->wFormatTag = WAVE_FORMAT_EXTENSIBLE;
89 format->nChannels = params.channels()
    [all...]
core_audio_util_win.cc 111 const WAVEFORMATPCMEX& format) {
112 os << "wFormatTag: 0x" << std::hex << format.Format.wFormatTag
113 << ", nChannels: " << std::dec << format.Format.nChannels
114 << ", nSamplesPerSec: " << format.Format.nSamplesPerSec
115 << ", nAvgBytesPerSec: " << format.Format.nAvgBytesPerSec
116 << ", nBlockAlign: " << format.Format.nBlockAlig
727 WAVEFORMATPCMEX format = {0}; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
RenderTarget11.cpp 222 mInternalFormat = d3d11_gl::GetInternalFormat(desc.Format, renderer->getCurrentClientVersion());
223 mActualFormat = d3d11_gl::GetInternalFormat(desc.Format, renderer->getCurrentClientVersion());
268 mInternalFormat = d3d11_gl::GetInternalFormat(desc.Format, renderer->getCurrentClientVersion());
269 mActualFormat = d3d11_gl::GetInternalFormat(desc.Format, renderer->getCurrentClientVersion());
304 desc.Format = texFormat;
311 // If a rendertarget or depthstencil format exists for this texture format,
344 srvDesc.Format = srvFormat;
362 dsvDesc.Format = dsvFormat;
381 rtvDesc.Format = rtvFormat
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
RenderTarget9.cpp 36 mInternalFormat = d3d9_gl::GetInternalFormat(description.Format);
37 mActualFormat = d3d9_gl::GetInternalFormat(description.Format);
94 // This format requires that the data be initialized before the render target can be used
  /external/chromium_org/third_party/icu/source/i18n/unicode/
choicfmt.h 18 * 07/22/98 stephen Removed operator!= (implemented in Format)
29 * \brief C++ API: Choice Format.
37 #include "unicode/format.h"
85 * <p><em>String</em> is the format string for this range, with special
207 * fmt.format(x, str);
234 * Format* testFormats[] =
245 * pattform.format(testArgs, 2, str, fp, status );
333 * Clone this Format object polymorphically. The caller owns the
339 virtual Format* clone(void) const;
342 * Return true if the given Format objects are semantically equal
725 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat
734 ChoiceFormat::format(double number, function in class:ChoiceFormat
740 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkMask.h 17 the 3-channel 3D format. These are passed to SkMaskFilter objects.
20 enum Format {
36 Format fFormat;
78 * this asserts that the mask's format is kLCD16_Format, and that (x,y)
91 * this asserts that the mask's format is kLCD32_Format, and that (x,y)
104 * this asserts that the mask's format is 32bits, and that (x,y)
117 * at runtime based on the mask format. This will be slightly slower than
118 * using one of the routines where the format is implied by the name
  /external/chromium_org/third_party/skia/src/core/
SkGlyph.h 17 // needs to be != to any valid SkMask::Format
45 * Compute the rowbytes for the specified width and mask-format.
47 static unsigned ComputeRowBytes(unsigned width, SkMask::Format format) {
49 if (SkMask::kBW_Format == format) {
51 } else if (SkMask::kARGB32_Format == format ||
52 SkMask::kLCD32_Format == format)
55 } else if (SkMask::kLCD16_Format == format) {
64 return ComputeRowBytes(fWidth, (SkMask::Format)fMaskFormat);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libbmp.cpp 22 virtual Format getFormat() const SK_OVERRIDE {
56 static SkImageDecoder::Format get_format_bmp(SkStreamRewindable* stream) {
SkImageDecoder_wbmp.cpp 20 virtual Format getFormat() const SK_OVERRIDE {
164 static SkImageDecoder::Format get_format_wbmp(SkStreamRewindable* stream) {
  /external/icu/icu4c/source/i18n/unicode/
choicfmt.h 18 * 07/22/98 stephen Removed operator!= (implemented in Format)
29 * \brief C++ API: Choice Format.
36 #include "unicode/format.h"
154 * fmt.format(x, str);
243 * Clones this Format object. The caller owns the
249 virtual Format* clone(void) const;
252 * Returns true if the given Format objects are semantically equal.
259 virtual UBool operator==(const Format& other) const;
300 * parsed with that format,and should be in
304 * @param formatsToCopy The format strings you want to use for each limit
    [all...]
  /external/skia/include/core/
SkMask.h 17 the 3-channel 3D format. These are passed to SkMaskFilter objects.
20 enum Format {
36 Format fFormat;
78 * this asserts that the mask's format is kLCD16_Format, and that (x,y)
91 * this asserts that the mask's format is kLCD32_Format, and that (x,y)
104 * this asserts that the mask's format is 32bits, and that (x,y)
117 * at runtime based on the mask format. This will be slightly slower than
118 * using one of the routines where the format is implied by the name
  /external/skia/src/core/
SkGlyph.h 17 // needs to be != to any valid SkMask::Format
45 * Compute the rowbytes for the specified width and mask-format.
47 static unsigned ComputeRowBytes(unsigned width, SkMask::Format format) {
49 if (SkMask::kBW_Format == format) {
51 } else if (SkMask::kARGB32_Format == format ||
52 SkMask::kLCD32_Format == format)
55 } else if (SkMask::kLCD16_Format == format) {
64 return ComputeRowBytes(fWidth, (SkMask::Format)fMaskFormat);
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 22 virtual Format getFormat() const SK_OVERRIDE {
56 static SkImageDecoder::Format get_format_bmp(SkStreamRewindable* stream) {
SkImageDecoder_wbmp.cpp 20 virtual Format getFormat() const SK_OVERRIDE {
164 static SkImageDecoder::Format get_format_wbmp(SkStreamRewindable* stream) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttrsXmlParserTest.java 20 import com.android.ide.common.api.IAttributeInfo.Format;
69 assertEquals(Format.DIMENSION, info.getAttributes()[0].getFormats().iterator().next());
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_drawpix.c 142 * Handle a common case of drawing a format/type combination that
143 * exactly matches the renderbuffer format.
150 GLenum format, GLenum type,
156 height, format, type, 0, 0);
158 _mesa_image_row_stride(unpack, width, format, type);
159 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format);
194 GLenum format, GLenum type,
224 if (format == GL_RGB &&
226 (rb->Format == MESA_FORMAT_XRGB8888 ||
227 rb->Format == MESA_FORMAT_ARGB8888))
514 const GLenum format = GL_DEPTH_STENCIL_EXT; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 142 * Handle a common case of drawing a format/type combination that
143 * exactly matches the renderbuffer format.
150 GLenum format, GLenum type,
156 height, format, type, 0, 0);
158 _mesa_image_row_stride(unpack, width, format, type);
159 const GLint rowLength = width * _mesa_get_format_bytes(rb->Format);
194 GLenum format, GLenum type,
224 if (format == GL_RGB &&
226 (rb->Format == MESA_FORMAT_XRGB8888 ||
227 rb->Format == MESA_FORMAT_ARGB8888))
514 const GLenum format = GL_DEPTH_STENCIL_EXT; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 142 // Generates a textual description of a given exit code, in the format
237 DeathTestAbort(::testing::internal::String::Format( \
257 DeathTestAbort(::testing::internal::String::Format( \
476 // in the format specified by wait(2). On Windows, this is the
676 const String filter_flag = String::Format("--%s%s=%s.%s",
680 const String internal_flag = String::Format(
699 String command_line = String::Format("%s %s \"%s\"",
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 142 // Generates a textual description of a given exit code, in the format
237 DeathTestAbort(::testing::internal::String::Format( \
257 DeathTestAbort(::testing::internal::String::Format( \
479 // in the format specified by wait(2). On Windows, this is the
678 const String filter_flag = String::Format("--%s%s=%s.%s",
682 const String internal_flag = String::Format(
701 String command_line = String::Format("%s %s \"%s\"",
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 142 // Generates a textual description of a given exit code, in the format
237 DeathTestAbort(::testing::internal::String::Format( \
257 DeathTestAbort(::testing::internal::String::Format( \
476 // in the format specified by wait(2). On Windows, this is the
676 const String filter_flag = String::Format("--%s%s=%s.%s",
680 const String internal_flag = String::Format(
699 String command_line = String::Format("%s %s \"%s\"",
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 138 // Generates a textual description of a given exit code, in the format
224 DeathTestAbort(::testing::internal::String::Format( \
244 DeathTestAbort(::testing::internal::String::Format( \
433 // in the format specified by wait(2). On Windows, this is the
628 const String filter_flag = String::Format("--%s%s=%s.%s",
632 const String internal_flag = String::Format(
651 String command_line = String::Format("%s %s \"%s\"",
863 DeathTestAbort(String::Format("chdir(\"%s\") failed: %s",
    [all...]

Completed in 4050 milliseconds

<<11121314151617181920>>