HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 76 - 100 of 931) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skqp/experimental/sksg/
SkSGPaintNode.h 4 * Use of this source code is governed by a BSD-style license that can be
32 SG_ATTRIBUTE(Style , SkPaint::Style, fStyle )
51 SkPaint::Style fStyle = SkPaint::kFill_Style;
  /frameworks/base/libs/hwui/hwui/
Typeface.h 37 // resolved style actually used for rendering
40 // style used in the API
41 enum Style : uint8_t { kNormal = 0, kBold = 0x01, kItalic = 0x02, kBoldItalic = 0x03 };
42 Style fAPIStyle;
47 // style. There is a base weight concept which is used for calculating relative style from an
49 // The createRelative method creates a new Typeface with a style relative to the base Typeface.
50 // For example, if the base Typeface has a base weight of 400 and the desired style is bold, the
71 static Typeface* createRelative(Typeface* src, Style desiredStyle);
86 // base weight in CSS-style units, 1..100
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
Formatters.h 28 StringRef Style) {
29 codeview::fmt_guid(V.Guid).format(Stream, Style);
35 StringRef Style) {
  /external/skia/include/core/
SkStrokeRec.h 4 * Use of this source code is governed by a BSD-style license that can be
22 SkStrokeRec(InitStyle style);
23 SkStrokeRec(const SkPaint&, SkPaint::Style, SkScalar resScale = 1);
26 enum Style {
36 Style getStyle() const;
55 * strokeAndFill==true -> new style will be Fill
56 * strokeAndFill==false -> new style will be Hairline
80 Style style = this->getStyle(); local
81 return (kStroke_Style == style) || (kStrokeAndFill_Style == style)
    [all...]
  /external/skqp/include/core/
SkStrokeRec.h 4 * Use of this source code is governed by a BSD-style license that can be
22 SkStrokeRec(InitStyle style);
23 SkStrokeRec(const SkPaint&, SkPaint::Style, SkScalar resScale = 1);
26 enum Style {
36 Style getStyle() const;
55 * strokeAndFill==true -> new style will be Fill
56 * strokeAndFill==false -> new style will be Hairline
80 Style style = this->getStyle(); local
81 return (kStroke_Style == style) || (kStrokeAndFill_Style == style)
    [all...]
  /external/clang/unittests/Format/
FormatTestJava.cpp 23 unsigned Length, const FormatStyle &Style) {
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
36 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
37 return format(Code, 0, Code.size(), Style);
41 FormatStyle Style = getGoogleStyle(FormatStyle::LK_Java);
42 Style.ColumnLimit = ColumnLimit;
43 return Style;
48 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
62 FormatStyle Style = getStyleWithColumns(50)
    [all...]
FormatTestProto.cpp 23 unsigned Length, const FormatStyle &Style) {
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
35 FormatStyle Style = getGoogleStyle(FormatStyle::LK_Proto);
36 Style.ColumnLimit = 60; // To make writing tests easier.
37 return format(Code, 0, Code.size(), Style);
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ThemeStyleSet.java 9 public class ThemeStyleSet implements Style {
17 AttributeResource overlayedAttribute = overlayedStyle.style.getAttrValue(attrName);
26 public void apply(Style style, boolean force) {
27 OverlayedStyle styleToAdd = new OverlayedStyle(style, force);
53 Style style; field in class:ThemeStyleSet.OverlayedStyle
56 OverlayedStyle(Style style, boolean force) {
57 this.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
44 enum Style {
56 @param style how to transform path at each point (based on the current
59 static sk_sp<SkPathEffect> Make(const SkPath& path, SkScalar advance, SkScalar phase, Style);
68 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
79 Style fStyle; // copied from constructor
  /external/skqp/include/effects/
Sk1DPathEffect.h 4 * Use of this source code is governed by a BSD-style license that can be
44 enum Style {
56 @param style how to transform path at each point (based on the current
59 static sk_sp<SkPathEffect> Make(const SkPath& path, SkScalar advance, SkScalar phase, Style);
68 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
79 Style fStyle; // copied from constructor
  /external/clang/lib/Format/
UnwrappedLineFormatter.cpp 39 LevelIndentTracker(const FormatStyle &Style,
42 : Style(Style), Keywords(Keywords), AdditionalIndent(AdditionalIndent) {
44 IndentForLevel.push_back(Style.IndentWidth * i + AdditionalIndent);
59 Indent = Line.Level * Style.IndentWidth + AdditionalIndent;
88 if (Style.Language == FormatStyle::LK_Java ||
89 Style.Language == FormatStyle::LK_JavaScript)
95 return Style.AccessModifierOffset;
109 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
112 const FormatStyle &Style;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FormatAdapters.h 36 void format(llvm::raw_ostream &Stream, StringRef Style) {
38 FmtAlign(Adapter, Where, Amount).format(Stream, Style);
50 void format(llvm::raw_ostream &Stream, StringRef Style) {
53 Adapter.format(Stream, Style);
65 void format(llvm::raw_ostream &Stream, StringRef Style) {
68 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FormatAdapters.h 36 void format(llvm::raw_ostream &Stream, StringRef Style) {
38 FmtAlign(Adapter, Where, Amount).format(Stream, Style);
50 void format(llvm::raw_ostream &Stream, StringRef Style) {
53 Adapter.format(Stream, Style);
65 void format(llvm::raw_ostream &Stream, StringRef Style) {
68 Adapter.format(Stream, Style);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
FormatAdapters.h 38 void format(llvm::raw_ostream &Stream, StringRef Style) {
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
52 void format(llvm::raw_ostream &Stream, StringRef Style) {
55 Adapter.format(Stream, Style);
67 void format(llvm::raw_ostream &Stream, StringRef Style) {
70 Adapter.format(Stream, Style);

Completed in 1109 milliseconds

1 2 34 5 6 7 8 91011>>