/foundation/graphic/graphic_2d/rosen/modules/texgine/texgine_drawing/src/ |
H A D | texgine_paint.cpp | 79 void TexginePaint::SetStyle(Style style) in SetStyle() argument 81 style_ = style; in SetStyle()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/ |
H A D | rs_material_filter.h | 35 // card blur style
43 // background blur style
53 // material blur style params
62 RSMaterialFilter(int style, float dipScale, BLUR_COLOR_MODE mode, float ratio);
106 std::shared_ptr<Drawing::ImageFilter> CreateMaterialStyle(MATERIAL_BLUR_STYLE style, float dipScale, float ratio);
|
/foundation/graphic/graphic_2d/rosen/test/2d_engine/unittest/rosen_text/skia_txt/ |
H A D | typeface_font_asset_provider_test.cpp | 77 SkFontStyle style; in HWTEST_F() local 79 typefaceFontStyleSet->getStyle(0, &style, &name); in HWTEST_F()
|
/foundation/graphic/graphic_3d/lume/LumeFont/api/ |
H A D | intf_font.h | 87 inline constexpr bool operator==(const FontStyle& style) const in operator ==() 89 return bits == uint64_t(style); in operator ==()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/txt/ |
H A D | asset_font_manager.cpp | 56 SkTypeface* AssetFontManager::onMatchFamilyStyle(const char familyName[], const SkFontStyle& style) const in onMatchFamilyStyle() 61 return fontStyleSet->matchStyle(style); in onMatchFamilyStyle()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/ |
H A D | path_effect.h | 67 const Path& path, scalar advance, scalar phase, PathDashStyle style); 124 PathEffect(PathEffectType t, const Path& path, scalar advance, scalar phase, PathDashStyle style) noexcept;
|
/third_party/icu/tools/colprobe/ |
H A D | doComparisonTable.pl | 29 <style> 36 </style>
|
H A D | createComparisonTables.pl | 27 <style> 34 </style>
|
/third_party/node/test/parallel/ |
H A D | test-intl.js | 115 const numberFormat = new Intl.NumberFormat('en-US', { style: 'percent' }); 118 assert.strictEqual(resolvedOptions.style, 'percent');
|
/third_party/node/deps/npm/node_modules/debug/src/ |
H A D | browser.js | 130 return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||
|
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
H A D | table.js | 47 this.options.style.head = []; 73 if (rowIndex === 0 || !this.options.style.compact || (rowIndex == 1 && headersPresent)) {
|
/third_party/musl/dist/ |
H A D | config.mak | 20 # Uncomment to fix broken distro-patched toolchains where hash-style=gnu(only) 21 #LDFLAGS += -Wl,--hash-style,both
|
/third_party/rust/crates/clap/src/builder/ |
H A D | styled_str.rs | 69 pub(crate) fn stylize(&mut self, style: impl Into<Option<Style>>, msg: impl Into<String>) { 70 self.stylize_(style.into(), msg.into()); 133 fn stylize_(&mut self, style: Option<Style>, msg: String) { in stylize_() 135 self.pieces.push((style, msg)); in stylize_() 193 for (style, content) in other { 194 self.stylize(style.into(), content.into()); 203 for (style, content) in &self.pieces { 205 match style { 289 let style = c.0.map(|s| s.as_usize()); in cmp_key() 291 (style, conten in cmp_key() [all...] |
/third_party/skia/src/core/ |
H A D | SkFontDescriptor.h | 4 * Use of this source code is governed by a BSD-style license that can be 71 void setStyle(SkFontStyle style) { fStyle = style; } in setStyle() argument
|
H A D | SkTypeface_remote.h | 4 * Use of this source code is governed by a BSD-style license that can be 47 const SkFontStyle& style, in SkTypefaceProxy() 52 : INHERITED{style, false} in SkTypefaceProxy() 45 SkTypefaceProxy(SkFontID fontId, int glyphCount, const SkFontStyle& style, bool isFixed, bool glyphMaskNeedsCurrentColor, sk_sp<SkStrikeClient::DiscardableHandleManager> manager, bool isLogging = true) SkTypefaceProxy() argument
|
H A D | SkDraw.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 569 SkPaint::Style style = paint.getStyle(); in ComputeRectType() local 571 if ((SkPaint::kStrokeAndFill_Style == style) && zeroWidth) { in ComputeRectType() 572 style = SkPaint::kFill_Style; in ComputeRectType() 576 !matrix.rectStaysRect() || SkPaint::kStrokeAndFill_Style == style) { in ComputeRectType() 578 } else if (SkPaint::kFill_Style == style) { in ComputeRectType() 822 SkStrokeRec::InitStyle style = doFill ? SkStrokeRec::kFill_InitStyle in drawDevPath() local 825 ->filterPath(devPath, fMatrixProvider->localToDevice(), *fRC, blitter, style)) { in drawDevPath() 1246 SkStrokeRec::InitStyle style) { in draw_into_mask() 1264 switch (style) { in draw_into_mask() 1245 draw_into_mask(const SkMask& mask, const SkPath& devPath, SkStrokeRec::InitStyle style) draw_into_mask() argument 1277 DrawToMask(const SkPath& devPath, const SkIRect* clipBounds, const SkMaskFilter* filter, const SkMatrix* filterMatrix, SkMask* mask, SkMask::CreateMode mode, SkStrokeRec::InitStyle style) DrawToMask() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | es2020IntlAPIs.js | 19 const rtf1 = new Intl.RelativeTimeFormat('en', { style: 'narrow' }); 73 const rtf1 = new Intl.RelativeTimeFormat('en', { style: 'narrow' });
|
/third_party/python/PC/layout/support/ |
H A D | logging.py | 39 handler.setFormatter(logging.Formatter("{levelname:8s} {message}", style="{")) 46 logging.Formatter("[{asctime}]{levelname:8s}: {message}", style="{")
|
/third_party/skia/docs/examples/ |
H A D | strokerect_gm.cpp | 2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 27 SkPaint::Style style = doFill ? SkPaint::kStrokeAndFill_Style : SkPaint::kStroke_Style; in REG_FIDDLE() local 42 paint.setStyle(style); in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | rsxtext.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 30 const SkFontStyle style(SkFontStyle::kExtraBlack_Weight, 33 SkFont font(ToolUtils::create_portable_typeface(nullptr, style), kFontSZ);
|
/third_party/skia/experimental/sktext/tests/ |
H A D | FontResolvedText.cpp | 58 REPORTER_ASSERT(reporter, resolvedFonts.front().style == SkFontStyle::Normal()); in UNIX_ONLY_TEST() 85 REPORTER_ASSERT(reporter, resolvedFonts[0].style == SkFontStyle::Normal()); in UNIX_ONLY_TEST()
|
/third_party/selinux/secilc/docs/ |
H A D | Makefile | 62 --highlight-style=$(PANDOC_HIGHLIGHT_STYLE) \ 74 --highlight-style=$(PANDOC_HIGHLIGHT_STYLE) \
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_node.h | 304 auto& style = in GetBackGroundColor() local 306 if (style.IsValid()) { in GetBackGroundColor() 307 color = style.backgroundColor; in GetBackGroundColor() 317 auto& style = static_cast<CommonOpacityStyle&>(declaration_->GetStyle(StyleTag::COMMON_OPACITY_STYLE)); in GetOpacity() local 318 if (style.IsValid()) { in GetOpacity() 319 opacity = style.opacity; in GetOpacity() 374 // Initialize node theme style when created. 517 bool SetCurrentStyle(const std::pair<std::string, std::string>& style); 821 // Subclasses need to override this interface to implement reset initialization style before any frontend style se 856 SetSpecializedStyle(const std::pair<std::string, std::string>& style) SetSpecializedStyle() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | select_modifier.cpp | 151 auto style = static_cast<Ace::FontStyle>(styleVal); in SetFont() local 152 SelectModelNG::SetItalicFontStyle(frameNode, style); in SetFont() 189 auto style = static_cast<Ace::FontStyle>(styleVal); in SetOptionFont() local 190 SelectModelNG::SetOptionItalicFontStyle(frameNode, style); in SetOptionFont() 227 auto style = static_cast<Ace::FontStyle>(styleVal); in SetSelectedOptionFont() local 228 SelectModelNG::SetSelectedOptionItalicFontStyle(frameNode, style); in SetSelectedOptionFont() 522 void SetMenuBgBlurStyle(ArkUINodeHandle node, ArkUI_Int32 style) in SetMenuBgBlurStyle() argument 527 styleOption.blurStyle = static_cast<OHOS::Ace::BlurStyle>(style); in SetMenuBgBlurStyle()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/ |
H A D | rich_editor_click_test_ng.cpp | 540 TextStyle style; in HWTEST_F() local 542 richEditorController->UpdateSpanStyle(0, 2, style, imageStyle); in HWTEST_F() 545 * @tc.steps: step4. test image span style in HWTEST_F() 631 TextStyle style; in HWTEST_F() local 632 options.style = style; in HWTEST_F() 877 * @tc.steps: step4. initalize style in HWTEST_F() 1105 * @tc.steps: step2. initialize style and add text span in HWTEST_F() 1107 TextStyle style; in HWTEST_F() local 1108 style in HWTEST_F() [all...] |