HomeSort by relevance Sort by last modified time
    Searched refs:formatType (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbASFormat.java 43 public UsbASFormat(int length, byte type, byte subtype, byte formatType, int mSubclass) {
45 mFormatType = formatType;
72 byte formatType = stream.getByte();
75 switch (formatType) {
78 return new Usb20ASFormatI(length, type, subtype, formatType, subclass);
80 return new Usb10ASFormatI(length, type, subtype, formatType, subclass);
85 return new Usb20ASFormatII(length, type, subtype, formatType, subclass);
87 return new Usb10ASFormatII(length, type, subtype, formatType, subclass);
92 return new Usb20ASFormatIII(length, type, subtype, formatType, subclass);
97 return new UsbASFormat(length, type, subtype, formatType, subclass)
    [all...]
Usb20ASFormatI.java 34 public Usb20ASFormatI(int length, byte type, byte subtype, byte formatType, int subclass) {
35 super(length, type, subtype, formatType, subclass);
Usb20ASFormatII.java 37 public Usb20ASFormatII(int length, byte type, byte subtype, byte formatType, int subclass) {
38 super(length, type, subtype, formatType, subclass);
Usb20ASFormatIIEx.java 37 public Usb20ASFormatIIEx(int length, byte type, byte subtype, byte formatType, byte subclass) {
38 super(length, type, subtype, formatType, subclass);
Usb20ASFormatIII.java 34 public Usb20ASFormatIII(int length, byte type, byte subtype, byte formatType, int subclass) {
35 super(length, type, subtype, formatType, subclass);
Usb10ASFormatII.java 41 public Usb10ASFormatII(int length, byte type, byte subtype, byte formatType, int subclass) {
42 super(length, type, subtype, formatType, subclass);
Usb10ASFormatI.java 36 public Usb10ASFormatI(int length, byte type, byte subtype, byte formatType, int subclass) {
37 super(length, type, subtype, formatType, subclass);
  /external/webrtc/webrtc/modules/audio_device/android/
opensles_common.cc 23 configuration.formatType = SL_DATAFORMAT_PCM;
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 512 * <p>The formatType parameter determines how the characteristic value
513 * is to be interpreted. For example, settting formatType to
518 * @param formatType The format type used to interpret the characteristic value.
522 public Integer getIntValue(int formatType, int offset) {
523 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
525 switch (formatType) {
554 * @param formatType The format type used to interpret the characteristic value.
559 public Float getFloatValue(int formatType, int offset) {
560 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
562 switch (formatType) {
    [all...]
  /frameworks/wilhelm/src/android/
android_sles_conversions.h 33 switch (df_pcm->formatType) {
  /cts/tests/tests/nativemedia/sl/src/
SLObjectCreationTest.cpp 137 formatMimeSrc.formatType = SL_DATAFORMAT_MIME;
149 formatMimeSrc.formatType = SL_DATAFORMAT_MIME;
159 formatPcmSnk.formatType = SL_DATAFORMAT_PCM;
210 pcm.formatType = SL_DATAFORMAT_PCM;
231 formatMimeSrc.formatType = SL_DATAFORMAT_MIME;
268 formatMimeSrc.formatType = SL_DATAFORMAT_MIME;
  /external/fonttools/Lib/fontTools/ttLib/tables/
_p_o_s_t.py 15 formatType: 16.16F
34 if self.formatType == 1.0:
36 elif self.formatType == 2.0:
38 elif self.formatType == 3.0:
40 elif self.formatType == 4.0:
44 raise ttLib.TTLibError("'post' table format %f not supported" % self.formatType)
48 if self.formatType == 1.0:
50 elif self.formatType == 2.0:
52 elif self.formatType == 3.0:
54 elif self.formatType == 4.0
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatRegistrationTest.java 45 public NumberFormat createFormat(ULocale loc, int formatType) {
46 if (formatType == FORMAT_CURRENCY) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatRegistrationTest.java 42 public NumberFormat createFormat(ULocale loc, int formatType) {
43 if (formatType == FORMAT_CURRENCY) {
  /frameworks/wilhelm/src/
data.cpp 345 SLuint32 formatType;
347 pDataFormat->mFormatType = formatType = SL_DATAFORMAT_NULL;
349 formatType = *(SLuint32 *)pFormat;
350 switch (formatType) {
571 SL_LOGE("%s: formatType=%u", name, (unsigned) formatType);
577 if ((SL_RESULT_SUCCESS == result) && (formatType != pDataFormat->mFormatType)) {
578 SL_LOGE("%s: formatType changed from %u to %u", name, formatType,
588 switch (formatType) {
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 127 int formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.CHINA);
128 assertEquals(PhoneNumberUtils.FORMAT_UNKNOWN, formatType);
129 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.US);
130 assertEquals(PhoneNumberUtils.FORMAT_NANP, formatType);
131 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.JAPAN);
132 assertEquals(PhoneNumberUtils.FORMAT_JAPAN, formatType);
  /frameworks/wilhelm/src/desktop/
SndFile.cpp 141 SLuint32 formatType = *(SLuint32 *)pAudioSrc->pFormat;
158 switch (formatType) {
  /external/webrtc/webrtc/modules/video_capture/windows/
sink_filter_ds.cc 174 const GUID *formatType = pMediaType->FormatType();
183 if(*formatType == FORMAT_VideoInfo)
249 if(*formatType == FORMAT_VideoInfo2)
  /cts/tests/tests/media/libaudiojni/
appendix-b-1-2-recording.cpp 149 mime.formatType = SL_DATAFORMAT_MIME;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberFormat.java     [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
NumberFormat.java 792 * @param formatType the type of format
796 public NumberFormat createFormat(ULocale loc, int formatType) {
797 return createFormat(loc.toLocale(), formatType);
809 * @param formatType the type of format
813 public NumberFormat createFormat(Locale loc, int formatType) {
814 return createFormat(ULocale.forLocale(loc), formatType);
    [all...]
  /frameworks/wilhelm/tests/listening/
seekTorture.c 65 mime.formatType = SL_DATAFORMAT_MIME;
  /frameworks/wilhelm/tests/sandbox/
urimime.c 61 format_mime.formatType = SL_DATAFORMAT_MIME;
xa.c 83 fmtMime.formatType = XA_DATAFORMAT_MIME;
  /hardware/qcom/display/msm8994/liboverlay/
overlay.cpp 110 int formatType = pipeSpecs.formatClass;
119 mPipeBook[i].mFormatType == formatType) &&
135 mPipeBook[index].mFormatType = formatType;

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 9