Home
last modified time | relevance | path

Searched refs:style (Results 101 - 125 of 1901) sorted by relevance

12345678910>>...77

/kernel/linux/linux-6.6/drivers/usb/musb/
H A Dmediatek.c369 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
370 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
371 { .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
372 { .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
373 { .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
374 { .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
375 { .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
376 { .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
377 { .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
378 { .hw_ep_num = 5, .style
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dcompactdecimalformattest.cpp255 const Locale& locale, UNumberCompactStyle style,
257 void CheckLocaleWithCurrency(const Locale& locale, UNumberCompactStyle style, const UChar* currency,
262 CompactDecimalFormat* createCDFInstance(const Locale& locale, UNumberCompactStyle style, UErrorCode& status);
263 static const char *StyleStr(UNumberCompactStyle style);
508 void CompactDecimalFormatTest::CheckLocale(const Locale& locale, UNumberCompactStyle style, const ExpectedResult* expectedResults, int32_t expectedResultLength) { in CheckLocale() argument
510 LocalPointer<CompactDecimalFormat> cdf(createCDFInstance(locale, style, status)); in CheckLocale()
516 sprintf(description,"%s - %s", locale.getName(), StyleStr(style)); in CheckLocale()
522 void CompactDecimalFormatTest::CheckLocaleWithCurrency(const Locale& locale, UNumberCompactStyle style, in CheckLocaleWithCurrency() argument
527 LocalPointer<CompactDecimalFormat> cdf(createCDFInstance(locale, style, status)); in CheckLocaleWithCurrency()
535 sprintf(description,"%s - %s", locale.getName(), StyleStr(style)); in CheckLocaleWithCurrency()
555 createCDFInstance(const Locale& locale, UNumberCompactStyle style, UErrorCode& status) createCDFInstance() argument
566 StyleStr(UNumberCompactStyle style) StyleStr() argument
[all...]
H A Ddtfmtrtts.cpp236 int32_t style = 0; in test() local
237 for(style = DateFormat::FULL; style <= DateFormat::SHORT; ++style) { in test()
239 logln("Testing style " + UnicodeString(styleName((DateFormat::EStyle)style))); in test()
240 DateFormat *df = DateFormat::createDateInstance((DateFormat::EStyle)style, loc); in test()
242 errln(UnicodeString("Could not DF::createDateInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp)); in test()
250 for(style = DateFormat::FULL; style < in test()
[all...]
/third_party/skia/experimental/graphite/src/
H A DDevice.cpp4 * Use of this source code is governed by a BSD-style license that can be
196 // drawOval/drawRect with a forced fill style in drawPoints()
204 // Force the style to be a stroke, using the radius and cap from the paint in drawPoints()
215 const SkStrokeRec& style, in drawShape()
229 // Heavy weight paint options like path effects, mask filters, and stroke-and-fill style are in drawShape()
235 SkStrokeRec newStyle = style; in drawShape()
240 // Recurse using the path and new style, while disabling downstream path effect handling in drawShape()
246 this->drawShape(shape, paint, style, flags | DrawFlags::kIgnorePathEffect); in drawShape()
255 this->drawShape(shape, paint, style, flags | DrawFlags::kIgnoreMaskFilter); in drawShape()
259 // If we got here, then path effects and mask filters should have been handled and the style in drawShape()
213 drawShape(const Shape& shape, const SkPaint& paint, const SkStrokeRec& style, Mask<DrawFlags> flags) drawShape() argument
332 applyClipToDraw(const Transform& localToDevice, const Shape& shape, const SkStrokeRec& style, PaintersDepth z) applyClipToDraw() argument
[all...]
/third_party/skia/src/gpu/ops/
H A DTessellationPathRenderer.cpp4 * Use of this source code is governed by a BSD-style license that can be
79 if (!shape.style().isSimpleFill() || shape.inverseFilled()) { in onGetStencilSupport()
91 shape.style().hasPathEffect() || in onCanDrawPath()
93 shape.style().strokeRec().getStyle() == SkStrokeRec::kStrokeAndFill_Style || in onCanDrawPath()
97 if (!shape.style().isSimpleFill()) { in onCanDrawPath()
105 if (!shape.style().isSimpleFill() || !shape.knownToBeConvex() || shape.inverseFilled()) { in onCanDrawPath()
127 if (!args.fShape->style().isSimpleFill()) { in onDrawPath()
129 const SkStrokeRec& stroke = args.fShape->style().strokeRec(); in onDrawPath()
146 if (!args.fShape->style().isSimpleFill()) { in onDrawPath()
149 const SkStrokeRec& stroke = args.fShape->style() in onDrawPath()
[all...]
H A DAALinearizingConvexPathRenderer.cpp4 * Use of this source code is governed by a BSD-style license that can be
92 SkStrokeRec::Style style, in Make()
98 strokeWidth, style, join, miterLimit, in Make()
107 SkStrokeRec::Style style, in AAFlatteningConvexPathOp()
113 PathData{viewMatrix, path, color, strokeWidth, miterLimit, style, join}); in AAFlatteningConvexPathOp()
352 if (args.fShape->style().pathEffect()) { in onCanDrawPath()
362 const SkStrokeRec& stroke = args.fShape->style().strokeRec(); in onCanDrawPath()
397 SkASSERT(!args.fShape->style().pathEffect()); in onDrawPath()
401 bool fill = args.fShape->style().isSimpleFill(); in onDrawPath()
402 const SkStrokeRec& stroke = args.fShape->style() in onDrawPath()
87 Make(GrRecordingContext* context, GrPaint&& paint, const SkMatrix& viewMatrix, const SkPath& path, SkScalar strokeWidth, SkStrokeRec::Style style, SkPaint::Join join, SkScalar miterLimit, const GrUserStencilSettings* stencilSettings) Make() argument
102 AAFlatteningConvexPathOp(GrProcessorSet* processorSet, const SkPMColor4f& color, const SkMatrix& viewMatrix, const SkPath& path, SkScalar strokeWidth, SkStrokeRec::Style style, SkPaint::Join join, SkScalar miterLimit, const GrUserStencilSettings* stencilSettings) AAFlatteningConvexPathOp() argument
426 SkStrokeRec::Style style = styles[random->nextU() % 3]; GR_DRAW_OP_TEST_DEFINE() local
[all...]
/third_party/skia/third_party/externals/freetype/src/autofit/
H A Dafglobal.c123 /* Compute the style index of each glyph within a given face. */
145 * Ignore this error; we simply use the fallback style. in af_face_globals_compute_style_coverage()
152 /* scan each style in a Unicode charmap */ in af_face_globals_compute_style_coverage()
167 * glyph style index. in af_face_globals_compute_style_coverage()
264 * By default, all uncovered glyphs are set to the fallback style. in af_face_globals_compute_style_coverage()
285 FT_TRACE4(( "style coverage\n" )); in af_face_globals_compute_style_coverage()
296 FT_TRACE4(( "%s:\n", af_style_names[style_class->style] )); in af_face_globals_compute_style_coverage()
300 if ( ( gstyles[idx] & AF_STYLE_MASK ) == style_class->style ) in af_face_globals_compute_style_coverage()
423 AF_Style style = (AF_Style)options; in FT_LOCAL_DEF() local
436 /* if we have a forced style (vi in FT_LOCAL_DEF()
[all...]
/third_party/unity/src/
H A Dunity.c187 void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T style) in UnityPrintNumberByStyle() argument
189 if ((style & UNITY_DISPLAY_RANGE_INT) == UNITY_DISPLAY_RANGE_INT) in UnityPrintNumberByStyle()
191 if (style == UNITY_DISPLAY_STYLE_CHAR) in UnityPrintNumberByStyle()
225 else if ((style & UNITY_DISPLAY_RANGE_UINT) == UNITY_DISPLAY_RANGE_UINT) in UnityPrintNumberByStyle()
233 UnityPrintNumberHex((UNITY_UINT)number, (char)((style & 0xF) * 2)); in UnityPrintNumberByStyle()
715 const UNITY_DISPLAY_STYLE_T style) in UnityAssertEqualNumber()
723 UnityPrintNumberByStyle(expected, style); in UnityAssertEqualNumber()
725 UnityPrintNumberByStyle(actual, style); in UnityAssertEqualNumber()
737 const UNITY_DISPLAY_STYLE_T style) in UnityAssertGreaterOrLessOrEqualNumber()
745 if ((style in UnityAssertGreaterOrLessOrEqualNumber()
711 UnityAssertEqualNumber(const UNITY_INT expected, const UNITY_INT actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) UnityAssertEqualNumber() argument
732 UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold, const UNITY_INT actual, const UNITY_COMPARISON_T compare, const char *msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) UnityAssertGreaterOrLessOrEqualNumber() argument
780 UnityAssertEqualIntArray(UNITY_INTERNAL_PTR expected, UNITY_INTERNAL_PTR actual, const UNITY_UINT32 num_elements, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style, const UNITY_FLAGS_T flags) UnityAssertEqualIntArray() argument
1085 UnityAssertFloatSpecial(const UNITY_FLOAT actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) UnityAssertFloatSpecial() argument
1312 UnityAssertDoubleSpecial(const UNITY_DOUBLE actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_FLOAT_TRAIT_T style) UnityAssertDoubleSpecial() argument
1379 UnityAssertNumbersWithin(const UNITY_UINT delta, const UNITY_INT expected, const UNITY_INT actual, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style) UnityAssertNumbersWithin() argument
1426 UnityAssertNumbersArrayWithin(const UNITY_UINT delta, UNITY_INTERNAL_PTR expected, UNITY_INTERNAL_PTR actual, const UNITY_UINT32 num_elements, const char* msg, const UNITY_LINE_TYPE lineNumber, const UNITY_DISPLAY_STYLE_T style, const UNITY_FLAGS_T flags) UnityAssertNumbersArrayWithin() argument
[all...]
/third_party/lzma/CPP/Windows/Control/
H A DStatusBar.h14 bool Create(LONG style, LPCTSTR text, HWND hwndParent, UINT id) in Create() argument
15 { return (_window = ::CreateStatusWindow(style, text, hwndParent, id)) != NULL; } in Create()
24 bool Create(LONG style, LPCWSTR text, HWND hwndParent, UINT id) in Create() argument
25 { return (_window = ::CreateStatusWindowW(style, text, hwndParent, id)) != NULL; } in Create()
H A DWindow2.cpp50 DWORD style, int x, int y, int width, int height, in CreateEx()
56 // wc.style = CS_HREDRAW | CS_VREDRAW; in CreateEx()
57 wc.style = 0; in CreateEx()
70 return CWindow::CreateEx(exStyle, className, windowName, style, in CreateEx()
77 DWORD style, int x, int y, int width, int height, in CreateEx()
103 // wc.style = CS_HREDRAW | CS_VREDRAW; in CreateEx()
104 wc.style = 0; in CreateEx()
117 return CWindow::CreateEx(exStyle, className, windowName, style, in CreateEx()
49 CreateEx(DWORD exStyle, LPCTSTR className, LPCTSTR windowName, DWORD style, int x, int y, int width, int height, HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance) CreateEx() argument
76 CreateEx(DWORD exStyle, LPCWSTR className, LPCWSTR windowName, DWORD style, int x, int y, int width, int height, HWND parentWindow, HMENU idOrHMenu, HINSTANCE instance) CreateEx() argument
/third_party/node/deps/npm/node_modules/@colors/colors/lib/
H A DextendStringPrototype.js47 x.forEach(function(style) {
48 addProperty(style, function() {
49 return colors.stylize(this, style);
72 'Ignoring style name');
/third_party/libabigail/include/
H A Dabg-viz-dot.h28 const style& _M_style;
31 node_base(const std::string& __id, type __t, const style& __sty) in node_base()
38 extern const style parent_sty;
39 extern const style child_sty;
48 - style info
78 DOT "graph" style notation for class inheritance.
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dnv40.c56 enum nv40_sensor_style style = nv40_sensor_style(therm); in nv40_sensor_setup() local
59 if (style == NEW_STYLE) { in nv40_sensor_setup()
64 } else if (style == OLD_STYLE) { in nv40_sensor_setup()
77 enum nv40_sensor_style style = nv40_sensor_style(therm); in nv40_temp_get() local
80 if (style == NEW_STYLE) { in nv40_temp_get()
83 } else if (style == OLD_STYLE) { in nv40_temp_get()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dnv40.c56 enum nv40_sensor_style style = nv40_sensor_style(therm); in nv40_sensor_setup() local
59 if (style == NEW_STYLE) { in nv40_sensor_setup()
64 } else if (style == OLD_STYLE) { in nv40_sensor_setup()
77 enum nv40_sensor_style style = nv40_sensor_style(therm); in nv40_temp_get() local
80 if (style == NEW_STYLE) { in nv40_temp_get()
83 } else if (style == OLD_STYLE) { in nv40_temp_get()
/third_party/ffmpeg/libavcodec/
H A Dsrtenc.c97 static void srt_style_apply(SRTContext *s, const char *style) in srt_style_apply() argument
99 ASSStyle *st = ff_ass_style_get(s->ass_ctx, style); in srt_style_apply()
156 static void srt_style_cb(void *priv, char style, int close) in srt_style_cb() argument
158 srt_stack_push_pop(priv, style, close); in srt_style_cb()
160 srt_print(priv, "<%c>", style); in srt_style_cb()
196 static void srt_cancel_overrides_cb(void *priv, const char *style) in srt_cancel_overrides_cb() argument
199 srt_style_apply(priv, style); in srt_cancel_overrides_cb()
217 .style = srt_style_cb,
255 srt_style_apply(s, dialog->style); in encode_frame()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DScientificNumberFormatter.java43 private final Style style; field in ScientificNumberFormatter
120 return style.format( in format()
127 * A style type for ScientificNumberFormatter. All Style instances are immutable
311 DecimalFormat decimalFormat, Style style) { in getInstance()
314 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style); in getInstance()
318 ULocale locale, Style style) { in getInstanceForLocale()
324 style); in getInstanceForLocale()
330 DecimalFormat decimalFormat, String preExponent, Style style) { in ScientificNumberFormatter()
333 this.style = style; in ScientificNumberFormatter()
310 getInstance( DecimalFormat decimalFormat, Style style) getInstance() argument
317 getInstanceForLocale( ULocale locale, Style style) getInstanceForLocale() argument
329 ScientificNumberFormatter( DecimalFormat decimalFormat, String preExponent, Style style) ScientificNumberFormatter() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DScientificNumberFormatter.java42 private final Style style; field in ScientificNumberFormatter
109 return style.format( in format()
116 * A style type for ScientificNumberFormatter. All Style instances are immutable
300 DecimalFormat decimalFormat, Style style) { in getInstance()
303 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style); in getInstance()
307 ULocale locale, Style style) { in getInstanceForLocale()
313 style); in getInstanceForLocale()
319 DecimalFormat decimalFormat, String preExponent, Style style) { in ScientificNumberFormatter()
322 this.style = style; in ScientificNumberFormatter()
299 getInstance( DecimalFormat decimalFormat, Style style) getInstance() argument
306 getInstanceForLocale( ULocale locale, Style style) getInstanceForLocale() argument
318 ScientificNumberFormatter( DecimalFormat decimalFormat, String preExponent, Style style) ScientificNumberFormatter() argument
[all...]
/third_party/lame/frontend/
H A Dgpkplotting.c76 pixmapbox->style->fg_gc[GTK_WIDGET_STATE(pixmapbox)], in gpk_redraw()
121 gdk_draw_rectangle(*ppixmap, widget->style->white_gc, TRUE, 0, 0, width, height); in gpk_graph_draw()
130 widget->style->fg_gc[GTK_WIDGET_STATE(widget)], in gpk_graph_draw()
215 gdk_draw_rectangle(*ppixmap, widget->style->white_gc, TRUE, 0, 0, width, height); in gpk_bargraph_draw()
227 widget->style->fg_gc[GTK_WIDGET_STATE(widget)], in gpk_bargraph_draw()
231 widget->style->fg_gc[GTK_WIDGET_STATE(widget)], in gpk_bargraph_draw()
238 widget->style->fg_gc[GTK_WIDGET_STATE(widget)], in gpk_bargraph_draw()
281 widget->style->white_gc, in configure_event()
296 widget->style->fg_gc[GTK_WIDGET_STATE(widget)], in expose_event()
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Dformatter.cc64 /// set_style() sets the current style to new_style, flushing any pending
65 /// messages to the printer if the style changed.
66 /// @param new_style the new style to apply for future written messages.
68 if (style.color != new_style.color || style.bold != new_style.bold) { in set_style()
70 style = new_style; in set_style()
78 printer->write(str, style); in flush()
105 diag::Style style; member
110 Formatter::Formatter(const Style& style) : style_(style) {} in Formatter() argument
[all...]
/third_party/skia/modules/svg/src/
H A DSkSVGXMLDOM.cpp3 * Description: Implementation for Css style parser.
37 if (!strcmp(elem, "style")) {
83 // add attributes in style classes.
104 if (!strcmp(elem, "style")) {
122 std::string style = RemoveEmptyChar(text, len); variable
123 this->startCommon(style.c_str(), style.size(), SkDOM::kText_Type);
124 this->SkSVGDOMParser::onEndElement(style.c_str());
125 if (fProcessingStyle && !style.empty() && style
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_parenmatch.py50 Test ParenMatch with each style.
54 for style, range1, range2 in (
59 with self.subTest(style=style):
61 pm.STYLE = style
66 if style == 'parens':
/third_party/skia/src/ports/skia_ohos/
H A DSkFontMgr_ohos.h4 * Use of this source code is governed by a BSD-style license that can be
36 const SkFontStyle& style) const override;
37 virtual SkTypeface* onMatchFamilyStyleCharacter(const char familyName[], const SkFontStyle& style,
42 const SkFontStyle& style) const override;
51 virtual sk_sp<SkTypeface> onLegacyMakeTypeface(const char familyName[], SkFontStyle style) const override;
60 int familyCount = 0; // the count of font style sets in generic family list
65 SkTypeface* findTypeface(const FallbackSetPos& fallbackItem, const SkFontStyle& style,
/third_party/skia/modules/skparagraph/src/
H A DParagraphBuilderImpl.h25 ParagraphBuilderImpl(const ParagraphStyle& style,
30 ParagraphBuilderImpl(const ParagraphStyle& style, sk_sp<FontCollection> fontCollection);
34 // Push a style to the stack. The corresponding text added with AddText will
35 // use the top-most style.
36 void pushStyle(const TextStyle& style) override;
38 // Remove a style from the stack. Useful to apply different styles to chunks
53 // Adds text to the builder. Forms the proper runs to use the upper-most style
57 // Adds text to the builder, using the top-most style on on the style_stack.
87 static std::unique_ptr<ParagraphBuilder> make(const ParagraphStyle& style,
92 static std::unique_ptr<ParagraphBuilder> make(const ParagraphStyle& style,
[all...]
/third_party/skia/src/utils/
H A DSkCustomTypeface.cpp4 * Use of this source code is governed by a BSD-style license that can be
48 explicit SkUserTypeface(SkFontStyle style) : SkTypeface(style) {} in SkUserTypeface() argument
107 void SkCustomTypefaceBuilder::setFontStyle(SkFontStyle style) { in setFontStyle() argument
108 fStyle = style; in setFontStyle()
325 SkFontStyle style = this->fontStyle(); in onOpenStream() local
326 wstream.write(&style, sizeof(style)); in onOpenStream()
388 SkFontStyle style; in Deserialize() local
389 if (stream->read(&style, sizeo in Deserialize()
[all...]
/third_party/node/deps/v8/tools/profview/
H A Dprofview.js2 // Use of this source code is governed by a BSD-style license that can be
388 div.style.display = "inline-block";
389 div.style.width = (indent + 0.5) + "em";
522 row.style.backgroundColor = CATEGORY_COLOR;
524 row.style.backgroundColor = bucketFromKind(node.type).backgroundColor;
530 c.style.textAlign = "right";
534 c.style.textAlign = "right";
539 c.style.textAlign = "right";
559 c.style.textAlign = "right";
564 c.style
[all...]

Completed in 19 milliseconds

12345678910>>...77