HomeSort by relevance Sort by last modified time
    Searched refs:fWeight (Results 1 - 23 of 23) sorted by null

  /external/skia/src/pathops/
SkPathOpsConic.cpp 48 conic_eval_tan(&fPts[0].fX, fWeight, t),
49 conic_eval_tan(&fPts[0].fY, fWeight, t)
91 double denominator = conic_eval_denominator(fWeight, t);
93 conic_eval_numerator(&fPts[0].fX, fWeight, t) / denominator,
94 conic_eval_numerator(&fPts[0].fY, fWeight, t) / denominator
127 ax = conic_eval_numerator(&fPts[0].fX, fWeight, t1);
128 ay = conic_eval_numerator(&fPts[0].fY, fWeight, t1);
129 az = conic_eval_denominator(fWeight, t1);
136 double dx = conic_eval_numerator(&fPts[0].fX, fWeight, midT);
137 double dy = conic_eval_numerator(&fPts[0].fY, fWeight, midT)
    [all...]
SkPathOpsConic.h 20 SkScalar fWeight;
35 SkDConic result = {{{fPts[2], fPts[1], fPts[0]}}, fWeight};
43 fWeight = weight;
SkPathOpsRect.cpp 36 roots = SkDConic::FindExtrema(&sub[0].fX, sub.fWeight, tValues);
39 roots += SkDConic::FindExtrema(&sub[0].fY, sub.fWeight, &tValues[roots]);
SkOpSegment.h 189 return (*CurveDPointAtT[fVerb])(fPts, fWeight, mid);
193 return (*CurveDSlopeAtT[fVerb])(fPts, fWeight, mid);
251 return (*CurveIsVertical[fVerb])(fPts, fWeight, start->t(), end->t());
297 return (*CurvePointAtT[fVerb])(fPts, fWeight, mid);
398 return fWeight;
417 SkScalar fWeight;
SkPathOpsCurve.h 20 SkScalar fWeight;
34 SkDEBUGCODE(fWeight = 1);
42 SkDEBUGCODE(fWeight = 1);
SkOpSegment.cpp 212 bConic.set(segment->fPts, segment->fWeight);
253 eWeight = fWeight;
258 eWeight = edge.fWeight;
899 fWeight = weight;
    [all...]
SkDConicLineIntersection.cpp 131 double B = r[1] * fConic.fWeight - axisIntercept * fConic.fWeight + axisIntercept;
SkPathOpsWinding.cpp 131 int roots = (*CurveIntercept[fVerb * 2 + xy_index(dir)])(fPts, fWeight, baseYX, tVals);
SkPathOpsDebug.cpp 465 bConic.set(segment->fPts, segment->fWeight);
845 this->init(this->fPts, this->fWeight, this->contour(), this->verb());
872 SkDebugf(" %1.9gf", fWeight);
    [all...]
  /external/skia/src/core/
SkFontStyle.cpp 14 fUnion.fR.fWeight = kNormal_Weight;
21 fUnion.fR.fWeight = SkTPin<int>(weight, kThin_Weight, kBlack_Weight);
28 fUnion.fR.fWeight = (oldStyle & SkTypeface::kBold) ? SkFontStyle::kBold_Weight
  /external/skia/include/core/
SkFontStyle.h 53 int weight() const { return fUnion.fR.fWeight; }
64 uint16_t fWeight; // 100 .. 900
  /external/skia/src/utils/win/
SkDWrite.h 104 fWeight = (DWRITE_FONT_WEIGHT)pattern.weight();
108 DWRITE_FONT_WEIGHT fWeight;
  /external/skia/tests/
PathOpsConicIntersectionTest.cpp 48 SkASSERT(roughly_equal(chopped[0].fW, dChopped[0].fWeight));
49 SkASSERT(roughly_equal(chopped[1].fW, dChopped[1].fWeight));
121 {dC.fPts[2].fX * scale, dC.fPts[2].fY * scale }}}, dC.fWeight };
140 path.conicTo(dConic.fPts[1].asSkPoint(), dConic.fPts[2].asSkPoint(), dConic.fWeight);
149 path.conicTo(chopped.fPts[1].asSkPoint(), chopped.fPts[2].asSkPoint(), chopped.fWeight);
165 conic.fW = dConic.fWeight;
249 {dC.fPts[2].fX * scale, dC.fPts[2].fY * scale }}}, dC.fWeight };
278 {dC.fPts[2].fX * scale, dC.fPts[2].fY * scale }}}, dC.fWeight };
281 path.conicTo(dConic.fPts[1].asSkPoint(), dConic.fPts[2].asSkPoint(), dConic.fWeight);
PathOpsConicLineIntersectionTest.cpp 106 SkPath::Verb order1 = SkReduceOrder::Conic(pts, conic.fWeight, reduced);
FontMgrAndroidParserTest.cpp 91 SkDebugf(" file (%d) %s#%d", ffi.fWeight, ffi.fFileName.c_str(), ffi.fIndex);
PathOpsTestCommon.cpp 274 if (SkDoubleIsNaN(conic.fWeight)) {
PathOpsDebug.cpp 66 SkDebugf("}}, %1.9gf", fWeight);
    [all...]
  /external/skia/src/ports/
SkFontMgr_android_parser.h 70 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { }
74 int fWeight;
SkRemotableFontMgr_win_dw.cpp 190 HR_GENERAL(fontFamily->GetFirstMatchingFont(dwStyle.fWeight, dwStyle.fWidth,
425 dwStyle.fWeight,
SkFontMgr_android.cpp 177 int weight = fontFile.fWeight != 0 ? fontFile.fWeight : style.weight();
SkFontMgr_android_parser.cpp 214 if (!parse_non_negative_integer(value, &file.fWeight)) {
340 if (targetFamily->fFonts[i].fWeight == weight) {
SkFontMgr_win_dw.cpp 784 dwStyle.fWeight,
809 dwStyle.fWeight,
    [all...]
  /external/skia/samplecode/
SampleQuadStroker.cpp 124 SkScalar fWeight;
170 fWeight = 1;
593 path.conicTo(fPts[5], fPts[6], fWeight);
682 draw_control(canvas, fWeightControl, fWeight, 0, 5, "weight");
776 fWeight = MapScreenYtoValue(click->fICurr.fY, fWeightControl, 0, 5);

Completed in 1681 milliseconds