HomeSort by relevance Sort by last modified time
    Searched refs:converter (Results 126 - 150 of 582) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 1294 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
1304 ByteBuffer converter = ByteBuffer.allocate(4); local
1321 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
1331 ByteBuffer converter = ByteBuffer.allocate(2); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
audiodev.py 15 ## inited_nchannels, port, converter, classinited: private
53 self.converter = None
102 self.converter = self.ulaw2lin
124 if self.converter:
125 data = self.converter(data)
149 ## inited_nchannels, converter: private
158 self.converter = None
194 if self.converter:
195 data = self.converter(data)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_converter.py 46 converter = _W3CTestConverter(new_path, filename, host)
48 return converter.add_webkit_prefix_to_unprefixed_properties(contents)
50 converter.feed(contents)
51 converter.close()
52 return converter.output()
  /cts/tools/signature-tools/src/signature/compare/
Main.java 23 import signature.converter.Visibility;
24 import signature.converter.dex.DexFactory;
25 import signature.converter.doclet.DocletFactory;
  /external/chromium_org/third_party/icu/source/common/
ucnvisci.c     [all...]
  /external/icu/icu4c/source/common/
ucnvisci.c     [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
PresetReverbTest.java 236 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
237 converter.order(ByteOrder.nativeOrder());
238 return converter.getInt(offset);
242 ByteBuffer converter = ByteBuffer.wrap(valueBuf); local
243 converter.order(ByteOrder.nativeOrder());
244 return converter.getShort(offset);
  /external/chromium_org/chrome/renderer/extensions/
app_window_custom_bindings.cc 123 scoped_ptr<content::V8ValueConverter> converter(
125 result = converter->ToV8Value(value, context()->v8_context());
enterprise_platform_keys_natives.cc 113 scoped_ptr<content::V8ValueConverter> converter(
116 converter->ToV8Value(algorithm_dict.get(), context()->v8_context()));
  /external/chromium_org/google_apis/drive/
gdata_wapi_parser.h 72 static void RegisterJSONConverter(base::JSONValueConverter<Link>* converter);
131 base::JSONValueConverter<ResourceLink>* converter);
164 base::JSONValueConverter<Author>* converter);
197 base::JSONValueConverter<Category>* converter);
236 base::JSONValueConverter<Content>* converter);
300 base::JSONValueConverter<CommonMetadataDescendant>* converter);
343 base::JSONValueConverter<ResourceEntry>* converter);
586 base::JSONValueConverter<ResourceList>* converter);
  /external/chromium_org/third_party/icu/source/common/unicode/
ucnv_err.h 26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
174 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
177 converter. the pointer available as the
180 by the new converter, the callback must clone
194 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
195 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon15749
210 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
211 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon15750
    [all...]
  /external/chromium_org/ui/gfx/codec/
