/external/libxml2/VxWorks/ |
D | build.sh | 17 rm -fR src 24 find . -name '*.in' -exec rm -fR {} + 25 find . -name '*.am' -exec rm -fR {} + 26 rm -fR *.m4 27 rm -fR *.pc 28 rm -fR *.pl 29 rm -fR *.py 30 rm -fR *.spec 31 rm -fR .deps 32 rm -fR AUTHORS [all …]
|
/external/skqp/gm/ |
D | circularclips.cpp | 13 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 21 fR = 40; in onOnceBeforeDraw() 23 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 24 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 48 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/external/skia/gm/ |
D | circularclips.cpp | 13 SkScalar fX1, fX2, fY, fR; member in CircularClipsGM 21 fR = 40; in onOnceBeforeDraw() 23 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 24 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); in onOnceBeforeDraw() 48 SkRect rect = SkRect::MakeLTRB(fX1 - fR, fY - fR, fX2 + fR, fY + fR); in onDraw() 56 canvas->translate(-((fX1 + fX2)/2 - fR), -(fY - 2*fR/3)); in onDraw()
|
/external/skia/include/core/ |
D | SkColor.h | 242 float fR; //!< red component member 253 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB; 271 return { fR * scale, fG * scale, fB * scale, fA * scale }; 280 return { fR * scale.fR, fG * scale.fG, fB * scale.fB, fA * scale.fA }; 287 const float* vec() const { return &fR; } in vec() 293 float* vec() { return &fR; } in vec() 328 return fR >= 0.0f && fR <= 1.0f && in fitsInBytes() 359 return { fR * fA, fG * fA, fB * fA, fA }; in premul() 374 return { fR * invAlpha, fG * invAlpha, fB * invAlpha, fA }; in unpremul() 383 return { fR, fG, fB, 1.0f }; in makeOpaque()
|
/external/skqp/include/core/ |
D | SkColor.h | 242 float fR; //!< red component member 253 return fA == other.fA && fR == other.fR && fG == other.fG && fB == other.fB; 271 return { fR * scale, fG * scale, fB * scale, fA * scale }; 280 return { fR * scale.fR, fG * scale.fG, fB * scale.fB, fA * scale.fA }; 287 const float* vec() const { return &fR; } in vec() 293 float* vec() { return &fR; } in vec() 351 return { fR * fA, fG * fA, fB * fA, fA }; in premul() 366 return { fR * invAlpha, fG * invAlpha, fB * invAlpha, fA }; in unpremul() 375 return { fR, fG, fB, 1.0f }; in makeOpaque()
|
/external/skqp/samplecode/ |
D | SampleHT.cpp | 47 SkRect fR; member in HTDrawable 54 fR = SkRect::MakeXYWH(rand.nextRangeF(0, 640), rand.nextRangeF(0, 480), in HTDrawable() 81 return oval_contains(fR, x, y); in hitTest() 98 canvas->rotate(values[4], fR.centerX(), fR.centerY()); in onDraw() 110 canvas->drawRect(fR, paint); in onDraw() 113 SkRect onGetBounds() override { return fR; } in onGetBounds()
|
D | SampleArc.cpp | 42 SkRect fR; member in ArcsView::MyDrawable 45 MyDrawable(const SkRect& r) : fR(r), fSweep(0) {} in MyDrawable() 61 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 64 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 68 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 72 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 76 SkRect r(fR); in onGetBounds()
|
/external/skia/samplecode/ |
D | SampleHT.cpp | 47 SkRect fR; member in HTDrawable 54 fR = SkRect::MakeXYWH(rand.nextRangeF(0, 640), rand.nextRangeF(0, 480), in HTDrawable() 81 return oval_contains(fR, x, y); in hitTest() 98 canvas->rotate(values[4], fR.centerX(), fR.centerY()); in onDraw() 110 canvas->drawRect(fR, paint); in onDraw() 113 SkRect onGetBounds() override { return fR; } in onGetBounds()
|
D | SampleArc.cpp | 42 SkRect fR; member in ArcsView::MyDrawable 45 MyDrawable(const SkRect& r) : fR(r), fSweep(0) {} in MyDrawable() 61 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 64 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 68 canvas->drawArc(fR, 0, fSweep, true, paint); in onDraw() 72 canvas->drawArc(fR, 0, fSweep, false, paint); in onDraw() 76 SkRect r(fR); in onGetBounds()
|
/external/skqp/src/core/ |
D | SkMaskGamma.h | 181 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { } in SkTMaskPreBlend() 187 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { } in SkTMaskPreBlend() 194 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { } in SkTMaskPreBlend() 201 const uint8_t* fR; variable
|
/external/skia/src/core/ |
D | SkMaskGamma.h | 181 : fParent(std::move(parent)), fR(r), fG(g), fB(b) { } in SkTMaskPreBlend() 187 SkTMaskPreBlend() : fParent(), fR(nullptr), fG(nullptr), fB(nullptr) { } in SkTMaskPreBlend() 194 : fParent(that.fParent), fR(that.fR), fG(that.fG), fB(that.fB) { } in SkTMaskPreBlend() 201 const uint8_t* fR; variable
|
/external/skia/src/gpu/effects/ |
D | GrMixerEffect.fp | 31 c0.fR + (c1.fR - c0.fR) * fWeight,
|
D | GrMixerEffect.h | 32 return {c0.fR + (c1.fR - c0.fR) * fWeight, c0.fG + (c1.fG - c0.fG) * fWeight, in constantOutputForConstantInput()
|
D | GrDistanceFieldGeoProc.h | 200 SkScalar fR, fG, fB; member 203 result.fR = r; result.fG = g; result.fB = b; in Make() 207 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
|
/external/skqp/tests/ |
D | SRGBTest.cpp | 125 rgba[i].fR, rgba[i].fG, rgba[i].fB, in test_roundtripping() 126 want.fR, want.fG, want.fB); in test_roundtripping() 128 REPORTER_ASSERT(r, close(rgba[i].fR, want.fR)); in test_roundtripping()
|
/external/skia/tests/ |
D | SRGBTest.cpp | 125 rgba[i].fR, rgba[i].fG, rgba[i].fB, in test_roundtripping() 126 want.fR, want.fG, want.fB); in test_roundtripping() 128 REPORTER_ASSERT(r, close(rgba[i].fR, want.fR)); in test_roundtripping()
|
/external/skqp/docs/ |
D | SkColor4f_Reference.bmh | 17 fA Alpha is may be greater or smaller than fG green, fB blue, or fR red. 21 fA Alpha is equal to or larger than fG green, fB blue, and fR red. The values 22 stored in fG, fB, and fR combine the color component with the Alpha component. 27 #Member float fR 144 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 169 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 249 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color4f.fR, color4f.fG, color4f.fB, color4f.fA); 280 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", fromSkColor.fR, fromSkColor.fG,
|
/external/skia/docs/ |
D | SkColor4f_Reference.bmh | 17 fA Alpha is may be greater or smaller than fG green, fB blue, or fR red. 21 fA Alpha is equal to or larger than fG green, fB blue, and fR red. The values 22 stored in fG, fB, and fR combine the color component with the Alpha component. 27 #Member float fR 144 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 169 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA); 265 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color4f.fR, color4f.fG, color4f.fB, color4f.fA); 296 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", fromSkColor.fR, fromSkColor.fG,
|
/external/skia/modules/particles/src/ |
D | SkCurve.cpp | 21 return { c1.fR + c2.fR, c1.fG + c2.fG, c1.fB + c2.fB, c1.fA + c2.fA }; in operator +() 25 return { c1.fR - c2.fR, c1.fG - c2.fG, c1.fB - c2.fB, c1.fA - c2.fA }; in operator -()
|
/external/skqp/src/gpu/effects/ |
D | GrDistanceFieldGeoProc.h | 200 SkScalar fR, fG, fB; member 203 result.fR = r; result.fG = g; result.fB = b; in Make() 207 return (fR == wa.fR && fG == wa.fG && fB == wa.fB);
|
/external/skia/src/shaders/gradients/ |
D | SkGradientShader.cpp | 219 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color() 223 (ctx->bs[0])[stop] = Bs.fR; in add_stop_color() 239 (c_r.fR - c_l.fR) * gapCount, in init_stop_evenly() 245 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly() 259 (c_r.fR - c_l.fR) / (t_r - t_l), in init_stop_pos() 265 c_l.fR - Fs.fR*t_l, in init_stop_pos() 319 : SkPMColor4f{ c.fR, c.fG, c.fB, c.fA }; in onAppendStages()
|
/external/skqp/src/shaders/gradients/ |
D | SkGradientShader.cpp | 219 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color() 223 (ctx->bs[0])[stop] = Bs.fR; in add_stop_color() 239 (c_r.fR - c_l.fR) * gapCount, in init_stop_evenly() 245 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly() 259 (c_r.fR - c_l.fR) / (t_r - t_l), in init_stop_pos() 265 c_l.fR - Fs.fR*t_l, in init_stop_pos() 319 : SkPMColor4f{ c.fR, c.fG, c.fB, c.fA }; in onAppendStages()
|
/external/skqp/bench/ |
D | MatrixBench.cpp | 305 SkRect fR; member in MapRectMatrixBench 316 fR.set(10, 10, 100, 200); in MapRectMatrixBench() 323 fM.mapRectScaleTranslate(&dst, fR); in performTest() 327 fM.mapRect(&dst, fR); in performTest()
|
/external/skia/bench/ |
D | MatrixBench.cpp | 305 SkRect fR; member in MapRectMatrixBench 316 fR.set(10, 10, 100, 200); in MapRectMatrixBench() 323 fM.mapRectScaleTranslate(&dst, fR); in performTest() 327 fM.mapRect(&dst, fR); in performTest()
|
/external/skqp/include/private/ |
D | GrColor.h | 77 return color.fR >= 0.0f && color.fR <= 1.0f && in SkPMColor4fFitsInBytes()
|