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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/media/base/
audio_bus.cc 37 // |Format| is the destination type. If a bias is present, |Fixed| must be a
38 // type larger than |Format| such that operations can be made without
39 // overflowing. Without a bias |Fixed| must be the same as |Format|.
40 template<class Format, class Fixed, Format Bias>
44 COMPILE_ASSERT((Bias == 0 && sizeof(Fixed) == sizeof(Format)) ||
45 sizeof(Fixed) > sizeof(Format), invalid_deinterleave_types);
46 const Format* source = static_cast<const Format*>(src);
58 // |Format| is the destination type. If a bias is present, |Fixed| must be
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Color.js 32 * @param {string=} format
36 WebInspector.Color = function(rgba, format, originalText)
40 this._format = format || null;
64 var format;
66 format = WebInspector.Color.Format.ShortHEX;
69 format = WebInspector.Color.Format.HEX;
73 return new WebInspector.Color([r / 255, g / 255, b / 255, 1], format, text);
81 return new WebInspector.Color(rgba, WebInspector.Color.Format.RGB, text)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
dtitvfmt.h 19 * \brief C++ API: Format and parse date interval in a language-independent manner.
49 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008"
108 * supported. And the interval format will be fall back to fall-back
171 * formatting: time zone, calendar type, pattern, date format symbols,
180 * the format style.
187 * Locale provides the timezone, calendar, and format symbols information.
196 * DateTime format.
212 * dtIntervalFmt->format(dtInterval, dateIntervalUnicodeString, pos, status);
218 class U_I18N_API DateIntervalFormat : public Format {
229 * @param skeleton the skeleton on which interval format based
    [all...]
  /external/icu4c/i18n/unicode/
dtitvfmt.h 19 * \brief C++ API: Format and parse date interval in a language-independent manner.
49 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008"
108 * supported. And the interval format will be fall back to fall-back
171 * formatting: time zone, calendar type, pattern, date format symbols,
180 * the format style.
187 * Locale provides the timezone, calendar, and format symbols information.
196 * DateTime format.
212 * dtIntervalFmt->format(dtInterval, dateIntervalUnicodeString, pos, status);
218 class U_I18N_API DateIntervalFormat : public Format {
229 * @param skeleton the skeleton on which interval format based
    [all...]
  /external/chromium_org/media/audio/
audio_parameters.cc 22 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout,
25 : format_(format),
34 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout,
38 : format_(format),
47 void AudioParameters::Reset(Format format, ChannelLayout channel_layout,
54 format_ = format;
  /external/jmonkeyengine/engine/src/test/jme3test/niftygui/
TestNiftyToMesh.java 44 import com.jme3.texture.Image.Format;
70 Texture2D depthTex = new Texture2D(1024, 768, Format.Depth);
74 Texture2D tex = new Texture2D(1024, 768, Format.RGBA8);
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestFBOPassthrough.java 43 import com.jme3.texture.Image.Format;
72 Texture2D fbTex = new Texture2D(w, h, Format.RGBA8);
73 fb.setDepthBuffer(Format.Depth);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction20bc.java 29 package org.jf.dexlib.Code.Format;
74 public Format getFormat() {
75 return Format.Format20bc;
Instruction21t.java 29 package org.jf.dexlib.Code.Format;
86 public Format getFormat() {
87 return Format.Format21t;
Instruction22c.java 29 package org.jf.dexlib.Code.Format;
68 throw new RuntimeException(String.format("%s index is too large. Use the %s instruction instead.",
71 throw new RuntimeException(String.format("%s index is too large.", opcode.referenceType.name()));
80 public Format getFormat() {
81 return Format.Format22c;
Instruction22cs.java 29 package org.jf.dexlib.Code.Format;
76 public Format getFormat() {
77 return Format.Format22cs;
Instruction22t.java 29 package org.jf.dexlib.Code.Format;
91 public Format getFormat() {
92 return Format.Format22t;
Instruction3rms.java 29 package org.jf.dexlib.Code.Format;
86 public Format getFormat() {
87 return Format.Format3rms;
Instruction41c.java 32 package org.jf.dexlib.Code.Format;
84 public Format getFormat() {
85 return Format.Format41c;
Instruction52c.java 32 package org.jf.dexlib.Code.Format;
77 public Format getFormat() {
78 return Format.Format52c;
Instruction21c.java 29 package org.jf.dexlib.Code.Format;
77 throw new RuntimeException(String.format("%s index is too large. Use the %s instruction instead.",
80 throw new RuntimeException(String.format("%s index is too large", opcode.referenceType.name()));
89 public Format getFormat() {
90 return Format.Format21c;
103 if (jumboOpcode.format == Format.Format31c) {
  /external/chromium_org/third_party/skia/include/effects/
SkEmbossMaskFilter.h 30 virtual SkMask::Format getFormat() const SK_OVERRIDE;
  /external/clang/unittests/Format/
Makefile 1 ##===- unittests/Format/Makefile ---------------------------*- Makefile -*-===##
11 TESTNAME = Format
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorNoise.java 38 import com.jme3.texture.Image.Format;
67 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8; local
104 return new Texture3D(new Image(format, width, height, depth, dataArray));
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 44 import com.jme3.texture.Image.Format;
118 preGlowPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth);
142 extractPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, extractMat);
157 horizontalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, hBlurMat);
172 verticalalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, vBlurMat);
  /external/skia/include/effects/
SkEmbossMaskFilter.h 30 virtual SkMask::Format getFormat() const SK_OVERRIDE;
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
ImageToAwt.java 36 import com.jme3.texture.Image.Format;
48 private static final EnumMap<Format, DecodeParams> params
49 = new EnumMap<Format, DecodeParams>(Format.class);
142 params.put(Format.ABGR8, new DecodeParams(4, mx___, m___x, m__x_, m_x__,
145 params.put(Format.ARGB4444, new DecodeParams(2, m4x___, m4_x__, m4__x_, m4___x,
148 params.put(Format.Alpha16, new DecodeParams(2, mxxxx, sxxxx, mxxxx, sxxxx, true));
149 params.put(Format.Alpha8, new DecodeParams(1, mxxxx, sxxxx, mxxxx, sxxxx, true));
150 params.put(Format.BGR8, new DecodeParams(3, 0, m___x, m__x_, m_x__,
153 params.put(Format.Luminance16, new DecodeParams(2, mxxxx, sxxxx, mxxxx, sxxxx, false))
368 Format format = image.getFormat(); local
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliParser.g 273 import org.jf.dexlib.Code.Format.*;
411 throw new RuntimeException(String.format("Invalid character '\%c' in param list \"\%s\" at position \%d", str.charAt(typeStartIndex), str, typeStartIndex));
884 INSTRUCTION_FORMAT10t label_ref_or_offset {$size = Format.Format10t.size;}
889 INSTRUCTION_FORMAT10x {$size = Format.Format10x.size;}
894 INSTRUCTION_FORMAT10x_ODEX {$size = Format.Format10x.size;}
901 INSTRUCTION_FORMAT11n REGISTER COMMA integral_literal {$size = Format.Format11n.size;}
906 INSTRUCTION_FORMAT11x REGISTER {$size = Format.Format11x.size;}
911 instruction_format12x REGISTER COMMA REGISTER {$size = Format.Format12x.size;}
916 INSTRUCTION_FORMAT20bc VERIFICATION_ERROR_TYPE COMMA verification_error_reference {$size += Format.Format20bc.size;}
    [all...]
  /art/runtime/verifier/
dex_gc_map.h 29 * Format enumeration for RegisterMap data area.
83 // The format of the table of the PCs for the table
84 RegisterMapFormat Format() const {
90 RegisterMapFormat format = Format(); local
91 switch (format) {
97 LOG(FATAL) << "Invalid format " << static_cast<int>(format);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 78 throw new ArgumentException(string.Format("queue index {0} > last index {1}", absIndex, _data.Count - 1));
80 throw new ArgumentException(string.Format("queue index {0} < 0", absIndex));

Completed in 779 milliseconds

1 2 3 45 6 7 8 91011>>