jpeg_codec.cc 300 // get the correct format converter
301 void (*converter)(const unsigned char* in, int w, unsigned char* rgb);
304 converter = StripAlpha;
307 converter = BGRAtoRGB;
317 converter(&input[cinfo.next_scanline * row_byte_width], w, row_buffer);
582 void (*converter)(const unsigned char* rgb, int w, unsigned char* out);
586 converter = AddAlpha;
590 converter = RGBtoBGRA;
604 converter(rowptr, *w, &(*output)[row * row_write_stride]);
png_codec.cc 208 // Pick our row format converter necessary for this data.
579 FormatConverter converter,
613 if (!converter) {
623 converter(&input[y * row_byte_width], width, row_buffer, NULL);
643 FormatConverter converter = NULL; local
659 converter = ConvertRGBAtoRGB;
663 converter = NULL;
672 converter = ConvertBGRAtoRGB;
676 converter = ConvertBetweenBGRAandRGBA;
692 // |converter| is left as nul
    [all...]
  /external/icu/icu4c/source/common/unicode/
ucnv_err.h 26 * and ucnv_setToUCallback functions, to set the behaviour of a converter
174 UCNV_CLOSE = 4, /**< Called when the converter is closed. The
177 converter. the pointer available as the
180 by the new converter, the callback must clone
194 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
195 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 */ member in struct:__anon25622
210 UBool flush; /**< The internal state of converter will be reset and data flushed if set to TRUE. @stable ICU 2.0 */
211 UConverter *converter; /**< Pointer to the converter that is opened and to which this struct is passed as an argument. @stable ICU 2.0 * member in struct:__anon25623
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
typemaps.i 71 %define INPUT_TYPEMAP(type, converter)
74 temp = ($*1_ltype) converter($input);
141 %define OUTPUT_TYPEMAP(type, converter, convtype)
144 VALUE o = converter(convtype (*$1));
  /cts/tools/signature-tools/src/signature/
Main.java 22 * {@link signature.converter.Main}. If invoked with <code>--compare</code> the
25 * @see signature.converter.Main
63 signature.converter.Main.main(without(args, i));
  /cts/tools/signature-tools/test/signature/comparator/util/
AbstractComparatorTest.java 29 import signature.converter.util.AbstractConvertTest;
  /external/chromium_org/chrome/browser/apps/drive/
drive_app_provider.h 64 void OnLocalAppConverted(const DriveAppConverter* converter, bool success);
  /frameworks/base/libs/common_time/
common_time_server_packets.cpp 40 #define SERIALIZE_FIELD(field_name, type, converter) \
44 *((type*)(data + offset)) = converter(field_name); \
51 #define DESERIALIZE_FIELD(field_name, type, converter) \
55 field_name = converter(*((type*)(data + offset))); \
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 32 ;;; You can define your own identifier converter if you want.
33 ;;; Use the -identifier-converter command line argument to
83 (let ((symbol (funcall *swig-identifier-converter* string :type :constant)))
88 (let ((symbol (funcall *swig-identifier-converter* name :type :operator)))
95 (let ((symbol (funcall *swig-identifier-converter* name :type :type)))
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 256 CursorToStringConverter converter = new MockCursorToStringConverter(); local
257 simpleCursorAdapter.setCursorToStringConverter(converter);
258 assertSame(converter, simpleCursorAdapter.getCursorToStringConverter());
289 // converter is null, StringConversionColumn is set to negative
293 // converter is null, StringConversionColumn is set to 1
297 // converter is null, StringConversionColumn is set to 3 (larger than columns count)
310 // converter is null, StringConversionColumn is set to 3
315 // converter is not null, StringConversionColumn is 1
316 CursorToStringConverter converter = new MockCursorToStringConverter(); local
317 simpleCursorAdapter.setCursorToStringConverter(converter);
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 344 * @param converter Converts T objects into int parameters for the multi-value setter.
352 TypeConverter<T, int[]> converter, TypeEvaluator<T> evaluator, T... values) {
353 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiInt(propertyName, converter,
540 * @param converter Converts T objects into float parameters for the multi-value setter.
548 TypeConverter<T, float[]> converter, TypeEvaluator<T> evaluator, T... values) {
549 PropertyValuesHolder pvh = PropertyValuesHolder.ofMultiFloat(propertyName, converter,
585 * <code>converter</code> can be used to change from <code>PointF</code> to the type
592 * @param converter Converts a PointF to the type associated with the setter. May be
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 81 protected CodeConverter converter; field in class:Reflection
97 converter = new CodeConverter();
129 clazz.instrument(converter);
231 converter.replaceFieldRead(f, clazz, readPrefix + name);
232 converter.replaceFieldWrite(f, clazz, writePrefix + name);
  /external/chromium_org/media/filters/
h264_to_annex_b_bitstream_converter_unittest.cc 271 // Initialize converter.
273 H264ToAnnexBBitstreamConverter converter; local
276 EXPECT_TRUE(converter.ParseConfiguration(
280 uint32 config_size = converter.GetConfigSize(avc_config_);
286 EXPECT_TRUE(converter.ConvertAVCDecoderConfigToByteStream(
292 uint32 output_size = converter.CalculateNeededOutputBufferSize(
302 EXPECT_TRUE(converter.ConvertNalUnitStreamToByteStream(
311 // Initialize converter
312 H264ToAnnexBBitstreamConverter converter; local
323 EXPECT_FALSE(converter.ParseConfiguration
332 H264ToAnnexBBitstreamConverter converter; local
382 H264ToAnnexBBitstreamConverter converter; local
461 H264ToAnnexBBitstreamConverter converter; local
    [all...]

Completed in 985 milliseconds

1 2 3 4 56 7 8 91011>>