Home
last modified time | relevance | path

Searched refs:localState (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DDragEvent.java302 IDragAndDropPermissions dragAndDropPermissions, Object localState, boolean result) { in init() argument
313 mLocalState = localState; in init()
323 int flags, Object localState, ClipDescription description, ClipData data, in obtain() argument
331 dragAndDropPermissions, localState, result); in obtain()
343 dragAndDropPermissions, localState, result); in obtain()
/frameworks/av/media/libaudioclient/
DAudioTrackShared.cpp1076 StaticAudioTrackState *localState, const StaticAudioTrackState &update) const in updateStateWithLoop() argument
1078 if (localState->mLoopSequence != update.mLoopSequence) { in updateStateWithLoop()
1082 size_t position = localState->mPosition; in updateStateWithLoop()
1099 localState->mPosition = position; in updateStateWithLoop()
1100 localState->mLoopCount = update.mLoopCount; in updateStateWithLoop()
1101 localState->mLoopEnd = loopEnd; in updateStateWithLoop()
1102 localState->mLoopStart = loopStart; in updateStateWithLoop()
1103 localState->mLoopSequence = update.mLoopSequence; in updateStateWithLoop()
1109 StaticAudioTrackState *localState, const StaticAudioTrackState &update) const in updateStateWithPosition() argument
1111 if (localState->mPositionSequence != update.mPositionSequence) { in updateStateWithPosition()
[all …]
/frameworks/base/core/tests/coretests/src/android/view/
DInsetsControllerTest.java913 final InsetsState localState = mController.getState(); in testInsetsChangedCount_onStateChanged() local
917 InsetsState newState = new InsetsState(localState, true /* copySources */); in testInsetsChangedCount_onStateChanged()
924 newState = new InsetsState(localState, true /* copySources */); in testInsetsChangedCount_onStateChanged()
931 newState = new InsetsState(localState, true /* copySources */); in testInsetsChangedCount_onStateChanged()
938 newState = new InsetsState(localState, true /* copySources */); in testInsetsChangedCount_onStateChanged()
/frameworks/av/include/private/media/
DAudioTrackShared.h761 status_t updateStateWithLoop(StaticAudioTrackState *localState,
763 status_t updateStateWithPosition(StaticAudioTrackState *localState,
/frameworks/base/core/java/android/widget/
DEditor.java1474 DragLocalState localState = new DragLocalState(mTextView, start, end); in startDragAndDrop() local
1475 mTextView.startDragAndDrop(data, getTextThumbnailBuilder(start, end), localState, in startDragAndDrop()
3063 Object localState = event.getLocalState(); in onDrop() local
3065 if (localState instanceof DragLocalState) { in onDrop()
3066 dragLocalState = (DragLocalState) localState; in onDrop()