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

1 2

  /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);
Paint.java 25 * The Paint class holds the style and color information about how to draw
73 static final Style[] sStyleArray = {
74 Style.FILL, Style.STROKE, Style.FILL_AND_STROKE
227 * The Style specifies if the primitive being drawn is filled, stroked, or
230 public enum Style {
232 * Geometry and text drawn with this style will be filled, ignoring all
237 * Geometry and text drawn with this style will be stroked, respecting
242 * Geometry and text drawn with this style will be both filled an
    [all...]
  /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/skia/include/effects/
Sk1DPathEffect.h 49 enum Style {
61 @param style how to transform path at each point (based on the current
64 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
83 Style fStyle; // copied from constructor
  /external/skia/src/effects/
SkBlurMask.h 25 enum Style {
39 static bool Blur(SkMask* dst, const SkMask& src, SkScalar radius, Style, Quality quality);
  /external/skia/include/core/
SkTypeface.h 31 The SkTypeface class specifies the typeface and intrinsic style of a font.
40 /** Style specifies the intrinsic style attributes of a given typeface
42 enum Style {
51 /** Returns the typeface's intrinsic style attributes
53 Style style() const { return fStyle; } function in class:SkTypeface
84 requested familyName and style. Pass null as the familyName to return
85 the default font for the requested style. Will never return null
88 @param style The style (normal, bold, italic) of the typeface
    [all...]
SkPaint.h 47 The SkPaint class holds the style and color information about how to draw
272 enum Style {
280 /** Return the paint's style, used for controlling how primitives'
283 @return the paint's Style
285 Style getStyle() const { return (Style)fStyle; }
287 /** Set the paint's style, used for controlling how primitives'
290 @param style The new style to set in the paint
292 void setStyle(Style style)
    [all...]
  /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/chrome/browser/autocomplete/
autocomplete_match.h 2 // Use of this source code is governed by a BSD-style license that can be
46 enum Style {
53 ACMatchClassification(size_t offset, int style)
55 style(style) {
61 int style; member in struct:AutocompleteMatch::ACMatchClassification
110 // Fills in the classifications for |text|, using |style| as the base style
112 // will also not be dimmed, if |style| has DIM set.)
115 int style,
    [all...]
  /external/skia/samplecode/
SampleDraw.cpp 156 enum Style {
163 RDraw(const SkRect& r, Style s) : fRect(r), fStyle(s) {}
216 Style fStyle;
  /frameworks/base/graphics/java/android/renderscript/
Font.java 74 public enum Style {
119 static String getFontFileName(String familyName, Style style) {
122 switch(style) {
213 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
  /sdk/assetstudio/src/com/android/assetstudiolib/
GraphicGenerator.java 76 public static enum Style {
87 Style(String id) {
  /external/llvm/lib/Target/X86/
X86Subtarget.h 33 enum Style {
52 /// PICStyle - Which PIC style to use
54 PICStyles::Style PICStyle;
168 PICStyles::Style getPICStyle() const { return PICStyle; }
169 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
  /frameworks/base/libs/hwui/
FontRenderer.h 68 enum Style {
85 int flags, uint32_t italicStyle, uint32_t scaleX, SkPaint::Style style,
132 uint32_t scaleX, SkPaint::Style style, uint32_t strokeWidth);
161 SkPaint::Style mStyle;
  /external/freetype/include/freetype/
tttables.h 447 FT_UShort Style;
    [all...]
  /frameworks/base/media/java/android/media/
TimedText.java 48 public static final int KEY_STRUCT_STYLE_LIST = 13; // List<Style>
85 private List<Style> mStyleList = null;
178 * Helper class to hold the style information to display the text.
181 public class Style {
183 * The offset of the start character which applys this style
188 * The offset of the end character which applys this style
224 public Style() { }
458 * To parse and store the Style list.
461 Style style = new Style() local
    [all...]
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 302 milliseconds

1 2