Searched refs:Format (Results 101 - 125 of 912) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction23x.java34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format23x;
73 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction31c.java34 import org.jf.dexlib2.Format;
45 public static final Format FORMAT = Format.Format31c;
72 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction3rc.java34 import org.jf.dexlib2.Format;
45 public static final Format FORMAT = Format.Format3rc;
78 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction3rmi.java34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format3rmi;
73 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction3rms.java34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format3rms;
73 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction35c.java34 import org.jf.dexlib2.Format;
45 public static final Format FORMAT = Format.Format35c;
97 @Override public Format getFormat() { return FORMAT; }
H A DImmutableInstruction35mi.java34 import org.jf.dexlib2.Format;
42 public static final Format FORMAT = Format.Format35mi;
93 @Override public Format getFormat() { return FORMAT; }
/external/deqp/framework/opengl/
H A DgluCallLogWrapper.cpp47 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/chromium_org/third_party/icu/source/i18n/unicode/
H A Dmsgfmt.h13 * 07/22/98 stephen Removed operator!= (defined in Format)
57 * <p><code>MessageFormat</code> differs from the other <code>Format</code>
75 * Format object is created, cached and used.
81 * <p>After construction, a custom Format object can be set for
97 * (or using a custom Format object if one was set).
153 * a <code>Format</code> instance for the format element. The following
154 * table shows how the values map to Format instances. Combinations not
156 * be a valid pattern string for the Format subclass used.
162 * <th>resulting Format object
323 class U_I18N_API MessageFormat : public Format {
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dgzip_stream.h58 // Format key for constructor
59 enum Format { enum in class:google::protobuf::io::GzipInputStream
73 Format format = AUTO,
92 Format format_;
112 // Format key for constructor
113 enum Format { enum in class:google::protobuf::io::GzipOutputStream
123 Format format;
/external/deqp/modules/gles3/functional/
H A Des3fCompressedTextureTests.cpp45 static const string getASTCFormatShortName (CompressedTexture::Format format)
80 const CompressedTexture::Format format = (CompressedTexture::Format)formatI;
99 const CompressedTexture::Format format = (CompressedTexture::Format)formatI;
/external/chromium_org/ui/base/l10n/
H A Dtime_format.cc29 base::string16 TimeFormat::Simple(TimeFormat::Format format,
36 base::string16 TimeFormat::Detailed(TimeFormat::Format format,
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,
87 formatter->Format(Formatter::UNIT_HOUR, hours, time_string);
91 formatter->Format(Formatter::TWO_UNITS_HOUR_MIN,
99 formatter->Format(Formatter::UNIT_DAY, days, time_string);
103 formatter->Format(Formatter::TWO_UNITS_DAY_HOUR,
/external/deqp/framework/common/
H A DtcuFormatUtil.hpp34 namespace Format namespace in namespace:tcu
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
83 #define TCU_BIT_DESC(BIT) tcu::Format::BitDesc(BIT, #BIT)
240 } // Format
246 /** Format value as hexadecimal number. */
248 inline Format::Hex<NumDigits> toHex (T value)
250 return Format::Hex<NumDigits>(toUint64(value));
253 /** Format value as hexadecimal number. */
255 inline Format::Hex<sizeof(T)*2> toHex (T value)
257 return Format
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_loader.cpp58 error->Format("Load address is not page aligned (%08x)", wanted_address);
67 error->Format("File offset is not page aligned (%08x)", file_offset);
74 error->Format("Can't open file: %s", strerror(errno));
79 error->Format(
106 error->Format("Can't read file: %s", strerror(errno));
120 error->Format("Not a %d-bit class: %d",
127 error->Format("Not little-endian class: %d", header_.e_ident[EI_DATA]);
132 error->Format("Not a shared library type: %d", header_.e_type);
137 error->Format("Unexpected ELF version: %d", header_.e_version);
142 error->Format("Unexpecte
[all...]
H A Dcrazy_linker_elf_relro.cpp34 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",
H A Dcrazy_linker_error_unittest.cpp42 TEST(Error, Format) {
44 error.Format("%s %s!", "Hi", "Cowboy");
/external/chromium_org/third_party/icu/source/i18n/
H A Dcurrfmt.h56 * Override Format API.
58 virtual UBool operator==(const Format& other) const;
61 * Override Format API.
63 virtual Format* clone() const;
69 * Override Format API.
77 * Override Format API.
84 * Override Format API.
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) {
51 Format format = curr->factory()(stream);
/external/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) {
51 Format format = curr->factory()(stream);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderInstruction.java34 import org.jf.dexlib2.Format;
56 public abstract Format getFormat();
/external/chromium_org/chrome/common/media/
H A Dwebrtc_logging_message_data.cc16 WebRtcLoggingMessageData::Format(base::Time start_time) const { function in class:WebRtcLoggingMessageData
/external/chromium_org/media/base/
H A Dvideo_decoder_config.h79 VideoFrame::Format format,
91 VideoFrame::Format format,
115 VideoFrame::Format format() const;
142 VideoFrame::Format format_;
/external/clang/lib/
H A DMakefile13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
/external/clang/unittests/
H A DMakefile22 PARALLEL_DIRS += Format ASTMatchers AST Tooling Sema
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderInstruction35c.java34 import org.jf.dexlib2.Format;
44 public static final Format FORMAT = Format.Format35c;
81 @Override public Format getFormat() { return FORMAT; }

Completed in 7430 milliseconds

1234567891011>>