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

1 2 3 45 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction22t.java 34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format22t;
73 @Override public Format getFormat() { return FORMAT; }
ImmutableInstruction23x.java 34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format23x;
73 @Override public Format getFormat() { return FORMAT; }
ImmutableInstruction31c.java 34 import org.jf.dexlib2.Format;
45 public static final Format FORMAT = Format.Format31c;
72 @Override public Format getFormat() { return FORMAT; }
ImmutableInstruction3rc.java 34 import org.jf.dexlib2.Format;
45 public static final Format FORMAT = Format.Format3rc;
78 @Override public Format getFormat() { return FORMAT; }
ImmutableInstruction3rmi.java 34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format3rmi;
73 @Override public Format getFormat() { return FORMAT; }
ImmutableInstruction3rms.java 34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format3rms;
73 @Override public Format getFormat() { return FORMAT; }
  /frameworks/rs/cpu_ref/linkloader/utils/
raw_ostream.h 21 #include <llvm/Support/Format.h>
29 char const * = "", // Format string.
30 ...); // Format variable.
  /libcore/luni/src/main/java/java/text/
FieldPosition.java 22 * to the format method with such a parameter, then the indices will be set to
26 * various format classes (for example {@code NumberFormat.INTEGER_FIELD}) or
27 * one of the fields of type {@code Format.Field}.
37 private Format.Field attribute;
49 public FieldPosition(Format.Field attribute) {
57 public FieldPosition(Format.Field attribute, int field) {
100 public Format.Field getFieldAttribute() {
  /ndk/sources/android/crazy_linker/src/
crazy_linker_error.h 17 // error->Format("Feature %s is not implemented", feature_name);
33 void Format(const char* fmt, ...);
  /external/chromium_org/media/audio/
audio_parameters.h 33 enum Format {
37 AUDIO_LAST_FORMAT // Only used for validation of format.
57 AudioParameters(Format format, ChannelLayout channel_layout,
60 AudioParameters(Format format, ChannelLayout channel_layout,
64 AudioParameters(Format format, ChannelLayout channel_layout,
69 void Reset(Format format, ChannelLayout channel_layout
91 Format format() const { return format_; } function in class:media::AudioParameters
    [all...]
  /external/deqp/framework/opengl/
gluCallLogWrapper.cpp 47 inline tcu::Format::ArrayPointer<T> getPointerStr (const T* arr, deUint32 size)
53 inline tcu::Format::ArrayPointer<T> getPointerStr (const T* arr, int size)
98 return str << tcu::Format::Enum(getFramebufferAttachmentTypeName, *fmt.value);
101 return str << tcu::Format::Enum(getCubeMapFaceName, *fmt.value);
104 return str << tcu::Format::Enum(getTypeName, *fmt.value);
107 return str << tcu::Format::Enum(getFramebufferColorEncodingName, *fmt.value);
110 return str << tcu::Format::Enum(getBooleanName, *fmt.value);
  /external/deqp/modules/gles3/functional/
es3fCompressedTextureTests.cpp 45 static const string getASTCFormatShortName (CompressedTexture::Format format)
47 DE_ASSERT(tcu::isASTCFormat(format));
48 const IVec3 blockSize = tcu::getASTCBlockSize(format);
51 return de::toString(blockSize.x()) + "x" + de::toString(blockSize.y()) + (tcu::isASTCSRGBFormat(format) ? "_srgb" : "");
80 const CompressedTexture::Format format = (CompressedTexture::Format)formatI; local
82 if (!tcu::isASTCFormat(format))
84 if (tcu::isASTCSRGBFormat(format) && isBlockTestTypeHDROnly(astcTestType)
99 const CompressedTexture::Format format = (CompressedTexture::Format)formatI; local
    [all...]
  /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/ui/base/l10n/
time_format.cc 29 base::string16 TimeFormat::Simple(TimeFormat::Format format,
32 return Detailed(format, length, 0, delta);
36 base::string16 TimeFormat::Detailed(TimeFormat::Format format,
45 // Negative cutoff: always use two-value format.
60 const Formatter* formatter = g_container.Get().Get(format, length);
64 formatter->Format(Formatter::UNIT_SEC, seconds, time_string);
72 formatter->Format(Formatter::UNIT_MIN, minutes, time_string);
77 formatter->Format(Formatter::TWO_UNITS_MIN_SEC
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
msgfmt.h 13 * 07/22/98 stephen Removed operator!= (defined in Format)
29 #include "unicode/format.h"
73 * {@link #setFormat(const UnicodeString& formatName, const Format& format, UErrorCode& status)},
74 * {@link #adoptFormat(const UnicodeString& formatName, Format* formatToAdopt, UErrorCode& status)},
75 * {@link #format(const UnicodeString* argumentNames, const Formattable* arguments,
81 * <p>If this format uses named arguments, certain methods that take or
84 * UErrorCode is set to U_ILLEGAL_ARGUMENT_ERROR by format, and to
87 * {@link #adoptFormats(Format** formatsToAdopt, int32_t count)},
88 * {@link #setFormats(const Format** newFormats,int32_t count)}
950 MessageFormat::format(const Formattable& obj, function in class:MessageFormat
    [all...]
  /external/deqp/framework/common/
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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 26 import static com.android.ide.common.api.IAttributeInfo.Format.BOOLEAN;
27 import static com.android.ide.common.api.IAttributeInfo.Format.COLOR;
28 import static com.android.ide.common.api.IAttributeInfo.Format.DIMENSION;
29 import static com.android.ide.common.api.IAttributeInfo.Format.ENUM;
30 import static com.android.ide.common.api.IAttributeInfo.Format.FLAG;
31 import static com.android.ide.common.api.IAttributeInfo.Format.FLOAT;
32 import static com.android.ide.common.api.IAttributeInfo.Format.FRACTION;
33 import static com.android.ide.common.api.IAttributeInfo.Format.INTEGER;
34 import static com.android.ide.common.api.IAttributeInfo.Format.STRING;
49 * the attribute was declared. This must include a format (string, reference, float, etc.)
    [all...]
  /external/chromium_org/content/common/gpu/media/
v4l2_video_device.h 21 // Utility format conversion functions
22 static media::VideoFrame::Format V4L2PixFmtToVideoFrameFormat(uint32 format);
23 static uint32 VideoFrameFormatToV4L2PixFmt(media::VideoFrame::Format format);
25 // Convert format requirements requested by a V4L2 device to gfx::Size.
26 static gfx::Size CodedSizeFromV4L2Format(struct v4l2_format format);
93 // Returns the preferred V4L2 input format or 0 if don't care.
96 // Returns the preferred V4L2 output format or 0 if don't care.
  /external/chromium_org/content/renderer/media/
mock_media_stream_video_sink.h 33 media::VideoFrame::Format format() const { return format_; } function in class:content::MockMediaStreamVideoSink
43 const media::VideoCaptureFormat& format,
48 media::VideoFrame::Format format_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebClipboard.h 49 enum Format {
67 virtual bool isFormatAvailable(Format, Buffer) { return false; }
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_relro.cpp 34 error->Format("%s: Could not unmap %p-%p: %s",
51 error->Format("%s: Could not map %p-%p: %s",
77 error->Format("Could not allocate RELRO ashmem region for %s: %s",
94 error->Format("Could not allocate RELRO mapping: %s", strerror(errno));
126 error->Format("Could not allocate RELRO mapping for: %s", strerror(errno));
145 error->Format("Could not make RELRO ashmem region read-only: %s",
167 error->Format("Ashmem file descriptor is not read-only: %s\n",
173 error->Format("Cannot map RELRO ashmem region as read-only: %s\n",
crazy_linker_error_unittest.cpp 42 TEST(Error, Format) {
44 error.Format("%s %s!", "Hi", "Cowboy");
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_FactoryRegistrar.cpp 48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) {
51 Format format = curr->factory()(stream); local
57 if (format != kUnknown_Format) {
58 return format;
  /external/skia/src/images/
SkImageDecoder_FactoryRegistrar.cpp 48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) {
51 Format format = curr->factory()(stream); local
57 if (format != kUnknown_Format) {
58 return format;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderInstruction.java 34 import org.jf.dexlib2.Format;
56 public abstract Format getFormat();

Completed in 2825 milliseconds

1 2 3 45 6 7 8 91011>>