/frameworks/base/core/java/android/bluetooth/ |
BluetoothGattCharacteristic.java | 433 * <p>The formatType parameter determines how the characteristic value 434 * is to be interpreted. For example, settting formatType to 439 * @param formatType The format type used to interpret the characteristic 445 public Integer getIntValue(int formatType, int offset) { 446 if ((offset + getTypeLen(formatType)) > mValue.length) return null; 448 switch (formatType) { 477 * @param formatType The format type used to interpret the characteristic 483 public Float getFloatValue(int formatType, int offset) { 484 if ((offset + getTypeLen(formatType)) > mValue.length) return null; 486 switch (formatType) { [all...] |
/cts/tests/tests/nativemedia/sl/src/ |
SLObjectCreationTest.cpp | 140 formatMimeSrc.formatType = SL_DATAFORMAT_MIME; 152 formatMimeSrc.formatType = SL_DATAFORMAT_MIME; 162 formatPcmSnk.formatType = SL_DATAFORMAT_PCM; 213 pcm.formatType = SL_DATAFORMAT_PCM; 234 formatMimeSrc.formatType = SL_DATAFORMAT_MIME; 271 formatMimeSrc.formatType = SL_DATAFORMAT_MIME;
|
/external/aac/libSYS/include/ |
wav_file.h | 143 char formatType[4];
|
/frameworks/wilhelm/src/ |
data.c | 342 SLuint32 formatType; 344 pDataFormat->mFormatType = formatType = SL_DATAFORMAT_NULL; 346 formatType = *(SLuint32 *)pFormat; 347 switch (formatType) { 556 SL_LOGE("%s: formatType=%u", name, (unsigned) formatType); 562 if ((SL_RESULT_SUCCESS == result) && (formatType != pDataFormat->mFormatType)) { 563 SL_LOGE("%s: formatType changed from %u to %u", name, formatType, 573 switch (formatType) { [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
PhoneNumberUtilsTest.java | 124 int formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.CHINA); 125 assertEquals(PhoneNumberUtils.FORMAT_UNKNOWN, formatType); 126 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.US); 127 assertEquals(PhoneNumberUtils.FORMAT_NANP, formatType); 128 formatType = PhoneNumberUtils.getFormatTypeForLocale(Locale.JAPAN); 129 assertEquals(PhoneNumberUtils.FORMAT_JAPAN, formatType);
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
TimeInputType.cpp | 122 Locale::FormatType formatType = shouldHaveSecondField(date) ? Locale::FormatTypeMedium : Locale::FormatTypeShort; 124 String localized = element().locale().formatDateTime(date, formatType);
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
PlatformLocale.cpp | 390 String Locale::formatDateTime(const DateComponents& date, FormatType formatType) 398 builder.build(formatType == FormatTypeShort ? shortTimeFormat() : timeFormat()); 404 builder.build(formatType == FormatTypeShort ? shortMonthFormat() : monthFormat()); 411 builder.build(formatType == FormatTypeShort ? dateTimeFormatWithoutSeconds() : dateTimeFormatWithSeconds());
|
/frameworks/wilhelm/src/desktop/ |
SndFile.c | 141 SLuint32 formatType = *(SLuint32 *)pAudioSrc->pFormat; 158 switch (formatType) {
|
/external/aac/libSYS/src/ |
wav_file.cpp | 147 if (FDKfread(&(wav->header.formatType), 1, 4, wav->fp) != 4) { 151 if (FDKstrncmp("fmt", wav->header.formatType, 3)) { 412 FDKstrcpy(wav->header.formatType, "fmt ");
|
/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 | 81 fmtMime.formatType = XA_DATAFORMAT_MIME;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
nmfmapts.cpp | 272 virtual NumberFormat* createFormat(const Locale& /* loc */, UNumberFormatStyle formatType) 274 if (formatType == UNUM_CURRENCY) {
|
/external/icu4c/test/intltest/ |
nmfmapts.cpp | 272 virtual NumberFormat* createFormat(const Locale& /* loc */, UNumberFormatStyle formatType) 274 if (formatType == UNUM_CURRENCY) {
|
/frameworks/wilhelm/src/android/ |
AudioRecorder_to_android.cpp | 172 SLuint32 formatType = *(SLuint32 *)pAudioSnk->pFormat; 173 if (SL_DATAFORMAT_PCM == formatType) {
|
/frameworks/wilhelm/tests/examples/ |
slesTestDecodeToBuffQueue.cpp | 334 decMime.formatType = SL_DATAFORMAT_MIME; 346 pcm.formatType = SL_DATAFORMAT_PCM;
|
slesTestBassBoostPath.cpp | 131 mime.formatType = SL_DATAFORMAT_MIME;
|
slesTestPlayFdPath.cpp | 120 mime.formatType = SL_DATAFORMAT_MIME;
|
slesTestSawtoothBufferQueue.cpp | 169 pcm.formatType = SL_DATAFORMAT_PCM;
|
slesTestVirtualizerPath.cpp | 132 mime.formatType = SL_DATAFORMAT_MIME;
|
/external/chromium_org/media/audio/android/ |
opensles_input.cc | 32 format_.formatType = SL_DATAFORMAT_PCM;
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
numfmt.h | [all...] |
/external/icu4c/i18n/unicode/ |
numfmt.h | [all...] |
/frameworks/wilhelm/tests/mimeUri/ |
slesTestLoopUri.cpp | 171 mime.formatType = SL_DATAFORMAT_MIME;
|
slesTestPlayStreamType.cpp | 118 mime.formatType = SL_DATAFORMAT_MIME;
|