/frameworks/av/camera/ |
D | Camera.cpp | 50 sp<Camera> c = new Camera(-1); in create() local 81 sp <::android::hardware::ICamera> c = mCamera; in reconnect() local 88 sp <::android::hardware::ICamera> c = mCamera; in lock() local 95 sp <::android::hardware::ICamera> c = mCamera; in unlock() local 103 sp<::android::hardware::ICamera> c = mCamera; in setPreviewTarget() local 111 sp<::android::hardware::ICamera> c = mCamera; in setVideoTarget() local 121 sp <::android::hardware::ICamera> c = mCamera; in startPreview() local 129 sp <::android::hardware::ICamera> c = mCamera; in setVideoBufferMode() local 138 sp <::android::hardware::ICamera> c = mCamera; in startRecording() local 147 sp <::android::hardware::ICamera> c = mCamera; in stopPreview() local [all …]
|
/frameworks/av/media/libstagefright/tests/ |
D | VideoRenderQualityTracker_test.cpp | 136 Configuration c = Configuration::getFromServerConfigurableFlags(getServerConfigurableFlagFn); in TEST_F() local 167 Configuration c = Configuration::getFromServerConfigurableFlags(getServerConfigurableFlagFn); in TEST_F() local 198 Configuration c = Configuration::getFromServerConfigurableFlags(getServerConfigurableFlagFn); in TEST_F() local 274 Configuration c = Configuration::getFromServerConfigurableFlags(getServerConfigurableFlagFn); in TEST_F() local 351 Configuration c = Configuration::getFromServerConfigurableFlags(getServerConfigurableFlagFn); in TEST_F() local 414 Configuration c; in TEST_F() local 426 Configuration c; in TEST_F() local 441 Configuration c; in TEST_F() local 458 Configuration c; in TEST_F() local 475 Configuration c; in TEST_F() local [all …]
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
D | BiDiTestGridLayoutCodeLtr.java | 86 TextView c = new TextView(context); in create() local 92 TextView c = new TextView(context); in create() local 98 TextView c = new TextView(context); in create() local 103 EditText c = new EditText(context); in create() local 109 TextView c = new TextView(context); in create() local 114 TextView c = new EditText(context); in create() local 120 Space c = new Space(context); in create() local 124 Button c = new Button(context); in create() local 129 Button c = new Button(context); in create() local
|
D | BiDiTestGridLayoutCodeRtl.java | 86 TextView c = new TextView(context); in create() local 92 TextView c = new TextView(context); in create() local 98 TextView c = new TextView(context); in create() local 103 EditText c = new EditText(context); in create() local 109 TextView c = new TextView(context); in create() local 114 TextView c = new EditText(context); in create() local 120 Space c = new Space(context); in create() local 124 Button c = new Button(context); in create() local 129 Button c = new Button(context); in create() local
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/shade/carrier/ |
D | ShadeCarrierTest.java | 66 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_first() local 73 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_same() local 81 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_changed() local 92 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_singleCarrier_first() local 99 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_singleCarrier_noShowIcon() local 108 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_multiCarrier_showIcon() local 117 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false); in testUpdateState_changeSingleMultiSingle() local
|
D | CellSignalStateTest.kt | 33 val c = CellSignalState() in testChangeVisibility_sameObject() constant 42 val c = CellSignalState() in testChangeVisibility_otherObject() constant
|
/frameworks/base/core/java/android/text/ |
D | LoginFilter.java | 61 char c = dest.charAt(i); in filter() local 70 char c = source.charAt(i); in filter() local 93 char c = dest.charAt(i); in filter() local 115 public void onInvalidCharacter(char c) { in onInvalidCharacter() 130 public abstract boolean isAllowed(char c); in isAllowed() 151 public boolean isAllowed(char c) { in isAllowed() 182 public boolean isAllowed(char c) { in isAllowed() 217 public boolean isAllowed(char c) { in isAllowed()
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | DatabaseCursorTest.java | 110 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testBlob() local 133 Cursor c = mDatabase.rawQuery("SELECT data FROM test", null); in testRealColumns() local 144 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testCursor1() local 208 Cursor c = mDatabase.query("test", null, "_id > 1000", null, null, null, null); in testCursor2() local 248 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testLargeField() local 262 SQLiteCursor c; field in DatabaseCursorTest.TestObserver 300 Cursor c = mDatabase.query("test", new String[]{"data"}, null, null, null, null, null); in testManyRowsLong() local 336 Cursor c = mDatabase.query("test", new String[]{"data"}, null, null, null, null, null); in testManyRowsTxt() local 373 … Cursor c = mDatabase.query("test", new String[]{"txt", "data"}, null, null, null, null, null); in testManyRowsTxtLong() local 391 Cursor c = mDatabase.rawQuery("SELECT * FROM test", null); in testRequery() local [all …]
|
D | DatabaseStatementTest.java | 85 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testExecuteStatement() local 139 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementLongBinding() local 161 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementStringBinding() local 184 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementClearBindings() local 206 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testSimpleStringBinding() local 231 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementMultipleBindings() local 266 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in run() local 315 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementConstraint() local
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsCallInfoTrackerTest.java | 71 ImsPhoneConnection c = getConnection(Call.State.IDLE, false); in testDialingNormalCall() local 99 ImsPhoneConnection c = getConnection(Call.State.IDLE, true); in testDialingEmergencyCall() local 127 ImsPhoneConnection c = getConnection(Call.State.INCOMING, false); in testIncomingCall() local 316 ImsPhoneConnection c = getConnection(Call.State.INCOMING, false); in testHeldByRemote() local 378 ImsPhoneConnection c = getConnection(Call.State.IDLE, false); in testSrvccCompleted() local 404 ImsPhoneConnection c = getConnection(Call.State.IDLE, false); in testNetworkChanged() local 433 ImsPhoneConnection c = getConnection(Call.State.IDLE, false); in testClearAllOrphanedConnections() local 466 ImsPhoneConnection c = getConnection(Call.State.DIALING, false); in testAddImsCallStatus() local 484 ImsPhoneConnection c = mock(ImsPhoneConnection.class); in getConnection() local
|
/frameworks/minikin/libs/minikin/ |
D | Emoji.cpp | 21 bool isEmoji(uint32_t c) { in isEmoji() 25 bool isEmojiModifier(uint32_t c) { in isEmojiModifier() 31 bool isEmojiBase(uint32_t c) { in isEmojiBase() 42 UCharDirection emojiBidiOverride(const void* /* context */, UChar32 c) { in emojiBidiOverride()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SimulatedGsmCallState.java | 456 CallInfo c = mCalls[i]; in releaseHeldOrUDUB() local 467 CallInfo c = mCalls[i]; in releaseHeldOrUDUB() local 488 CallInfo c = mCalls[i]; in releaseActiveAcceptHeldOrWaiting() local 500 CallInfo c = mCalls[i]; in releaseActiveAcceptHeldOrWaiting() local 513 CallInfo c = mCalls[i]; in releaseActiveAcceptHeldOrWaiting() local 526 CallInfo c = mCalls[i]; in releaseActiveAcceptHeldOrWaiting() local 544 CallInfo c = mCalls[i]; in switchActiveAndHeldOrWaiting() local 554 CallInfo c = mCalls[i]; in switchActiveAndHeldOrWaiting() local 575 CallInfo c; in separateCall() local 620 CallInfo c = mCalls[i]; in conference() local [all …]
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/backup/transport/ |
D | BackupTransportClientTest.java | 226 @Override public void initializeDevice(ITransportStatusCallback c) throws RemoteException { in initializeDevice() 229 @Override public void finishBackup(ITransportStatusCallback c) throws RemoteException { in finishBackup() 319 @Override public void initializeDevice(ITransportStatusCallback c) throws RemoteException {} in initializeDevice() 320 @Override public void clearBackupData(PackageInfo i, ITransportStatusCallback c) in clearBackupData() 322 @Override public void finishBackup(ITransportStatusCallback c) throws RemoteException {} in finishBackup() 325 ITransportStatusCallback c) throws RemoteException {} in performBackup() 329 @Override public void startRestore(long t, PackageInfo[] p, ITransportStatusCallback c) in startRestore() 333 @Override public void getRestoreData(ParcelFileDescriptor fd, ITransportStatusCallback c) in getRestoreData() 335 @Override public void finishRestore(ITransportStatusCallback c) throws RemoteException {} in finishRestore() 338 ITransportStatusCallback c) throws RemoteException {} in performFullBackup() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ATResponseParser.java | 49 char c = mLine.charAt(mTokStart); in nextBoolean() local 67 char c = mLine.charAt(i); in nextInt() local 111 char c = mLine.charAt(mNext++); in nextTok() local 153 skipWhiteSpace (char c) in skipWhiteSpace() 176 char c = mLine.charAt(mNext++); in skipPrefix() local
|
/frameworks/base/core/java/com/android/internal/util/function/pooled/ |
D | OmniFunction.java | 69 abstract R invoke(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j, K k); in invoke() 126 public R apply(A a, B b, C c) { in apply() 131 public void accept(A a, B b, C c) { in accept() 136 public R apply(A a, B b, C c, D d) { in apply() 141 public R apply(A a, B b, C c, D d, E e) { in apply() 146 public R apply(A a, B b, C c, D d, E e, F f) { in apply() 151 public R apply(A a, B b, C c, D d, E e, F f, G g) { in apply() 156 public R apply(A a, B b, C c, D d, E e, F f, G g, H h) { in apply() 161 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i) { in apply() 166 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j) { in apply() [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesCommandQueueCallbacksTest.java | 218 ComponentName c = new ComponentName("testpkg", "testcls"); in addQsTile_delegateCallToQsHost() local 227 ComponentName c = new ComponentName("testpkg", "testcls"); in addQsTileToFrontOrEnd_toTheEnd_delegateCallToQsHost() local 236 ComponentName c = new ComponentName("testpkg", "testcls"); in addQsTileToFrontOrEnd_toTheFront_delegateCallToQsHost() local 247 ComponentName c = new ComponentName("testpkg", "testcls"); in clickQsTile_flagsDisabled_callsQSPanelController() local 257 ComponentName c = new ComponentName("testpkg", "testcls"); in clickQsTile_onlyQSComposeFlag_callsQSHost() local 268 ComponentName c = new ComponentName("testpkg", "testcls"); in clickQsTile_onlySceneContainerFlag_callsQSHost() local 279 ComponentName c = new ComponentName("testpkg", "testcls"); in clickQsTile_qsComposeAndSceneContainerFlags_callsQSHost() local
|
/frameworks/minikin/include/minikin/ |
D | Emoji.h | 30 inline bool isRegionalIndicator(uint32_t c) { in isRegionalIndicator() 34 inline bool isKeyCap(uint32_t c) { in isKeyCap() 38 inline bool isTagChar(uint32_t c) { in isTagChar()
|
/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
D | IImsRegistration.aidl | 29 oneway void addRegistrationCallback(IImsRegistrationCallback c); in addRegistrationCallback() 30 oneway void removeRegistrationCallback(IImsRegistrationCallback c); in removeRegistrationCallback() 31 oneway void addEmergencyRegistrationCallback(IImsRegistrationCallback c); in addEmergencyRegistrationCallback() 32 oneway void removeEmergencyRegistrationCallback(IImsRegistrationCallback c); in removeEmergencyRegistrationCallback()
|
D | IImsRcsController.aidl | 42 void registerImsRegistrationCallback(int subId, IImsRegistrationCallback c); in registerImsRegistrationCallback() 43 void unregisterImsRegistrationCallback(int subId, IImsRegistrationCallback c); in unregisterImsRegistrationCallback() 48 void registerRcsAvailabilityCallback(int subId, IImsCapabilityCallback c); in registerRcsAvailabilityCallback() 49 void unregisterRcsAvailabilityCallback(int subId, IImsCapabilityCallback c); in unregisterRcsAvailabilityCallback() 55 in List<Uri> contactNumbers, IRcsUceControllerCallback c); in requestCapabilities() 58 IRcsUceControllerCallback c); in requestAvailability() 62 void registerUcePublishStateCallback(int subId, IRcsUcePublishStateCallback c); in registerUcePublishStateCallback() 63 void unregisterUcePublishStateCallback(int subId, IRcsUcePublishStateCallback c); in unregisterUcePublishStateCallback()
|
D | IImsRcsFeature.aidl | 39 oneway void addCapabilityCallback(IImsCapabilityCallback c); in addCapabilityCallback() 40 oneway void removeCapabilityCallback(IImsCapabilityCallback c); in removeCapabilityCallback() 42 IImsCapabilityCallback c); in changeCapabilitiesConfiguration() 44 IImsCapabilityCallback c); in queryCapabilityConfiguration()
|
D | IImsConfig.aidl | 35 void addImsConfigCallback(IImsConfigCallback c); in addImsConfigCallback() 36 void removeImsConfigCallback(IImsConfigCallback c); in removeImsConfigCallback() 46 void addRcsConfigCallback(IRcsConfigCallback c); in addRcsConfigCallback() 47 void removeRcsConfigCallback(IRcsConfigCallback c); in removeRcsConfigCallback()
|
/frameworks/base/telephony/java/android/telephony/ims/feature/ |
D | ImsFeature.java | 185 public CapabilityCallbackProxy(IImsCapabilityCallback c) { in CapabilityCallbackProxy() 392 public void addImsFeatureStatusCallback(@NonNull IImsFeatureStatusCallback c) { in addImsFeatureStatusCallback() 410 public void removeImsFeatureStatusCallback(@NonNull IImsFeatureStatusCallback c) { in removeImsFeatureStatusCallback() 421 mStatusCallbacks.broadcastAction((c) -> { in notifyFeatureState() argument 435 public final void addCapabilityCallback(IImsCapabilityCallback c) { in addCapabilityCallback() 448 final void removeCapabilityCallback(IImsCapabilityCallback c) { in removeCapabilityCallback() 454 IImsCapabilityCallback c) { in queryCapabilityConfigurationInternal() 482 IImsCapabilityCallback c) { in requestChangeEnabledCapabilities() 542 CapabilityCallbackProxy c); in changeEnabledCapabilities()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ErrorDialogController.java | 154 Consumer<BaseErrorDialog> c) { in scheduleForAllDialogs() 162 void forAllDialogs(List<? extends BaseErrorDialog> dialogs, Consumer<BaseErrorDialog> c) { in forAllDialogs() 173 final Context c = contexts.get(i); in showCrashDialogs() local 193 final Context c = contexts.get(i); in showAnrDialogs() local 204 final Context c = contexts.get(i); in showViolationDialogs() local 214 final Context c = contexts.get(0); in showDebugWaitingDialogs() local
|
/frameworks/base/services/core/java/com/android/server/om/ |
D | IdmapDaemon.java | 141 try (Connection c = connect()) { in createIdmap() 156 try (Connection c = connect()) { in removeIdmap() 171 try (Connection c = connect()) { in verifyIdmap() 188 try (Connection c = connect()) { in idmapExists() 206 try (Connection c = connect()) { in createFabricatedOverlay() 221 try (Connection c = connect()) { in deleteFabricatedOverlay() 238 Connection c = null; in getFabricatedOverlayInfos() local 272 try (Connection c = connect()) { in dumpIdmap()
|
/frameworks/base/core/java/android/hardware/location/ |
D | GeofenceHardware.java | 480 GeofenceHardwareMonitorCallbackWrapper(GeofenceHardwareMonitorCallback c) { in GeofenceHardwareMonitorCallbackWrapper() 485 GeofenceHardwareMonitorCallback c = mCallback.get(); in onMonitoringSystemChange() local 505 GeofenceHardwareCallbackWrapper(GeofenceHardwareCallback c) { in GeofenceHardwareCallbackWrapper() 511 GeofenceHardwareCallback c = mCallback.get(); in onGeofenceTransition() local 519 GeofenceHardwareCallback c = mCallback.get(); in onGeofenceAdd() local 524 GeofenceHardwareCallback c = mCallback.get(); in onGeofenceRemove() local 532 GeofenceHardwareCallback c = mCallback.get(); in onGeofencePause() local 539 GeofenceHardwareCallback c = mCallback.get(); in onGeofenceResume() local
|