Home
last modified time | relevance | path

Searched refs:resIdx (Results 1 – 4 of 4) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowSoundPool.java104 for (int resIdx = 0; resIdx < idToRes.size(); ++resIdx) { in notifyResourceLoaded()
105 if (idToRes.valueAt(resIdx) == resId) { in notifyResourceLoaded()
107 listener.onLoadComplete(realObject, idToRes.keyAt(resIdx), success ? 0 : 1); in notifyResourceLoaded()
/external/jdiff/src/jdiff/
DAPI.java320 int resIdx = 0; in showHTMLTags() local
332 res.setCharAt(resIdx ,'<'); in showHTMLTags()
344 res.setCharAt(resIdx ,'"'); in showHTMLTags()
354 res.setCharAt(resIdx ,'&'); in showHTMLTags()
357 res.setCharAt(resIdx, c); in showHTMLTags()
360 resIdx++; in showHTMLTags()
362 res.setLength(resIdx); in showHTMLTags()
/external/llvm-project/mlir/tools/mlir-tblgen/
DOpFormatGen.cpp2932 unsigned resIdx = var->getVar() - op.result_begin(); in parseTypeDirectiveOperand() local
2933 if (!isTypeRef && (fmt.allResultTypes || seenResultTypes.test(resIdx))) in parseTypeDirectiveOperand()
2936 if (isTypeRef && !(fmt.allResultTypes || seenResultTypes.test(resIdx))) in parseTypeDirectiveOperand()
2939 seenResultTypes.set(resIdx); in parseTypeDirectiveOperand()
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorTransforms.cpp1577 SmallVector<int64_t, 4> resIdx(resRank); in matchAndRewrite() local
1583 incIdx(resIdx, resultVectorType, resRank - 1); in matchAndRewrite()
1586 result = rewriter.create<vector::InsertOp>(loc, e, result, resIdx); in matchAndRewrite()