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

1 2 34 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction20t.java 29 package org.jf.dexlib.Code.Format;
81 public Format getFormat() {
82 return Format.Format20t;
Instruction21h.java 29 package org.jf.dexlib.Code.Format;
68 public Format getFormat() {
69 return Format.Format21h;
Instruction21s.java 29 package org.jf.dexlib.Code.Format;
68 public Format getFormat() {
69 return Format.Format21s;
Instruction22b.java 29 package org.jf.dexlib.Code.Format;
72 public Format getFormat() {
73 return Format.Format22b;
Instruction22s.java 29 package org.jf.dexlib.Code.Format;
72 public Format getFormat() {
73 return Format.Format22s;
Instruction22x.java 29 package org.jf.dexlib.Code.Format;
71 public Format getFormat() {
72 return Format.Format22x;
Instruction23x.java 29 package org.jf.dexlib.Code.Format;
72 public Format getFormat() {
73 return Format.Format23x;
Instruction30t.java 29 package org.jf.dexlib.Code.Format;
65 public Format getFormat() {
66 return Format.Format30t;
Instruction31c.java 29 package org.jf.dexlib.Code.Format;
66 public Format getFormat() {
67 return Format.Format31c;
Instruction31i.java 29 package org.jf.dexlib.Code.Format;
68 public Format getFormat() {
69 return Format.Format31i;
Instruction31t.java 29 package org.jf.dexlib.Code.Format;
73 public Format getFormat() {
74 return Format.Format31t;
Instruction32x.java 29 package org.jf.dexlib.Code.Format;
69 public Format getFormat() {
70 return Format.Format32x;
Instruction3rmi.java 32 package org.jf.dexlib.Code.Format;
86 public Format getFormat() {
87 return Format.Format3rmi;
Instruction51l.java 29 package org.jf.dexlib.Code.Format;
68 public Format getFormat() {
69 return Format.Format51l;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
formatter.hpp 28 // const format functor ----------------------------------------------------//
30 // constant format functor
41 const_formatF(const RangeT& Format) :
42 m_Format(::boost::begin(Format), ::boost::end(Format)) {}
63 // identity format functor ----------------------------------------------------//
65 // identity format functor
77 // empty format functor ( used by erase ) ------------------------------------//
79 // empty format functor
90 // dissect format functor ----------------------------------------------------/
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleter.java 25 import static com.android.ide.common.api.IAttributeInfo.Format.BOOLEAN;
26 import static com.android.ide.common.api.IAttributeInfo.Format.DIMENSION;
27 import static com.android.ide.common.api.IAttributeInfo.Format.ENUM;
28 import static com.android.ide.common.api.IAttributeInfo.Format.FLAG;
29 import static com.android.ide.common.api.IAttributeInfo.Format.FLOAT;
30 import static com.android.ide.common.api.IAttributeInfo.Format.INTEGER;
31 import static com.android.ide.common.api.IAttributeInfo.Format.REFERENCE;
32 import static com.android.ide.common.api.IAttributeInfo.Format.STRING;
37 import com.android.ide.common.api.IAttributeInfo.Format;
66 EnumSet<Format> formats = info.getFormats()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestAttributeInfo.java 26 private final EnumSet<Format> mFormats;
36 public TestAttributeInfo(String name, EnumSet<Format> formats, String definedBy,
63 public @NonNull EnumSet<Format> getFormats() {
  /external/chromium_org/media/audio/win/
waveout_output_win.cc 94 format_.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
95 format_.Format.nChannels = params.channels();
96 format_.Format.nSamplesPerSec = params.sample_rate();
97 format_.Format.wBitsPerSample = params.bits_per_sample();
98 format_.Format.cbSize = sizeof(format_) - sizeof(WAVEFORMATEX);
100 format_.Format.nBlockAlign = (format_.Format.nChannels *
101 format_.Format.wBitsPerSample) / 8;
102 format_.Format.nAvgBytesPerSec = format_.Format.nBlockAlign
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
plurfmt.h 81 * <code>applyPattern()</code> method. The <code>format()</code>
109 * format patterns. <code>PluralFormat</code> preserves these so that you
113 * automatically evaluate the resulting format pattern.<br>
115 * in message texts to define a nested format pattern.<br>
120 * <code>format()</code> method. It will be formatted using a
139 * msgFmt->format(args1, 1, result, ignore, status);
142 * msgFmt->format(args2, 1, result, ignore, status);
153 * If you use plural format strings with <code>MessageFormat</code> and want
158 * <code>'</code> in the number format pattern. Since
168 * constructor, this locale will be used to format the number in the messag
    [all...]
  /external/icu4c/i18n/unicode/
plurfmt.h 85 * <code>applyPattern()</code> method. The <code>format()</code>
127 * If you need a custom format and have a non-zero offset, then you need to pass the
136 * constructor, this locale will be used to format the number in the message
147 class U_I18N_API PluralFormat : public Format {
304 * Sets the pattern used by this plural format.
305 * The method parses the pattern and creates a map of format strings
309 * @param pattern the pattern for this plural format
318 using Format::format;
332 UnicodeString format(int32_t number, UErrorCode& status) const
    [all...]
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 41 * {@code Format} classes in that you create a {@code MessageFormat}
101 * produce a number format with the hash-sign quoted, with a result such as:
109 * <dd>The rules for using quotes within message format patterns unfortunately
125 * {@code arguments} array passed to the {@code format} methods or
129 * {@code Format} instance for the format element. The following table
130 * shows how the values map to {@code Format} instances. Combinations not shown in the
132 * for the {@code Format} subclass used.
136 * <th>Format Type</th>
137 * <th>Format Style</th
476 MessageFormat format = (MessageFormat) object; local
548 public final StringBuffer format(Object[] objects, StringBuffer buffer, method in class:MessageFormat
569 Format format = formats[i]; local
700 public final StringBuffer format(Object object, StringBuffer buffer, method in class:MessageFormat
717 public static String format(String format, Object... args) { method in class:MessageFormat
866 Format format = formats[i]; local
1071 Format format = formats[i]; local
1151 Format format = formats[i]; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 45 * <code>Image</code> defines a data format for a graphical image. The image
46 * is defined by a format, a height and width, and the image data. The width and
56 public enum Format {
185 * Arbitrary depth format. The precision is chosen by the video
211 * Texture data is stored as {@link Format#RGB16F} in system memory,
212 * but will be converted to {@link Format#RGB111110F} when sent
223 * Texture data is stored as {@link Format#RGB16F} in system memory,
224 * but will be converted to {@link Format#RGB9E5} when sent
265 private Format(int bpp){
269 private Format(int bpp, boolean isFP)
313 protected Format format; field in class:Image
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 23 import com.android.ide.common.api.IAttributeInfo.Format;
55 AttributeInfo info = new AttributeInfo("test", EnumSet.noneOf(Format.class));
62 AttributeInfo info = new AttributeInfo("test", Format.STRING_SET);
69 AttributeInfo info = new AttributeInfo("test", Format.BOOLEAN_SET);
80 AttributeInfo info = new AttributeInfo("test", Format.INTEGER_SET);
95 AttributeInfo info = new AttributeInfo("test", Format.FLOAT_SET);
115 AttributeInfo info = new AttributeInfo("test", Format.DIMENSION_SET);
127 // Since we allow resources even when not specified in format, don't assert
133 AttributeInfo info = new AttributeInfo("test", Format.COLOR_SET);
146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION))
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 42 import com.jme3.scene.VertexBuffer.Format;
57 public static void convertToFixed(Geometry geom, Format posFmt, Format nmFmt, Format tcFmt){
69 if (posFmt != Format.Float){
92 normals.setupData(Usage.Static, 3, Format.Byte, bb);
99 if (tcFmt != Format.Float){
118 Format targetFmt;
119 if (vb.getFormat() == Format.UnsignedInt && vertCount <= 0xffff){
121 targetFmt = Format.UnsignedByte
    [all...]
  /external/chromium_org/media/base/
video_frame.h 42 enum Format {
43 INVALID = 0, // Invalid format value. Used for error reporting.
49 NATIVE_TEXTURE = 12, // Native texture. Pixel-format agnostic.
56 // Returns the name of a Format as a string.
57 static std::string FormatToString(Format format);
98 Format format,
107 static bool IsValidConfig(Format format, const gfx::Size& coded_size
195 Format format() const { return format_; } function in class:media::VideoFrame
    [all...]

Completed in 399 milliseconds

1 2 34 5 6 7 8 91011>>