HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 1 - 25 of 310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_StyleTest.java 21 import android.graphics.Paint.Style;
26 assertEquals(Style.FILL, Style.valueOf("FILL"));
27 assertEquals(Style.STROKE, Style.valueOf("STROKE"));
28 assertEquals(Style.FILL_AND_STROKE, Style.valueOf("FILL_AND_STROKE"));
33 Style[] actual = Style.values();
36 assertEquals(Style.FILL, actual[0])
    [all...]
PathDashPathEffect_StyleTest.java 20 import android.graphics.PathDashPathEffect.Style;
27 assertEquals(Style.TRANSLATE, Style.valueOf("TRANSLATE"));
28 assertEquals(Style.ROTATE, Style.valueOf("ROTATE"));
29 assertEquals(Style.MORPH, Style.valueOf("MORPH"));
30 // Every Style element will be tested somewhere else.
35 Style[] expected = {
36 Style.TRANSLATE
    [all...]
  /frameworks/base/graphics/java/android/graphics/
PathDashPathEffect.java 21 public enum Style {
26 Style(int value) {
34 * applies to drawings when the paint's style is STROKE or STROKE_AND_FILL.
35 * If the paint's style is FILL, then this effect is ignored. The paint's
40 * @param style how to transform the shape at each position as it is stamped
43 Style style) {
45 style.native_style);
  /external/skia/legacy/src/core/
SkTypefaceCache.h 5 * Use of this source code is governed by a BSD-style license that can be
31 typedef bool (*FindProc)(SkTypeface*, SkTypeface::Style, void* context);
45 static void Add(SkTypeface*, SkTypeface::Style requested);
78 void add(SkTypeface*, SkTypeface::Style requested);
86 SkTypeface::Style fRequestedStyle;
SkTypeface.cpp 5 * Use of this source code is governed by a BSD-style license that can be
20 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedWidth)
21 : fUniqueID(fontID), fStyle(style), fIsFixedWidth(isFixedWidth) {
64 SkTypeface* SkTypeface::CreateFromName(const char name[], Style style) {
65 return SkFontHost::CreateTypeface(NULL, name, NULL, 0, style);
69 Style s) {
73 SkTypeface* SkTypeface::CreateFromTypeface(const SkTypeface* family, Style s) {
  /external/skia/include/ports/
SkTypeface_android.h 4 * Use of this source code is governed by a BSD-style license that can be
22 * @param style The font style, for example bold
27 SK_API SkTypeface* SkCreateTypefaceForScriptNG(hb_script_t script, SkTypeface::Style style,
30 SK_API SkTypeface* SkCreateTypefaceForScript(HB_Script script, SkTypeface::Style style,
  /external/skia/legacy/src/effects/
SkBlurMask.h 5 * Use of this source code is governed by a BSD-style license that can be
17 enum Style {
32 SkScalar radius, Style style, Quality quality,
  /external/skia/src/effects/
SkBlurMask.h 5 * Use of this source code is governed by a BSD-style license that can be
17 enum Style {
32 SkScalar radius, Style style, Quality quality,
36 SkScalar radius, Style style, Quality quality,
39 SkScalar radius, Style style, Quality quality,
43 SkScalar radius, Style style, Quality quality
    [all...]
  /external/skia/legacy/include/core/
SkTypeface.h 5 * Use of this source code is governed by a BSD-style license that can be
24 The SkTypeface class specifies the typeface and intrinsic style of a font.
33 /** Style specifies the intrinsic style attributes of a given typeface
35 enum Style {
44 /** Returns the typeface's intrinsic style attributes
46 Style style() const { return fStyle; } function in class:SkTypeface
77 requested familyName and style. Pass null as the familyName to return
78 the default font for the requested style. Will never return nul
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
FontTest.java 24 import android.renderscript.Font.Style;
31 for (Font.Style style : Font.Style.values()) {
33 F = Font.create(mRS, mRes, "sans-serif", style, fontSize);
43 F = Font.create(mRS, mRes, "serif", style, fontSize);
53 F = Font.create(mRS, mRes, "mono", style, fontSize);
80 assertEquals(Font.Style.NORMAL, Font.Style.valueOf("NORMAL"));
81 assertEquals(Font.Style.BOLD, Font.Style.valueOf("BOLD"))
    [all...]
BaseObjTest.java 21 import android.renderscript.Font.Style;
27 Style S = Font.Style.NORMAL;
  /external/skia/legacy/include/ports/
SkTypeface_android.h 4 * Use of this source code is governed by a BSD-style license that can be
21 * @param style The font style, for example bold
26 SK_API SkTypeface* SkCreateTypefaceForScript(HB_Script script, SkTypeface::Style style,
  /external/skia/src/core/
SkFontDescriptor.h 4 * Use of this source code is governed by a BSD-style license that can be
19 SkFontDescriptor(SkTypeface::Style = SkTypeface::kNormal);
24 SkTypeface::Style getStyle() { return fStyle; }
25 void setStyle(SkTypeface::Style style) { fStyle = style; }
43 SkTypeface::Style fStyle;
SkTypefaceCache.h 5 * Use of this source code is governed by a BSD-style license that can be
31 typedef bool (*FindProc)(SkTypeface*, SkTypeface::Style, void* context);
46 SkTypeface::Style requested,
80 void add(SkTypeface*, SkTypeface::Style requested, bool strong = true);
89 SkTypeface::Style fRequestedStyle;
  /external/skia/include/core/
SkTypeface.h 5 * Use of this source code is governed by a BSD-style license that can be
25 The SkTypeface class specifies the typeface and intrinsic style of a font.
36 /** Style specifies the intrinsic style attributes of a given typeface
38 enum Style {
47 /** Returns the typeface's intrinsic style attributes
49 Style style() const { return fStyle; } function in class:SkTypeface
80 requested familyName and style. Pass null as the familyName to return
81 the default font for the requested style. Will never return nul
    [all...]
SkStrokeRec.h 4 * Use of this source code is governed by a BSD-style license that can be
21 SkStrokeRec(InitStyle style);
26 enum Style {
33 Style getStyle() const;
52 * strokeAndFill==true -> new style will be Fill
53 * strokeAndFill==false -> new style will be Hairline
68 Style style = this->getStyle(); local
69 return (kStroke_Style == style) || (kStrokeAndFill_Style == style);
    [all...]
  /external/skia/include/effects/
Sk1DPathEffect.h 4 * Use of this source code is governed by a BSD-style license that can be
40 enum Style {
52 @param style how to transform path at each point (based on the current
55 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
74 Style fStyle; // copied from constructor
  /external/chromium/chrome/browser/chromeos/frame/
bubble_window.h 2 // Use of this source code is governed by a BSD-style license that can be
26 enum Style {
27 STYLE_GENERIC = 0, // Default style.
35 Style style,
  /external/chromium/chrome/browser/chromeos/login/
login_html_dialog.h 2 // Use of this source code is governed by a BSD-style license that can be
34 enum Style {
43 Style style);
81 Style style_;
  /external/skia/legacy/include/effects/
Sk1DPathEffect.h 5 * Use of this source code is governed by a BSD-style license that can be
42 enum Style {
54 @param style how to transform path at each point (based on the current
57 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
82 Style fStyle; // copied from constructor
  /external/webkit/Source/WebKit/android/plugins/
ANPTypefaceInterface.cpp 33 static_cast<SkTypeface::Style>(s));
40 static_cast<SkTypeface::Style>(s));
57 SkTypeface::Style s = tf ? tf->style() : SkTypeface::kNormal;
  /external/clang/include/clang/Format/
Format.h 96 /// \brief Returns a format style complying with the LLVM coding standards:
100 /// \brief Returns a format style complying with Google's C++ style guide:
104 /// \brief Returns a format style complying with Chromium's style guide:
105 /// http://www.chromium.org/developers/coding-style.
119 /// \p Style.
120 tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
  /external/skia/legacy/src/ports/
SkFontHost_linux.cpp 5 * Use of this source code is governed by a BSD-style license that can be
26 SkTypeface::Style* style, bool* isFixedWidth);
80 SkTypeface::Style style) {
83 if (faces[style] != NULL) { // exact match
84 return faces[style];
87 style = (SkTypeface::Style)(style ^ SkTypeface::kItalic)
396 SkTypeface::Style style = SkTypeface::kNormal; \/\/ avoid uninitialized warning local
576 SkTypeface::Style style; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ArcShapeTest.java 24 import android.graphics.Paint.Style;
52 paint.setStyle(Style.FILL);
OvalShapeTest.java 24 import android.graphics.Paint.Style;
47 paint.setStyle(Style.FILL);

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>