HomeSort by relevance Sort by last modified time
    Searched refs:Style (Results 26 - 50 of 396) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/src/ports/
SkFontHost_fontconfig.cpp 4 * Use of this source code is governed by a BSD-style license that can be
20 SkTypeface::Style* style, bool* isFixedWidth);
67 FindRec(const char* name, SkTypeface::Style style)
69 , fStyle(style) {}
72 SkTypeface::Style fStyle;
75 static bool find_proc(SkTypeface* face, SkTypeface::Style style, void* ctx) {
79 return rec->fStyle == style && fci->isFamilyName(rec->fFamilyName)
149 SkTypeface::Style style = SkTypeface::kNormal; local
    [all...]
SkFontHost_linux.cpp 5 * Use of this source code is governed by a BSD-style license that can be
29 SkTypeface::Style* style, bool* isFixedPitch);
77 SkTypeface::Style style) {
80 if (faces[style] != NULL) { // exact match
81 return faces[style];
84 style = (SkTypeface::Style)(style ^ SkTypeface::kItalic)
364 SkTypeface::Style style = SkTypeface::kNormal; \/\/ avoid uninitialized warning local
505 SkTypeface::Style style; local
    [all...]
  /external/chromium_org/third_party/skia/include/ports/
SkFontConfigInterface.h 4 * Use of this source code is governed by a BSD-style license that can be
72 * Given a familyName and style, find the best match.
77 * If outStyle is not null, assign the found style to it
78 * (which may differ from the requested style).
83 SkTypeface::Style requested,
86 SkTypeface::Style* outStyle) = 0;
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_fontconfig.cpp 4 * Use of this source code is governed by a BSD-style license that can be
60 FindRec(const char* name, SkTypeface::Style style)
62 , fStyle(style) {}
65 SkTypeface::Style fStyle;
68 static bool find_proc(SkTypeface* face, SkTypeface::Style style, void* ctx) {
72 return rec->fStyle == style && fci->isFamilyName(rec->fFamilyName);
78 SkTypeface::Style style) {
142 SkTypeface::Style style = SkTypeface::kNormal; local
    [all...]
SkFontHost_linux.cpp 5 * Use of this source code is governed by a BSD-style license that can be
29 SkTypeface::Style* style, bool* isFixedPitch);
77 SkTypeface::Style style) {
80 if (faces[style] != NULL) { // exact match
81 return faces[style];
84 style = (SkTypeface::Style)(style ^ SkTypeface::kItalic)
364 SkTypeface::Style style = SkTypeface::kNormal; \/\/ avoid uninitialized warning local
505 SkTypeface::Style style; local
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
ColorPickerMoreButton.java 2 // Use of this source code is governed by a BSD-style license that can be
10 import android.graphics.Paint.Style;
38 mBorderPaint.setStyle(Paint.Style.STROKE);
  /external/chromium_org/ui/views/controls/
glow_hover_controller.h 2 // Use of this source code is governed by a BSD-style license that can be
32 enum Style {
48 void Show(Style style);
  /external/skia/include/ports/
SkFontConfigInterface.h 4 * Use of this source code is governed by a BSD-style license that can be
72 * Given a familyName and style, find the best match.
77 * If outStyle is not null, assign the found style to it
78 * (which may differ from the requested style).
83 SkTypeface::Style requested,
86 SkTypeface::Style* outStyle) = 0;
SkTypeface_android.h 4 * Use of this source code is governed by a BSD-style license that can be
100 * @param style The font style, for example bold
105 SK_API SkTypeface* SkCreateTypefaceForScriptNG(hb_script_t script, SkTypeface::Style style,
108 SK_API SkTypeface* SkCreateTypefaceForScript(HB_Script script, SkTypeface::Style style,
  /external/clang/lib/Format/
WhitespaceManager.h 40 WhitespaceManager(SourceManager &SourceMgr, const FormatStyle &Style)
41 : SourceMgr(SourceMgr), Style(Style) {}
164 const FormatStyle &Style;
Format.cpp 70 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
78 Style == PredefinedStyle) {
87 if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) {
93 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
94 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
95 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments);
97 Style.AllowAllParametersOfDeclarationOnNextLine);
99 Style.AllowShortIfStatementsOnASingleLine);
101 Style.AllowShortLoopsOnASingleLine);
103 Style.AlwaysBreakTemplateDeclarations)
    [all...]
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 25 enum Style {
52 /// Which style to use for printing hexadecimal values.
53 HexStyle::Style PrintHexStyle;
93 HexStyle::Style getPrintHexStyleHex() const { return PrintHexStyle; }
94 void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; }
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
BaseObjTest.java 21 import android.renderscript.Font.Style;
27 Style S = Font.Style.NORMAL;
  /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/chromium_org/chrome/browser/chromeos/login/
