Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/remotecompose/player/platform/
DAndroidRemoteContext.java54 if (!mRemoteComposeState.containsId(instanceId)) { in loadPathData()
55 mRemoteComposeState.cache(instanceId, floatPath); in loadPathData()
88 if (!mRemoteComposeState.containsId(imageId)) { in loadBitmap()
90 mRemoteComposeState.cache(imageId, image); in loadBitmap()
96 if (!mRemoteComposeState.containsId(id)) { in loadText()
97 mRemoteComposeState.cache(id, text); in loadText()
99 mRemoteComposeState.update(id, text); in loadText()
105 return (String) mRemoteComposeState.getFromId(id); in getText()
110 mRemoteComposeState.updateFloat(id, value); in loadFloat()
116 mRemoteComposeState.updateColor(id, color); in loadColor()
[all …]
DAndroidPaintContext.java90 if (androidContext.mRemoteComposeState.containsId(imageId)) { in drawBitmap()
91 Bitmap bitmap = (Bitmap) androidContext.mRemoteComposeState in drawBitmap()
129 if (androidContext.mRemoteComposeState.containsId(id)) { in drawBitmap()
131 (Bitmap) androidContext.mRemoteComposeState.getFromId(id); in drawBitmap()
624 (float[]) androidContext.mRemoteComposeState.getFromId(path1Id); in getPath()
626 (float[]) androidContext.mRemoteComposeState.getFromId(path2Id); in getPath()
643 if (androidContext.mRemoteComposeState.containsId(id)) { in getPath()
645 (float[]) androidContext.mRemoteComposeState.getFromId(id); in getPath()
652 return (String) mContext.mRemoteComposeState.getFromId(id); in getText()
656 return (ShaderData) mContext.mRemoteComposeState.getFromId(id); in getShaderData()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/
DRemoteComposeBuffer.java81 RemoteComposeState mRemoteComposeState; field in RemoteComposeBuffer
90 this.mRemoteComposeState = remoteComposeState; in RemoteComposeBuffer()
100 mRemoteComposeState.reset(); in reset()
171 int imageId = mRemoteComposeState.dataGetId(image); in drawBitmap()
173 imageId = mRemoteComposeState.cache(image); in drawBitmap()
194 int id = mRemoteComposeState.dataGetId(text); in addText()
196 id = mRemoteComposeState.cache(text); in addText()
301 int imageId = mRemoteComposeState.dataGetId(image); in addDrawBitmap()
303 imageId = mRemoteComposeState.cache(image); in addDrawBitmap()
365 int id = mRemoteComposeState.dataGetId(path); in addDrawPath()
[all …]
DCoreDocument.java32 RemoteComposeState mRemoteComposeState = new RemoteComposeState(); field in CoreDocument
49 RemoteComposeBuffer mBuffer = new RemoteComposeBuffer(mRemoteComposeState);
73 mRemoteComposeState.setWindowWidth(width); in setWidth()
82 mRemoteComposeState.setWindowHeight(height); in setHeight()
95 return mRemoteComposeState; in getRemoteComposeState()
99 this.mRemoteComposeState = remoteComposeState; in setRemoteComposeState()
363 mRemoteComposeState.reset(); in initializeContext()
365 mRemoteComposeState.setNextId(RemoteComposeState.START_ID); in initializeContext()
367 context.mRemoteComposeState = mRemoteComposeState; in initializeContext()
515 context.mRemoteComposeState = mRemoteComposeState; in paint()
DRemoteContext.java32 public RemoteComposeState mRemoteComposeState; field in RemoteContext
133 mRemoteComposeState.setWindowWidth(width); in header()
134 mRemoteComposeState.setWindowHeight(height); in header()
169 String contentDescription = (String) mRemoteComposeState.getFromId(contentDescriptionId); in setDocumentContentDescription()