Home
last modified time | relevance | path

Searched refs:mType (Results 1 – 25 of 36) sorted by relevance

12

/cts/tools/release-parser/src/com/android/cts/releaseparser/
DTestModuleConfigParser.java31 private Entry.EntryType mType; field in TestModuleConfigParser
40 if (mType == null) { in getType()
43 return mType; in getType()
48 if (mType == Entry.EntryType.TEST_MODULE_CONFIG) { in setAdditionalInfo()
56 if (mType == null) { in getTestModuleConfig()
72 mType = Entry.EntryType.TEST_MODULE_CONFIG; in parseFile()
77 mType = Entry.EntryType.FILE; in parseFile()
DTestSuiteTradefedParser.java45 private Entry.EntryType mType; field in TestSuiteTradefedParser
59 if (mType == null) { in getType()
62 return mType; in getType()
66 if (mType == null) { in getName()
73 if (mType == null) { in getFullName()
80 if (mType == null) { in getBuildNumber()
87 if (mType == null) { in getTargetArch()
94 if (mType == null) { in getVersion()
185 mType = Entry.EntryType.TEST_SUITE_TRADEFED; in parseFile()
192 mType = super.getType(); in parseFile()
DBuildPropParser.java30 private Entry.EntryType mType; field in BuildPropParser
39 if (mType == null) { in getType()
42 return mType; in getType()
70 if (mType == null) { in getProperties()
77 if (mType == null) { in getProperty()
103 mType = Entry.EntryType.BUILD_PROP; in parseFile()
107 mType = super.getType(); in parseFile()
DRcParser.java39 private Entry.EntryType mType; field in RcParser
49 if (mType == null) { in getType()
52 return mType; in getType()
137 mType = Entry.EntryType.RC; in parseFile()
141 mType = super.getType(); in parseFile()
/cts/common/device-side/bedstead/testapisreflection/src/processor/main/java/com/android/bedstead/testapisreflection/processor/
DFieldSignature.java31 private final TypeMirror mType; field in FieldSignature
36 this.mType = type; in FieldSignature()
62 return mType; in getType()
71 && Objects.equals(mName, that.mName) && Objects.equals(mType, in equals()
72 that.mType); in equals()
77 return Objects.hash(mFrameworkClass, mName, mType); in hashCode()
85 ", mType=" + mType + in toString()
/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/users/
DUserBuilder.java44 private @Nullable UserType mType; field in UserBuilder
78 mType = type; in type()
141 if (mType != null) { in create()
142 if (mType.baseType().contains(UserType.BaseType.SYSTEM)) { in create()
147 if (mType.baseType().contains(UserType.BaseType.PROFILE)) { in create()
159 if (mType.name().equals(MANAGED_PROFILE_TYPE_NAME)) { in create()
169 } else if (!mType.name().equals(SECONDARY_USER_TYPE_NAME)) { in create()
173 "Can not create users of type " + mType + " on this device"); in create()
176 commandBuilder.addOption("--user-type", mType.name()); in create()
219 .append(", type=").append(mType) in toString()
DAdbUser.java59 @Nullable UserType mType; field in AdbUser.MutableUser
103 return mMutableUser.mType; in type()
141 stringBuilder.append(", type=" + mMutableUser.mType); in toString()
/cts/hostsidetests/car/src/android/car/cts/powerpolicy/
DSystemInfoParser.java26 private final Class<T> mType; field in SystemInfoParser
29 mType = type; in SystemInfoParser()
35 Method m = mType.getMethod("parse", String.class); in apply()
37 t = mType.cast(ret); in apply()
/cts/common/device-side/bedstead/metricsrecorder/src/main/java/com/android/bedstead/metricsrecorder/
DEnterpriseMetricInfo.java27 private final int mType; field in EnterpriseMetricInfo
34 mType = event.eventId; in EnterpriseMetricInfo()
48 return mType; in type()
70 + ", type=" + mType in toString()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DSetSupportMessageActivity.java40 private String mType; field in SetSupportMessageActivity
58 mType = getIntent().getStringExtra(EXTRA_SUPPORT_MSG_TYPE); in onCreate()
59 setTitle(TYPE_SHORT_MSG.equals(mType) in onCreate()
65 mSupportMessage.setText(TYPE_SHORT_MSG.equals(mType) in onCreate()
75 message = getString(TYPE_SHORT_MSG.equals(mType) in onClick()
84 if (TYPE_SHORT_MSG.equals(mType)) { in onClick()
/cts/tests/framework/base/windowmanager/src/android/server/wm/insets/
DWindowInsetsAnimationControllerTests.java130 public int mType; field in WindowInsetsAnimationControllerTests
165 isCar() && (mType == ime() || remoteInsetsControllerControlsSystemBars())); in setUpWindowInsetsAnimationControllerTests()
173 if (mType == ime()) { in setUpWindowInsetsAnimationControllerTests()
206 awaitControl(mType); in setUpWindowInsetsAnimationControllerTests()
233 if (mType == navigationBars() || mType == statusBars()) { in assumeTestCompatibility()
236 != mRootView.getRootWindowInsets().getInsetsIgnoringVisibility(mType)); in assumeTestCompatibility()
279 awaitControl(mType); in retryIfCancelled()
295 mType, 0, null, mCancellationSignal, mListener); in testControl_andCancel()
320 mType, 0, null, mCancellationSignal, mListener); in testControl_andImmediatelyCancel()
335 setVisibilityAndWait(mType, false); in testControl_immediately_show()
[all …]
/cts/tests/devicepolicy/src/android/devicepolicy/cts/
DRingtoneTest.java52 final int mType; field in RingtoneTest.RingtoneConfig
56 this.mType = type; in RingtoneConfig()
78 sContext, config.mType)); in getActualDefaultRingtoneUri_matchesSettingsProviderRingtone()
90 sContext, config.mType); in getActualDefaultRingtoneUri_syncParentSoundsIsTrue_returnsDefaultRingtone()
93 sContext, config.mType, RINGTONE_URI); in getActualDefaultRingtoneUri_syncParentSoundsIsTrue_returnsDefaultRingtone()
97 sContext, config.mType)).isEqualTo(originalUri); in getActualDefaultRingtoneUri_syncParentSoundsIsTrue_returnsDefaultRingtone()
100 sContext, config.mType, originalUri); in getActualDefaultRingtoneUri_syncParentSoundsIsTrue_returnsDefaultRingtone()
/cts/apps/CtsVerifier/src/org/hyphonate/megaaudio/player/
DPlayerBuilder.java48 mType = playerType; in setPlayerType()
79 int playerType = mType & TYPE_MASK; in build()
90 int playerSubType = mType & SUB_TYPE_MASK; in build()
/cts/apps/CtsVerifier/src/org/hyphonate/megaaudio/recorder/
DRecorderBuilder.java51 mType = type; in setRecorderType()
90 int playerType = mType & TYPE_MASK; in build()
101 int recorderSubType = mType & SUB_TYPE_MASK; in build()
/cts/tests/signature/lib/common/src/android/signature/cts/
DDexMember.java29 private final String mType; field in DexMember
35 mType = type; in DexMember()
52 return mType; in getDexType()
56 return dexToJavaType(mType); in getJavaType()
/cts/tests/tests/notification/src/android/app/notification/current/cts/
DAutomaticZenRuleTest.java53 private final int mType = TYPE_BEDTIME; field in AutomaticZenRuleTest
170 .setType(mType) in testBuilder()
186 assertEquals(mType, rule1.getType()); in testBuilder()
217 .setType(mType) in testBuilder_fromInstance()
234 assertEquals(mType, rule1.getType()); in testBuilder_fromInstance()
251 .setType(mType) in testWriteToParcelFromBuilder()
271 assertEquals(mType, rule1.getType()); in testWriteToParcelFromBuilder()
288 .setType(mType) in testEquals()
300 .setType(mType) in testEquals()
320 .setType(mType) in testHashCode()
[all …]
/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/accounts/
DAccountBuilder.java40 private String mType; field in AccountBuilder
66 mType = type; in type()
134 mType, in addAccountOnce()
/cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/
DDeviceEvent.java185 private final Field mType; field in DeviceEvent.DeviceEventTable
195 mType = getField(EventTableConstants.TYPE); in DeviceEventTable()
203 mType.putString(values, event.type.name()); in buildContentValues()
217 DeviceEventType.valueOf(mType.getString(cursor)), in buildStream()
/cts/tests/sensor/jni/
DSensorTest.h124 return mType; in getType()
134 const int mType; variable
DSensorTest.cpp138 : mType(type), mSize(0), mBuffer(nullptr), in TestSharedMemory()
198 switch(mType) { in release()
230 this, static_cast<int>(mType), mSharedMemoryFd, mHardwareBuffer, mSize, mBuffer); in release()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DAccessibilityEventFilterUtils.java157 private int mType; field in AccessibilityEventTypeMatcher
161 mType = type; in AccessibilityEventTypeMatcher()
166 return event.getEventType() == mType; in matchesSafely()
171 description.appendText("Matching to type " + mType); in describeTo()
/cts/hostsidetests/car/app/src/android/car/cts/app/
DPowerPolicyTestCommand.java29 private final PowerPolicyTestCommandType mType; field in PowerPolicyTestCommand
37 mType = type; in PowerPolicyTestCommand()
41 return mType; in getType()
/cts/tests/camera/src/android/hardware/camera2/cts/
DReadoutTimestampTest.java165 timestamps[i * 2].mType == ReadoutCaptureCallback.CAPTURE_TIMESTAMP); in testReadoutTimestamp()
168 timestamps[i * 2 + 1].mType == ReadoutCaptureCallback.READOUT_TIMESTAMP); in testReadoutTimestamp()
218 public int mType; field in ReadoutTimestampTest.ReadoutCaptureCallback.TimestampTuple
221 mType = type; in TimestampTuple()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
DProjectionCubeActivity.java35 mType = ProjectionPresentationType.TUMBLING_CUBES; in onCreate()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/video/
DProjectionVideoActivity.java34 mType = ProjectionPresentationType.VIDEO_PLAYBACK; in onCreate()

12