HomeSort by relevance Sort by last modified time
    Searched refs:fWeight (Results 1 - 22 of 22) 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)
77 double denominator = conic_eval_denominator(fWeight, t);
79 conic_eval_numerator(&fPts[0].fX, fWeight, t) / denominator,
80 conic_eval_numerator(&fPts[0].fY, fWeight, t) / denominator
87 double ax = conic_eval_numerator(&fPts[0].fX, fWeight, t1);
88 double ay = conic_eval_numerator(&fPts[0].fY, fWeight, t1);
89 double az = conic_eval_denominator(fWeight, t1);
91 double dx = conic_eval_numerator(&fPts[0].fX, fWeight, midT);
92 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 164 return (*CurveDPointAtT[fVerb])(fPts, fWeight, mid);
168 return (*CurveDSlopeAtT[fVerb])(fPts, fWeight, mid);
225 return (*CurveIsVertical[fVerb])(fPts, fWeight, start->t(), end->t());
270 return (*CurvePointAtT[fVerb])(fPts, fWeight, mid);
372 return fWeight;
390 SkScalar fWeight;
SkPathOpsCurve.h 20 SkScalar fWeight;
34 SkDEBUGCODE(fWeight = 1);
42 SkDEBUGCODE(fWeight = 1);
SkOpSegment.cpp 169 eWeight = fWeight;
174 eWeight = edge.fWeight;
821 fWeight = weight;
    [all...]
SkPathOpsDebug.cpp 171 this->init(this->fPts, this->fWeight, this->contour(), this->verb());
198 SkDebugf(" %1.9gf", fWeight);
298 CONIC_DEBUG_DATA(fCurvePart, fCurvePart.fConic.fWeight),
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);
  /external/skia/src/core/
SkFontStyle.cpp 14 fUnion.fR.fWeight = kNormal_Weight;
21 fUnion.fR.fWeight = SkPin32(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/ports/
SkFontConfigParser_android.h 65 FontFileInfo() : fIndex(0), fWeight(0), fStyle(Style::kAuto) { }
69 int fWeight;
SkRemotableFontMgr_win_dw.cpp 191 HR_GENERAL(fontFamily->GetFirstMatchingFont(dwStyle.fWeight, dwStyle.fWidth,
426 dwStyle.fWeight,
SkFontMgr_android.cpp 146 int weight = fontFile.fWeight != 0 ? fontFile.fWeight : style.weight();
SkFontConfigParser_android.cpp 190 if (!parse_non_negative_integer(value, &file.fWeight)) {
310 if (targetFamily->fFonts[i].fWeight == weight) {
SkFontMgr_win_dw.cpp 781 dwStyle.fWeight,
806 dwStyle.fWeight,
    [all...]
  /external/skia/src/utils/win/
SkDWrite.h 104 fWeight = (DWRITE_FONT_WEIGHT)pattern.weight();
108 DWRITE_FONT_WEIGHT fWeight;
  /external/skia/tests/
FontConfigParser.cpp 88 SkDebugf(" file (%d) %s#%d\n", ffi.fWeight, ffi.fFileName.c_str(), ffi.fIndex);
PathOpsConicLineIntersectionTest.cpp 106 SkPath::Verb order1 = SkReduceOrder::Conic(pts, conic.fWeight, reduced);
PathOpsTestCommon.cpp 274 if (SkDoubleIsNaN(conic.fWeight)) {
PathOpsDebug.cpp 69 SkDebugf("}, %1.9g", fWeight);
1080 SkDebugf(", %1.9gf}", fWeight);
    [all...]
  /external/skia/samplecode/
SampleQuadStroker.cpp 118 SkScalar fWeight;
158 fWeight = 1;
461 path.conicTo(fPts[5], fPts[6], fWeight);
530 draw_control(canvas, fWeightControl, fWeight, 0, 5, "weight");
613 fWeight = MapScreenYtoValue(click->fICurr.fY, fWeightControl, 0, 5);

Completed in 387 milliseconds