/third_party/skia/src/pathops/ |
H A D | SkDCubicLineIntersection.cpp | 272 for (int cIndex = 0; cIndex < 4; cIndex += 3) { in addExactEndPoints() 273 double lineT = fLine.exactPoint(fCubic[cIndex]); in addExactEndPoints() 277 double cubicT = (double) (cIndex >> 1); in addExactEndPoints() 278 fIntersections->insert(cubicT, lineT, fCubic[cIndex]); in addExactEndPoints() 285 for (int cIndex = 0; cIndex < 4; cIndex += 3) { in addNearEndPoints() 286 double cubicT = (double) (cIndex >> in addNearEndPoints() [all...] |
H A D | SkDConicLineIntersection.cpp | 179 for (int cIndex = 0; cIndex < SkDConic::kPointCount; cIndex += SkDConic::kPointLast) { in addExactEndPoints() 180 double lineT = fLine->exactPoint(fConic[cIndex]); in addExactEndPoints() 184 double conicT = (double) (cIndex >> 1); in addExactEndPoints() 185 fIntersections->insert(conicT, lineT, fConic[cIndex]); in addExactEndPoints() 190 for (int cIndex = 0; cIndex < SkDConic::kPointCount; cIndex += SkDConic::kPointLast) { in addNearEndPoints() 191 double conicT = (double) (cIndex >> in addNearEndPoints() [all...] |
/third_party/skia/experimental/docs/ |
H A D | interpolatorFunctions.js | 20 for (var cIndex = 0; cIndex < path.length; ++cIndex) { 21 out[cIndex] = {}; 22 var curveKey = Object.keys(path[cIndex])[0]; 23 var curve = path[cIndex][curveKey]; 53 out[cIndex][curveKey] = outArray; 67 for (var cIndex = 0; cIndex < curves0.length; ++cIndex) { [all...] |
H A D | svgBackend.js | 139 for (var cIndex = 0; cIndex < path.length; ++cIndex) { 140 var curveKey = Object.keys(path[cIndex])[0]; 141 var v = path[cIndex][curveKey];
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | Input.cpp | 38 ASSERT(mReadLoc.cIndex < mLength[mReadLoc.sIndex]); 39 ++mReadLoc.cIndex; 40 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) 43 mReadLoc.cIndex = 0; 49 return mString[mReadLoc.sIndex] + mReadLoc.cIndex; 59 const char *c = mString[mReadLoc.sIndex] + mReadLoc.cIndex; 101 size_t size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex; 108 if (*(mString[mReadLoc.sIndex] + mReadLoc.cIndex + i) == '\\') 114 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); 116 mReadLoc.cIndex [all...] |
H A D | Input.h | 36 size_t cIndex; // Char index. member 38 Location() : sIndex(0), cIndex(0) {} in Location()
|
H A D | preprocessor_lex_autogen.cpp | 744 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \ 746 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \ 752 scanLoc->cIndex += yyleng; \ 1349 scanLoc->cIndex = 0; in YY_STATE_EOF()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
H A D | Input.cpp | 46 assert(mReadLoc.cIndex < mLength[mReadLoc.sIndex]); 47 ++mReadLoc.cIndex; 48 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) 51 mReadLoc.cIndex = 0; 57 return mString[mReadLoc.sIndex] + mReadLoc.cIndex; 67 const char *c = mString[mReadLoc.sIndex] + mReadLoc.cIndex; 109 size_t size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex; 116 if (*(mString[mReadLoc.sIndex] + mReadLoc.cIndex + i) == '\\') 122 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); 124 mReadLoc.cIndex [all...] |
H A D | Input.h | 42 size_t cIndex; // Char index. member 44 Location() : sIndex(0), cIndex(0) {} in Location()
|
H A D | Tokenizer.cpp | 958 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \ 960 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \ 965 scanLoc->cIndex += yyleng; \ 1691 scanLoc->sIndex = sIndexMax; scanLoc->cIndex = 0; in YY_STATE_EOF()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | typeGuardNarrowsIndexedAccessOfKnownProperty5.js | 18 const cIndex = 1; 19 if (c[cIndex].x) { 20 c[cIndex].x // number 37 var cIndex = 1;
variable 38 if (c[cIndex].x) {
39 c[cIndex].x; // number
|
H A D | typeGuardNarrowsIndexedAccessOfKnownProperty6.js | 14 declare const cIndex: 1; 19 if (c[cIndex].x) { 20 c[cIndex].x // number 35 if (c[cIndex].x) {
36 c[cIndex].x; // number
|
/third_party/skia/tests/ |
H A D | PathOpsTightBoundsTest.cpp | 18 for (int cIndex = 0; cIndex < contourCount; ++cIndex) { in testTightBoundsLines() 63 for (int cIndex = 0; cIndex < contourCount; ++cIndex) { in testTightBoundsQuads()
|
H A D | PathOpsConicIntersectionTest.cpp | 50 for (int cIndex = 0; cIndex < 2; ++cIndex) { in chopCompare() 53 up.set(chopped[cIndex].fPts[pIndex]); in chopCompare() 54 SkASSERT(dChopped[cIndex].fPts[pIndex].approximatelyEqual(up)); in chopCompare()
|
/third_party/skia/gm/ |
H A D | arcto.cpp | 104 int cIndex = 0; in DEF_SIMPLE_GM() local 108 paint.setColor(colors[cIndex++]); in DEF_SIMPLE_GM()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 4350 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); in ParseConstraints() 4351 cIndex != eIndex; ++cIndex) { in ParseConstraints() 4352 AsmOperandInfo &OpInfo = ConstraintOperands[cIndex]; in ParseConstraints() 4387 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); in ParseConstraints() 4388 cIndex != eIndex; ++cIndex) { in ParseConstraints() 4389 AsmOperandInfo &cInfo = ConstraintOperands[cIndex]; in ParseConstraints() 4398 for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); in ParseConstraints() 4399 cIndex ! in ParseConstraints() [all...] |