/packages/apps/DocumentsUI/src/com/android/documentsui/ |
D | FocusManager.java | 67 private final ContentScope mScope = new ContentScope(); field in FocusManager 138 if (hasFocus && mScope.isValid() && v.getParent() == mScope.view) { in onFocusChange() 139 mScope.lastFocusPosition = mScope.view.getChildAdapterPosition(v); in onFocusChange() 145 if (!mScope.isValid() || mScope.adapter.getItemCount() == 0) { in focusDirectoryList() 163 final int focusPos = (mScope.lastFocusPosition != RecyclerView.NO_POSITION) in focusDirectoryList() 164 ? mScope.lastFocusPosition in focusDirectoryList() 165 : mScope.layout.findFirstVisibleItemPosition(); in focusDirectoryList() 180 if (mScope.pendingFocusId == null) { in onLayoutCompleted() 184 int pos = mScope.adapter.getStableIds().indexOf(mScope.pendingFocusId); in onLayoutCompleted() 188 mScope.pendingFocusId = null; in onLayoutCompleted() [all …]
|
D | ActionModeController.java | 53 private final ContentScope mScope = new ContentScope(); field in ActionModeController 137 mScope.accessibilityImportanceSetter.setAccessibilityImportance( in onDestroyActionMode() 154 mScope.accessibilityImportanceSetter.setAccessibilityImportance( in onCreateActionMode() 173 mMenuManager.updateActionMenu(mMenu, mScope.selectionDetails); in updateActionMenu() 179 return mScope.menuItemClicker.accept(item); in onActionItemClicked() 212 mScope.menuItemClicker = menuItemClicker; in reset() 213 mScope.selectionDetails = selectionDetails; in reset() 214 mScope.accessibilityImportanceSetter = in reset()
|
/packages/modules/Bluetooth/android/pandora/server/src/ |
D | Gatt.kt | 49 private val mScope: CoroutineScope = CoroutineScope(Dispatchers.Default.limitedParallelism(1)) constant in com.android.pandora.Gatt 54 private val serverManager by lazy { GattServerManager(mBluetoothManager, context, mScope) } in <lambda>() 61 flow = intentFlow(context, intentFilter, mScope).shareIn(mScope, SharingStarted.Eagerly) 66 mScope.cancel() in close() 75 grpcUnary<ExchangeMTUResponse>(mScope, responseObserver) { in exchangeMTU() 89 grpcUnary<WriteResponse>(mScope, responseObserver) { in writeAttFromHandle() 124 grpcUnary<DiscoverServicesResponse>(mScope, responseObserver) { in discoverServiceByUuid() 144 grpcUnary<DiscoverServicesResponse>(mScope, responseObserver) { in discoverServices() 159 grpcUnary<DiscoverServicesSdpResponse>(mScope, responseObserver) { in discoverServicesSdp() 182 grpcUnary<ClearCacheResponse>(mScope, responseObserver) { in clearCache() [all …]
|
D | Pan.kt | 42 private val mScope: CoroutineScope = CoroutineScope(Dispatchers.Default.limitedParallelism(1)) constant in com.android.pandora.Pan 70 mScope.cancel() in close() 77 grpcUnary<EnableTetheringResponse>(mScope, responseObserver) { in enableTethering() 95 grpcUnary<ConnectPanResponse>(mScope, responseObserver) { in connectPan()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/ |
D | Attribution.java | 36 @Scope private int mScope; field in Attribution 52 this.mScope = builder.mScope; in Attribution() 79 return mScope == attr.mScope in equals() 96 mScope, in hashCode() 118 return mScope; in getScope() 183 @Scope private int mScope; field in Attribution.Builder 204 mScope = scope; in setScope()
|
/packages/modules/IntentResolver/java/src/com/android/intentresolver/contentpreview/ |
D | ChooserContentPreviewUi.java | 53 private final CoroutineScope mScope; field in ChooserContentPreviewUi 115 mScope = scope; in ChooserContentPreviewUi() 148 mScope, in createContentPreview() 165 previewData.getFirstFileName(mScope, fileContentPreviewUi::setFirstFileName); in createContentPreview() 181 mScope, in createContentPreview() 194 mScope, in createContentPreview() 202 mScope, in createContentPreview()
|
D | TextContentPreviewUi.java | 40 private final CoroutineScope mScope; field in TextContentPreviewUi 64 mScope = scope; in TextContentPreviewUi() 128 mScope, in displayInternal()
|
D | FilesPlusTextContentPreviewUi.java | 52 private final CoroutineScope mScope; field in FilesPlusTextContentPreviewUi 89 mScope = scope; in FilesPlusTextContentPreviewUi() 171 mScope, in updateUiWithMetadata()
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
D | SettingObserver.java | 55 private final String mScope; field in SettingObserver 61 mScope = scope; in SettingObserver() 98 return (T) Integer.valueOf(mSettingsManager.getInteger(mScope, mKey)); in get() 100 Object string = mSettingsManager.getString(mScope, mKey); in get() 107 return (T) Boolean.valueOf(mSettingsManager.getBoolean(mScope, mKey)); in get()
|
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/ |
D | PrivateAddressCoordinator.java | 422 private final int mScope; field in PrivateAddressCoordinator.AddressKey 426 mScope = scope; in AddressKey() 431 return (mTetheringType << 16) + mScope; in hashCode() 439 return mTetheringType == other.mTetheringType && mScope == other.mScope; in equals() 444 return "AddressKey(" + mTetheringType + ", " + mScope + ")"; in toString()
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastChannelManager.java | 162 public int mScope; field in CellBroadcastChannelManager.CellBroadcastChannelRange 198 mScope = SCOPE_UNKNOWN; in CellBroadcastChannelRange() 236 mScope = SCOPE_CARRIER; in CellBroadcastChannelRange() 238 mScope = SCOPE_DOMESTIC; in CellBroadcastChannelRange() 240 mScope = SCOPE_INTERNATIONAL; in CellBroadcastChannelRange() 353 + mEmergencyLevel + ",type=" + mAlertType + ",scope=" + mScope + ",vibration=" in toString() 569 && checkScope(range.mScope)) { in findChannelRange()
|
D | CellBroadcastAlertService.java | 566 if (!channelManager.checkScope(range.mScope)) { in isChannelEnabled() 568 + "] is not within the scope. mScope = " + range.mScope); in isChannelEnabled()
|
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/ |
D | CellBroadcastChannelManagerTest.java | 159 assertEquals(list.get(2).mScope, CellBroadcastChannelRange.SCOPE_CARRIER); in verifyChannelRangesForConfig1() 259 assertEquals(list.get(2).mScope, CellBroadcastChannelRange.SCOPE_CARRIER); in verifyChannelRangesForConfig2()
|