Home
last modified time | relevance | path

Searched refs:mIntentAction (Results 1 – 7 of 7) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.kt36 private var mIntentAction: String? = null variable in com.android.quicksearchbox.SuggestionData
62 get() = mIntentAction ?: suggestionSource?.defaultIntentAction
114 mIntentAction = intentAction in setIntentAction()
173 result = prime * result + if (mIntentAction == null) 0 else mIntentAction.hashCode() in hashCode()
201 if (mIntentAction == null) { in equals()
202 if (suggestionData.mIntentAction != null) return false in equals()
203 } else if (!mIntentAction.equals(suggestionData.mIntentAction)) return false in equals()
240 appendField(builder, "intentAction", mIntentAction) in toString()
/packages/modules/Permission/framework-s/java/android/safetycenter/config/
DSafetySource.java206 @Nullable private final String mIntentAction; field in SafetySource
242 mIntentAction = intentAction; in SafetySource()
424 return mIntentAction; in getIntentAction()
588 && Objects.equals(mIntentAction, that.mIntentAction) in equals()
610 mIntentAction, in hashCode()
639 + mIntentAction in toString()
676 dest.writeString(mIntentAction); in writeToParcel()
702 @Nullable private String mIntentAction; field in SafetySource.Builder
733 mIntentAction = safetySource.mIntentAction; in Builder()
866 mIntentAction = intentAction; in setIntentAction()
[all …]
/packages/apps/Car/Settings/src/com/android/car/settings/search/
DCarBaseSearchIndexProvider.java51 private final String mIntentAction; field in CarBaseSearchIndexProvider
56 mIntentAction = intentAction; in CarBaseSearchIndexProvider()
62 mIntentAction = null; in CarBaseSearchIndexProvider()
70 sir.intentAction = mIntentAction; in getXmlResourcesToIndex()
122 raw.intentAction = mIntentAction; in createRawDataEntry()
/packages/apps/TvSettings/SettingsAPI/java/com/android/tv/settings/library/device/apps/specialaccess/
DServiceListing.java48 private final String mIntentAction; field in ServiceListing
66 mIntentAction = intentAction; in ServiceListing()
142 new Intent(mIntentAction), flags, user); in reload()
199 private String mIntentAction; field in ServiceListing.Builder
220 mIntentAction = intentAction; in setIntentAction()
248 return new ServiceListing(mContext, mTag, mSetting, mIntentAction, mPermission, mNoun, in build()
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
DIndexData.java92 intentAction = builder.mIntentAction; in IndexData()
174 private String mIntentAction; field in IndexData.Builder
203 return mIntentAction; in getIntentAction()
260 mIntentAction = intentAction; in setIntentAction()
336 boolean isEmptyIntentAction = TextUtils.isEmpty(mIntentAction); in buildIntent()
343 intent = DatabaseIndexingUtils.buildSearchTrampolineIntent(mIntentAction, in buildIntent()
346 intent = DatabaseIndexingUtils.buildDirectSearchResultIntent(mIntentAction, in buildIntent()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/v2/model/
DMediaQuery.java46 private final String mIntentAction; field in MediaQuery
61 mIntentAction = Objects.requireNonNull(queryArgs.getString("intent_action")); in MediaQuery()
91 return mIntentAction; in getIntentAction()
/packages/apps/Settings/src/com/android/settings/utils/
DManagedServiceSettings.java267 private String mIntentAction; field in ManagedServiceSettings.Config.Builder
286 mIntentAction = intentAction; in setIntentAction()
321 return new Config(mTag, mSetting, mIntentAction, mConfigIntentAction, mPermission, in build()