Home
last modified time | relevance | path

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

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/contrib/
Dauto-render.js150 var nextIndex = void 0;
151 nextIndex = text.indexOf(leftDelim);
153 if (nextIndex !== -1) {
154 currIndex = nextIndex;
164 nextIndex = text.indexOf(leftDelim, currIndex);
166 if (nextIndex === -1) {
172 data: text.slice(currIndex, nextIndex)
174 currIndex = nextIndex;
176 nextIndex = findEndOfMath(rightDelim, text, currIndex + leftDelim.length);
178 if (nextIndex === -1) {
[all …]
Dauto-render.mjs38 let nextIndex;
39 nextIndex = text.indexOf(leftDelim);
41 if (nextIndex !== -1) {
42 currIndex = nextIndex;
52 nextIndex = text.indexOf(leftDelim, currIndex);
54 if (nextIndex === -1) {
60 data: text.slice(currIndex, nextIndex)
62 currIndex = nextIndex;
64 nextIndex = findEndOfMath(rightDelim, text, currIndex + leftDelim.length);
66 if (nextIndex === -1) {
[all …]
/hardware/google/aemu/base/include/aemu/base/containers/
DHybridEntityManager.h39 uint64_t nextIndex = 0; in add() local
42 nextIndex = (uint64_t)mEntityManager.nextFreeIndex(); in add()
43 if (nextIndex < maxIndex) { in add()
45 if (EM::getHandleIndex(resultHandle) != nextIndex) { in add()
47 (unsigned long long)nextIndex, in add()
59 nextIndex = mIndexForMap; in add()
60 auto emplaced = mMap.emplace(nextIndex, data); in add()
63 (unsigned long long)nextIndex); in add()
67 return EM::makeHandle(nextIndex, 1, type); in add()