Searched defs:mType (Results 1 - 25 of 155) sorted by relevance

1234567

/frameworks/av/include/media/
H A DMediaResourcePolicy.h39 String8 mType; member in class:android::MediaResourcePolicy
H A DMediaResource.h53 Type mType; member in class:android::MediaResource
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.h26 const int mType; member in struct:android::WebmFrame
/frameworks/base/core/java/android/nfc/tech/
H A DNfcBarcode.java38 private int mType; field in class:NfcBarcode
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
83 return mType;
122 switch (mType) {
/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.h30 "!= gpu thread %lu", this, static_cast<int>(mType), mSize, \
43 GpuObjectType objectType() { return mType; }
55 GpuMemoryTracker(GpuObjectType type) : mType(type) {
72 GpuObjectType mType; member in class:android::uirenderer::GpuMemoryTracker
/frameworks/base/libs/hwui/thread/
H A DBarrier.h27 Barrier(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mOpened(false) { }
33 mCondition.signal(mType);
44 Condition::WakeUpType mType; member in class:android::uirenderer::Barrier
H A DSignal.h29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
37 mCondition.signal(mType);
49 Condition::WakeUpType mType; member in class:android::uirenderer::Signal
/frameworks/base/media/java/android/media/
H A DMediaSyncEvent.java65 private final int mType; field in class:MediaSyncEvent
69 mType = eventType;
100 return mType;
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DFood.java25 private final int mType; field in class:Food
31 mType = type;
43 return Icon.createWithResource(context, sIcons[mType]);
50 return sNames[mType];
54 return context.getResources().getIntArray(R.array.food_intervals)[mType];
58 return mType;
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DNodeAttribute.java5 private final String mType; field in class:NodeAttribute
10 mType = type;
23 return mType;
28 return String.format("%s (%s) = '%s'", mName, mType, mValue);
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DSubscriptionParameters.java23 private final String mType; field in class:SubscriptionParameters
29 mType = MOManager.getString(node.getChild(TAG_TypeOfSubscription));
77 ", type='" + mType + '\'' +
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphOutputTarget.java14 private FrameType mType = FrameType.any(); field in class:GraphOutputTarget
22 mType = type;
26 return mType;
32 .addInputPort("frame", Signature.PORT_REQUIRED, mType)
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h47 mData(other.mData), mType(other.mType) {};
71 if (mType != ACM_REQUEST) {
104 const ACAMERA_METADATA_TYPE mType; member in struct:ACameraMetadata
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioRoute.h39 AudioRoute(audio_route_type_t type) : mType(type) {}
47 audio_route_type_t getType() const { return mType; }
54 audio_route_type_t mType; member in class:android::AudioRoute
/frameworks/base/core/java/android/bluetooth/le/
H A DResultStorageDescriptor.java30 private int mType; field in class:ResultStorageDescriptor
35 return mType;
54 mType = type;
66 dest.writeInt(mType);
76 mType = in.readInt();
/frameworks/base/core/java/android/util/
H A DProperty.java31 private final Class<V> mType; field in class:Property
63 mType = type;
104 return mType;
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java49 private final int mType; field in class:DrmEvent
65 mType = type;
85 mType = type;
107 return mType;
/frameworks/base/graphics/java/android/graphics/
H A DComposeShader.java30 private int mType; field in class:ComposeShader
52 mType = TYPE_XFERMODE;
68 mType = TYPE_PORTERDUFFMODE;
82 switch (mType) {
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DHSIconFileElement.java20 private final String mType; field in class:HSIconFileElement
33 mType = Constants.getPrefixedString(payload, 1, StandardCharsets.US_ASCII);
45 return mType;
56 ", type='" + mType + '\'' +
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DCastExpr.java27 final String mType; field in class:CastExpr
31 mType = type;
36 return modelAnalyzer.findClass(mType, getModel().getImports());
49 return addTwoWay(join(mType, getCastExpr().computeUniqueKey()));
H A DInstanceOfExpr.java27 ModelClass mType; field in class:InstanceOfExpr
49 mType = modelAnalyzer.findClass(mTypeStr, getModel().getImports());
63 return mType;
H A DSymbolExpr.java28 Class mType; field in class:SymbolExpr
33 mType = type;
42 return modelAnalyzer.findClass(mType);
47 return mType.getSimpleName() + mText;
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.h52 ColorBlindnessTypes mType; member in class:android::Daltonizer
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DHSIconFileElement.java20 private final String mType; field in class:HSIconFileElement
33 mType = Constants.getPrefixedString(payload, 1, StandardCharsets.US_ASCII);
45 return mType;
56 ", type='" + mType + '\'' +
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DNodeAttribute.java5 private final String mType; field in class:NodeAttribute
10 mType = type;
23 return mType;
36 return mName.equals(that.mName) && mType.equals(that.mType) && mValue.equals(that.mValue);
41 return String.format("%s (%s) = '%s'", mName, mType, mValue);

Completed in 1083 milliseconds

1234567