Home
last modified time | relevance | path

Searched refs:cbInfo (Results 1 – 3 of 3) sorted by relevance

/external/skqp/src/gpu/vk/
DGrVkGpuCommandBuffer.cpp90 CommandBufferInfo& cbInfo = fCommandBufferInfos.push_back(); in init() local
97 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(rpHandle, in init()
101 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(*vkRT, in init()
106 cbInfo.fColorClearValue.color.float32[0] = fClearColor[0]; in init()
107 cbInfo.fColorClearValue.color.float32[1] = fClearColor[1]; in init()
108 cbInfo.fColorClearValue.color.float32[2] = fClearColor[2]; in init()
109 cbInfo.fColorClearValue.color.float32[3] = fClearColor[3]; in init()
112 cbInfo.fBounds = SkRect::MakeWH(vkRT->width(), vkRT->height()); in init()
114 cbInfo.fBounds.setEmpty(); in init()
118 cbInfo.fLoadStoreState = LoadStoreState::kStartsWithClear; in init()
[all …]
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp4839 callBackContext cbInfo = {this, 0, 0, 0}; in Callbacks() local
4845 matcher.setMatchCallback(testCallBackFn, &cbInfo, status); in Callbacks()
4850 REGEX_ASSERT(returnedContext == &cbInfo); in Callbacks()
4854 cbInfo.reset(1); in Callbacks()
4859 REGEX_ASSERT(cbInfo.numCalls == 0); in Callbacks()
4864 cbInfo.reset(4); in Callbacks()
4869 REGEX_ASSERT(cbInfo.numCalls > 0); in Callbacks()
4873 cbInfo.reset(4); in Callbacks()
4878 REGEX_ASSERT(cbInfo.numCalls == 4); in Callbacks()
4882 cbInfo.reset(4); in Callbacks()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dreapits.c1333 callBackContext cbInfo = {4, 0, 0}; in TestRegexCAPI() local
1334 const void *pContext = &cbInfo; in TestRegexCAPI()
1345 uregex_setMatchCallback(re, &TestCallbackFn, &cbInfo, &status); in TestRegexCAPI()
1347 TEST_ASSERT(cbInfo.numCalls == 0); in TestRegexCAPI()
1350 TEST_ASSERT(cbInfo.numCalls > 0); in TestRegexCAPI()
1355 TEST_ASSERT(pContext == &cbInfo); in TestRegexCAPI()