/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-bit-set-invertible.hh | 38 bool inverted = false; member 49 hb_swap (a.inverted, b.inverted); in swap() 53 void init () { s.init (); inverted = false; } in init() 62 inverted = false; in reset() 68 inverted = false; in clear() 73 inverted = !inverted; in invert() 95 { return inverted ? INVALID - s.get_population () : s.get_population (); } in get_population() 98 void add (hb_codepoint_t g) { unlikely (inverted) [all...] |
H A D | gen-tag-table.py | 330 inverted. Its values start as unsorted sets; 613 inverted = collections.defaultdict (list) 616 inverted[language].append (macrolanguage) 617 for language, macrolanguages in inverted.items ():
|
/third_party/mesa3d/src/mesa/main/ |
H A D | condrender.c | 50 boolean inverted = FALSE; in BeginConditionalRender() local 69 inverted = TRUE; in BeginConditionalRender() 73 inverted = TRUE; in BeginConditionalRender() 77 inverted = TRUE; in BeginConditionalRender() 81 inverted = TRUE; in BeginConditionalRender() 88 cso_set_render_condition(st->cso_context, q->pq, inverted, m); in BeginConditionalRender()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrStyledShape.h | 86 GrStyledShape(const SkRRect& rrect, SkPathDirection dir, unsigned start, bool inverted, in GrStyledShape() argument 91 fShape.setInverted(inverted); in GrStyledShape() 125 * the fill is inverted or not. It's important to note that the original shape's geometry 128 * made non-inverted since dashing ignores inverseness). 154 bool asRRect(SkRRect* rrect, SkPathDirection* dir, unsigned* start, bool* inverted) const; 160 bool asLine(SkPoint pts[2], bool* inverted) const; 211 // Since the path tracks inverted-fillness itself, it should match what was recorded. in inverseFilled() 212 SkASSERT(!fShape.isPath() || fShape.inverted() == fShape.path().isInverseFillType()); in inverseFilled() 214 SkASSERT(!(fShape.inverted() && this->style().isDashed())); in inverseFilled() 215 return fShape.inverted(); in inverseFilled() [all...] |
H A D | GrStyledShape.cpp | 46 bool newIsInverted = is_inverted(original.fShape.inverted(), inversion); in MakeFilled() 47 if (original.style().isSimpleFill() && newIsInverted == original.fShape.inverted()) { in MakeFilled() 200 SkASSERT(fShape.inverted() == fShape.path().isInverseFillType()); in writeUnstyledKey() 426 bool* inverted) const { in asRRect() 500 if (inverted) { in asRRect() 501 *inverted = fShape.inverted(); in asRRect() 507 bool GrStyledShape::asLine(SkPoint pts[2], bool* inverted) const { in asLine() 516 if (inverted) { in asLine() 517 *inverted in asLine() [all...] |
H A D | GrShape.h | 98 bool inverted() const { in inverted() function in GrShape 118 void setInverted(bool inverted) { in setInverted() argument 120 if (inverted != fPath.isInverseFillType()) { in setInverted() 124 fInverted = inverted; in setInverted() 152 // These also reset any extracted direction, start, and inverted state from a prior simplified
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | canvas2dcontext.js | 713 var inverted = CanvasKit.Matrix.invert(this._currentTransform); 714 CanvasKit.Matrix.mapPoints(inverted, pts); 831 var inverted = CanvasKit.Matrix.invert(this._currentTransform); 834 this._canvas.concat(inverted); 852 var inverted = CanvasKit.Matrix.invert(this._currentTransform); 853 this._canvas.concat(inverted); 900 var inverted = CanvasKit.Matrix.rotated(-radians); 901 this._currentPath.transform(inverted); 948 var inverted = CanvasKit.Matrix.scaled(1/sx, 1/sy); 949 this._currentPath.transform(inverted); [all...] |
/third_party/skia/src/gpu/ops/ |
H A D | DashLinePathRenderer.cpp | 21 bool inverted; in onCanDrawPath() local 22 if (args.fShape->style().isDashed() && args.fShape->asLine(pts, &inverted)) { in onCanDrawPath() 24 SkASSERT(!inverted); in onCanDrawPath()
|
/third_party/skia/experimental/graphite/src/geom/ |
H A D | Shape.h | 64 bool inverted() const { in inverted() function in skgpu::Shape 69 void setInverted(bool inverted) { in setInverted() argument 70 if (fType == Type::kPath && inverted != fPath.isInverseFillType()) { in setInverted() 73 fInverted = inverted; in setInverted()
|
/third_party/skia/tests/ |
H A D | GrStyledShapeTest.cpp | 290 GrStyledShape inverted = GrStyledShape::MakeFilled( in test_inversions() local 293 make_key(&invertedKey, inverted); in test_inversions() 307 check_equivalence(r, preserve, inverted, preserveKey, invertedKey); in test_inversions() 311 check_equivalence(r, flip, inverted, flipKey, invertedKey); in test_inversions() 1377 * This path effect returns an empty path (possibly inverted) in test_path_effect_makes_empty_shape() 1580 // Dashing ignores inverseness so this is equivalent to the non-inverted empty fill. in DEF_TEST() 1629 // Dashing ignores inverseness so this is equivalent to the non-inverted empty fill. in DEF_TEST() 1669 auto index = [](bool inverted, in test_rrect() 1674 return inverted * (2 * 8 * kStyleCnt * 2) + in test_rrect() 1683 for (bool inverted in test_rrect() 1958 bool inverted = true; DEF_TEST() local [all...] |
/third_party/skia/src/core/ |
H A D | SkSDFFilter.cpp | 54 bool inverted; in isSDFBlur() local 55 if (!GetSDFBlurEnabled() || !shape.asRRect(&srcRRect, nullptr, nullptr, &inverted) || inverted || in isSDFBlur()
|
H A D | SkBlurMF.cpp | 1480 bool inverted; in directFilterMaskGPU() local 1481 if (!shape.asRRect(&srcRRect, nullptr, nullptr, &inverted) || inverted) { in directFilterMaskGPU() 1598 bool inverted; in canFilterMaskGPU() local 1599 if (canUseSDFBlur && shape.asRRect(&srcRRect, nullptr, nullptr, &inverted)) { in canFilterMaskGPU()
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | Matrix.cpp | 138 Matrix4 inverted( in invert() 188 float determinant = mat.data[0] * inverted.data[0] + mat.data[1] * inverted.data[4] + in invert() 189 mat.data[2] * inverted.data[8] + mat.data[3] * inverted.data[12]; in invert() 193 inverted *= 1.0f / determinant; in invert() 197 inverted = identity(); in invert() 200 return inverted; in invert()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | typed-optimization.h | 73 bool inverted); 75 Node* comparison, const StringRef& string, bool inverted);
|
H A D | typed-optimization.cc | 432 Node* comparison, const StringRef& string, bool inverted) { in TryReduceStringComparisonOfStringFromSingleCharCodeToConstant() 446 return Replace(jsgraph()->BooleanConstant(inverted)); in TryReduceStringComparisonOfStringFromSingleCharCodeToConstant() 456 // String.fromCharCode(x) {comparison} {constant} if inverted is false, 457 // and {constant} {comparison} String.fromCharCode(x) if inverted is true. 460 Node* comparison, Node* from_char_code, Type constant_type, bool inverted) { in TryReduceStringComparisonOfStringFromSingleCharCode() 471 comparison, string, inverted); in TryReduceStringComparisonOfStringFromSingleCharCode() 489 if (inverted) { in TryReduceStringComparisonOfStringFromSingleCharCode() 431 TryReduceStringComparisonOfStringFromSingleCharCodeToConstant( Node* comparison, const StringRef& string, bool inverted) TryReduceStringComparisonOfStringFromSingleCharCodeToConstant() argument 459 TryReduceStringComparisonOfStringFromSingleCharCode( Node* comparison, Node* from_char_code, Type constant_type, bool inverted) TryReduceStringComparisonOfStringFromSingleCharCode() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderConditionalRenderingTestsEXT.cpp | 112 bool inverted; member 434 const auto conditionalRenderingFlags = (m_params.inverted in iterate() 545 const bool expectDraw = ((m_params.condValue != 0u) != m_params.inverted); in iterate() 606 bool inverted; in createMeshShaderConditionalRenderingTestsEXT() member 660 inversionCase.inverted, // bool inverted; in createMeshShaderConditionalRenderingTestsEXT()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderConditionalRenderingTestsEXT.cpp | 112 bool inverted; member 434 const auto conditionalRenderingFlags = (m_params.inverted in iterate() 545 const bool expectDraw = ((m_params.condValue != 0u) != m_params.inverted); in iterate() 606 bool inverted; in createMeshShaderConditionalRenderingTestsEXT() member 660 inversionCase.inverted, // bool inverted; in createMeshShaderConditionalRenderingTestsEXT()
|
/third_party/skia/src/gpu/ |
H A D | GrBlurUtils.cpp | 453 bool inverted; in hw_create_filtered_mask() local 454 if (canUseSDFBlur && shape.asRRect(&srcRRect, nullptr, nullptr, &inverted)) { in hw_create_filtered_mask() 536 bool inverted; in draw_shape_with_mask_filter() local 537 if (canUseSDFBlur && shape->asRRect(&srcRRect, nullptr, nullptr, &inverted)) { in draw_shape_with_mask_filter()
|
H A D | GrDefaultGeoProcFactory.cpp | 340 LocalCoords inverted(LocalCoords::kUsePosition_Type, &invert); 341 return Make(arena, color, coverage, inverted, SkMatrix::I());
|
H A D | GrSWMaskHelper.cpp | 102 if (shape.inverted()) { in drawShape() 104 // These shapes are empty for simple fills, so when inverted, cover everything in drawShape()
|
/third_party/skia/src/gpu/v1/ |
H A D | ClipStack.cpp | 295 SkASSERT(!e.fShape.inverted()); in draw_to_sw_mask() 299 GrShape inverted(e.fShape); in draw_to_sw_mask() 300 inverted.setInverted(true); in draw_to_sw_mask() 301 helper->drawShape(inverted, e.fLocalToDevice, SkRegion::kReplace_Op, e.fAA, alpha); in draw_to_sw_mask() 445 // If the transform can't be inverted, it means that two dimensions are collapsed to 0 or 514 // Make sure the shape is not inverted. An inverted shape is equivalent to a non-inverted shape in simplify() 516 if (fShape.inverted()) { in simplify() 523 SkASSERT(!fShape.inverted()); in simplify() [all...] |
H A D | SurfaceDrawContext.cpp | 1731 bool inverted; in drawSimpleShape() local 1732 if (shape.asLine(linePts, &inverted) && !inverted && in drawSimpleShape() 1749 } else if (shape.asRRect(&rrect, nullptr, nullptr, &inverted) && !inverted) { in drawSimpleShape()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_blend.c | 135 bool inverted) in nir_blend_factor() 140 if (inverted) in nir_blend_factor() 129 nir_blend_factor( nir_builder *b, nir_ssa_def *raw_scalar, nir_ssa_def *src, nir_ssa_def *src1, nir_ssa_def *dst, nir_ssa_def *bconst, unsigned chan, enum blend_factor factor, bool inverted) nir_blend_factor() argument
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/ |
H A D | UnitsTest.java | 587 BigDecimal inverted = converter.convertInverse(testCase.input); in testConverterWithCLDRTests() 588 if (compareTwoBigDecimal(BigDecimal.valueOf(1000), inverted, BigDecimal.valueOf(0.000001))) { in testConverterWithCLDRTests() 597 .append(inverted) in testConverterWithCLDRTests()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_query.c | 820 bool inverted) in set_predicate_for_result() 852 if (inverted) in set_predicate_for_result() 881 result = inverted ? mi_z(&b, result) : mi_nz(&b, result); in set_predicate_for_result() 818 set_predicate_for_result(struct crocus_context *ice, struct crocus_query *q, bool inverted) set_predicate_for_result() argument
|