login_web_dialog.h 2 // Use of this source code is governed by a BSD-style license that can be
36 enum Style {
45 Style style);
89 Style style_;
  /external/chromium_org/third_party/skia/include/core/
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...]
SkFontHost.h 5 * Use of this source code is governed by a BSD-style license that can be
42 1) Given either a name/style, return a subclass of SkTypeface that
99 requested style.
102 3) If all are null, return the default font that best matches style
106 SkTypeface::Style style);
  /external/skia/include/core/
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...]
SkFontHost.h 5 * Use of this source code is governed by a BSD-style license that can be
42 1) Given either a name/style, return a subclass of SkTypeface that
99 requested style.
102 3) If all are null, return the default font that best matches style
106 SkTypeface::Style style);
  /external/clang/include/clang/Format/
Format.h 171 /// \brief The brace breaking style to use.
232 /// \brief Returns a format style complying with the LLVM coding standards:
236 /// \brief Returns a format style complying with Google's C++ style guide:
240 /// \brief Returns a format style complying with Chromium's style guide:
241 /// http://www.chromium.org/developers/coding-style.
244 /// \brief Returns a format style complying with Mozilla's style guide:
248 /// \brief Returns a format style complying with Webkit's style guide
    [all...]
  /frameworks/base/core/jni/android/graphics/
Typeface.cpp 31 SkTypeface::Style style) {
36 face = SkTypeface::CreateFromName(str.c_str(), style);
39 face = SkTypeface::CreateFromName(str.c_str(), (SkTypeface::Style)(style ^ SkTypeface::kItalic));
42 face = SkTypeface::CreateFromName(str.c_str(), (SkTypeface::Style)i);
46 // return the default font at the best style if no exact match exists
48 face = SkTypeface::CreateFromName(NULL, style);
53 static SkTypeface* Typeface_createFromTypeface(JNIEnv* env, jobject, SkTypeface* family, int style) {
54 SkTypeface* face = SkTypeface::CreateFromTypeface(family, (SkTypeface::Style)style)
    [all...]
  /external/clang/tools/clang-format/
ClangFormat.cpp 30 // Default style to use when no style specified or specified style not found.
65 Style("style",
66 cl::desc("Coding style, currently supports:\n"
68 "Use -style=file to load style configuration from\n"
72 "Use -style=\"{key: value, ...}\" to set specific\n"
74 " -style=\"{BasedOnStyle: llvm, IndentWidth: 8}\"")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkResource.h 46 Style,
  /external/clang/unittests/Format/
FormatTest.cpp 23 const FormatStyle &Style) {
26 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
35 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) {
36 return format(Code, 0, Code.size(), Style);
73 FormatStyle Style = getLLVMStyle();
74 Style.ColumnLimit = ColumnLimit;
75 return Style;
79 FormatStyle Style = getGoogleStyle();
80 Style.ColumnLimit = ColumnLimit;
81 return Style;
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ArcShapeTest.java 24 import android.graphics.Paint.Style;
52 paint.setStyle(Style.FILL);

Completed in 1190 milliseconds

12 3 4 5 6 7 8 91011>>