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

123456

/frameworks/av/include/media/
H A DMediaResourcePolicy.h39 String8 mType; member in class:android::MediaResourcePolicy
H A DMediaResource.h46 String8 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) {
H A DMifareUltralight.java80 private int mType; field in class:MifareUltralight
109 mType = TYPE_UNKNOWN;
114 mType = TYPE_ULTRALIGHT_C;
116 mType = TYPE_ULTRALIGHT;
133 return mType;
/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);
49 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/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/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DCastExpr.java26 final String mType; field in class:CastExpr
30 mType = type;
35 return modelAnalyzer.findClass(mType, getModel().getImports());
48 return join(mType, getCastExpr().computeUniqueKey());
H A DInstanceOfExpr.java26 ModelClass mType; field in class:InstanceOfExpr
40 mType = modelAnalyzer.findClass(mTypeStr, getModel().getImports());
54 return mType;
H A DSymbolExpr.java27 Class mType; field in class:SymbolExpr
32 mType = type;
41 return modelAnalyzer.findClass(mType);
46 return mType.getSimpleName() + mText;
/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/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 ", mType='" + 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;
28 return String.format("%s (%s) = '%s'", mName, mType, mValue);
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h56 uint16_t mType; member in class:android::img_utils::TiffEntryImpl
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
87 return static_cast<TagType>(mType);
127 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
187 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.h118 ShelfType mType; member in class:android::AudioShelvingFilter
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPort.h91 audio_port_type_t mType; member in class:android::AudioPort
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DTypeReference.java48 private final Type mType; field in class:TypeReference
62 mType = thisType.getActualTypeArguments()[0];
73 if (containsTypeVariable(mType)) {
77 mHash = mType.hashCode();
84 return mType;
88 mType = type;
89 if (containsTypeVariable(mType)) {
93 mHash = mType.hashCode();
159 return (Class<? super T>)getRawType(mType);
209 Type componentType = getComponentType(mType);
[all...]
/frameworks/base/core/java/android/net/
H A DWifiLinkQualityInfo.java29 private int mType = UNKNOWN_INT; field in class:WifiLinkQualityInfo
48 dest.writeInt(mType);
65 li.mType = in.readInt();
80 return mType;
87 mType = type;
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java49 private final int mType; field in class:PatternMatcher
53 mType = type;
61 return mType;
65 return matchPattern(mPattern, str, mType);
70 switch (mType) {
90 dest.writeInt(mType);
95 mType = src.readInt();

Completed in 8142 milliseconds

123456