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

1 2

  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthAppConfiguration.java 31 private final int mDataType;
44 mDataType = dataType;
60 mDataType = dataType;
72 return mName.equals(config.getName()) && mDataType == config.getDataType()
82 result = 31 * result + mDataType;
90 return "BluetoothHealthAppConfiguration [mName = " + mName + ",mDataType = " + mDataType
105 return mDataType;
158 out.writeInt(mDataType);
  /frameworks/base/core/java/android/app/backup/
RestoreDescription.java 35 private final int mDataType;
58 + ((mDataType == TYPE_KEY_VALUE) ? "KEY_VALUE" : "STREAM")
67 mDataType = dataType;
75 return mDataType;
89 out.writeInt(mDataType);
108 mDataType = in.readInt();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifTag.java 93 private final short mDataType;
130 mDataType = type;
190 return mDataType;
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG &&
241 mDataType != TYPE_UNSIGNED_LONG) {
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) {
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) {
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifTag.java 93 private final short mDataType;
130 mDataType = type;
190 return mDataType;
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG &&
241 mDataType != TYPE_UNSIGNED_LONG) {
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) {
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) {
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED)
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifTag.java 93 private final short mDataType;
130 mDataType = type;
190 return mDataType;
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG &&
241 mDataType != TYPE_UNSIGNED_LONG) {
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) {
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) {
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifTag.java 93 private final short mDataType;
130 mDataType = type;
190 return mDataType;
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG &&
241 mDataType != TYPE_UNSIGNED_LONG) {
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) {
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) {
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED)
    [all...]
  /system/media/audio_utils/spdif/
DTSFrameScanner.cpp 74 // Sets mDataType, mFrameSizeBytes,
118 mDataType = IEC61937_DATA_TYPE_DTS_I;
120 mDataType = IEC61937_DATA_TYPE_DTS_II;
122 mDataType = IEC61937_DATA_TYPE_DTS_III;
124 mDataType = IEC61937_DATA_TYPE_DTS_IV;
AC3FrameScanner.cpp 133 return (mDataType == SPDIF_DATA_TYPE_E_AC3) ? numBytes : numBytes * 8;
143 if (mDataType == SPDIF_DATA_TYPE_E_AC3) {
161 return (mDataType != SPDIF_DATA_TYPE_E_AC3); // Just one AC3 frame per burst.
177 mDataType = SPDIF_DATA_TYPE_E_AC3;
179 mDataType = SPDIF_DATA_TYPE_AC3;
191 if (mDataType == SPDIF_DATA_TYPE_E_AC3) {
249 mDataType = SPDIF_DATA_TYPE_E_AC3;
FrameScanner.cpp 40 , mDataType(dataType)
  /system/media/audio_utils/include/audio_utils/spdif/
FrameScanner.h 76 int getDataType() const { return mDataType; }
116 int mDataType; // as defined in IEC61937-2 paragraph 4.2
121 * Sets mDataType, mFrameSizeBytes, mSampleRate, mRateMultiplier.
  /frameworks/base/core/java/android/os/health/
HealthStats.java 93 private String mDataType;
133 mDataType = in.readString();
193 return mDataType;
215 throw new IndexOutOfBoundsException("Bad timer key dataType=" + mDataType
230 throw new IndexOutOfBoundsException("Bad timer key dataType=" + mDataType
245 throw new IndexOutOfBoundsException("Bad timer key dataType=" + mDataType
287 throw new IndexOutOfBoundsException("Bad measurement key dataType=" + mDataType
329 throw new IndexOutOfBoundsException("Bad stats key dataType=" + mDataType
371 throw new IndexOutOfBoundsException("Bad timers key dataType=" + mDataType
413 throw new IndexOutOfBoundsException("Bad measurements key dataType=" + mDataType
    [all...]
HealthKeys.java 85 private final String mDataType;
94 mDataType = clazz.getSimpleName();
136 return mDataType;
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
SortDimension.java 69 private final @DataType int mDataType;
80 mDataType = dataType;
94 return mDataType;
145 && mDataType == other.mDataType
157 .append(", dataType=").append(mDataType)
175 out.writeInt(mDataType);
211 private @DataType int mDataType = DATA_TYPE_STRING;
227 mDataType = dataType;
252 mId, mLabelId, mDataType, mSortCapability, mDefaultSortDirection)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
MetricTestCase.java 83 public final LogDataType mDataType;
88 mDataType = dataType;
DeviceTestResult.java 115 .testLog(log.mDataName, log.mDataType, log.mDataStream);
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1DerEncoder.java 304 private final Asn1Type mDataType;
317 mDataType = annotation.type();
334 } else if ((mDataType == Asn1Type.CHOICE) || (mDataType == Asn1Type.ANY)) {
337 tagNumber = BerEncoding.getTagNumber(mDataType);
368 byte[] encoded = JavaToDerConverter.toDer(fieldValue, mDataType, mElementDataType);
Asn1BerParser.java 341 private final Asn1Type mDataType;
351 mDataType = annotation.type();
367 } else if ((mDataType == Asn1Type.CHOICE) || (mDataType == Asn1Type.ANY)) {
370 tagNumber = BerEncoding.getTagNumber(mDataType);
434 BerToJavaConverter.setFieldValue(obj, mField, mDataType, dataValue);
  /tools/tradefederation/core/src/com/android/tradefed/result/
JUnit4ResultForwarder.java 93 mListener.testLog(log.mDataName, log.mDataType, log.mDataStream);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
MobileSignalController.java 311 int typeIcon = (showDataIcon || mConfig.alwaysShowDataRatIcon) ? icons.mDataType : 0;
578 final int mDataType;
588 mDataType = dataType;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrUtilityLib.h 228 SVfrDataType *mDataType;
VfrUtilityLib.cpp 1340 mStorageInfo.mDataType = DataType;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrUtilityLib.h 260 SVfrDataType *mDataType;
VfrUtilityLib.cpp     [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0/
apksig-3.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/apksig/3.0.0-alpha6/
apksig-3.0.0-alpha6.jar 

Completed in 490 milliseconds

1 2