/external/skia/src/ports/ |
SkFontHost_freetype_mac.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 16 FTMacTypeface(Style style, uint32_t id, SkStream* stream) : SkTypeface(style, id) { 54 SkTypeface::Style style) {
|
SkFontHost_fontconfig.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 17 SkTypeface::Style find_name_and_style(SkStream* stream, SkString* name); 51 static SkTypeface::Style StyleFromUniqueId(unsigned uniqueid) { 52 return static_cast<SkTypeface::Style>(uniqueid & 0xff); 55 static unsigned UniqueIdFromFileIdAndStyle(unsigned fileid, SkTypeface::Style style) { 56 SkASSERT((style & 0xff) == style); 57 return (fileid << 8) | static_cast<int>(style); 62 FontConfigTypeface(Style style, uint32_t id) : SkTypeface(style, id) { [all...] |
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
TextTest.java | 89 Font.Style.NORMAL, 8.0f / metrics.density)); 91 Font.Style.NORMAL, 8.0f / metrics.density));
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
TextViewWithCircularIndicator.java | 24 import android.graphics.Paint.Style; 62 mCirclePaint.setStyle(Style.FILL);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImagePoint.java | 24 import android.graphics.Paint.Style; 70 paint.setStyle(Style.STROKE);
|
/external/llvm/lib/Target/X86/ |
X86Subtarget.h | 33 enum Style { 59 /// PICStyle - Which PIC style to use 61 PICStyles::Style PICStyle; 223 PICStyles::Style getPICStyle() const { return PICStyle; } 224 void setPICStyle(PICStyles::Style Style) { PICStyle = Style; }
|
/external/skia/legacy/src/ports/ |
SkFontHost_fontconfig.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 28 SkTypeface::Style find_name_and_style(SkStream* stream, SkString* name); 37 // both filename and style. Thus we encode that id as (fileid << 8) | style. 52 static SkTypeface::Style UniqueIdToStyle(unsigned uniqueid) 54 return static_cast<SkTypeface::Style>(uniqueid & 0xff); 58 SkTypeface::Style style) 60 SkASSERT((style & 0xff) == style); [all...] |
SkFontHost_android.cpp | 45 SkTypeface::Style* style, bool* isFixedWidth); 54 SkTypeface::Style* style, 61 return find_name_and_attributes(&stream, name, style, isFixedWidth); 66 return find_name_and_attributes(&stream, name, style, isFixedWidth); 79 SkTypeface::Style style); 131 SkTypeface::Style style) { 757 SkTypeface::Style style; local 899 int style = stream->readU8(); local 1074 SkTypeface::Style style; local 1178 SkTypeface::Style style; member in struct:TypefaceLookupStruct [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Regions.java | 50 mPaint.setStyle(Paint.Style.STROKE); 58 // restore style 59 mPaint.setStyle(Paint.Style.FILL); 102 mPaint.setStyle(Paint.Style.FILL);
|
PathEffects.java | 49 PathDashPathEffect.Style.ROTATE); 60 mPaint.setStyle(Paint.Style.STROKE);
|
/frameworks/base/core/jni/android/graphics/ |
Typeface.cpp | 31 SkTypeface::Style style) { 35 face = SkTypeface::CreateFromName(NULL, (SkTypeface::Style)style); 39 face = SkTypeface::CreateFromName(str.c_str(), style); 44 static SkTypeface* Typeface_createFromTypeface(JNIEnv* env, jobject, SkTypeface* family, int style) { 45 return SkTypeface::CreateFromTypeface(family, (SkTypeface::Style)style); 53 return face->style();
|
/frameworks/base/graphics/java/android/renderscript/ |
Font.java | 79 public enum Style { 136 static String getFontFileName(String familyName, Style style) { 139 switch(style) { 241 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
|
/packages/apps/Camera/src/com/android/camera/ |
PanoProgressBar.java | 53 mDoneAreaPaint.setStyle(Paint.Style.FILL); 56 mBackgroundPaint.setStyle(Paint.Style.FILL); 59 mIndicatorPaint.setStyle(Paint.Style.FILL);
|
/packages/apps/Gallery2/src/com/android/camera/ |
PanoProgressBar.java | 53 mDoneAreaPaint.setStyle(Paint.Style.FILL); 56 mBackgroundPaint.setStyle(Paint.Style.FILL); 59 mIndicatorPaint.setStyle(Paint.Style.FILL);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
CategoryView.java | 66 mSelectPaint.setStyle(Paint.Style.FILL); 106 mPaint.setStyle(Paint.Style.STROKE); 110 mPaint.setStyle(Paint.Style.FILL);
|
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
PanoProgressBar.java | 52 mDoneAreaPaint.setStyle(Paint.Style.FILL); 55 mBackgroundPaint.setStyle(Paint.Style.FILL); 58 mIndicatorPaint.setStyle(Paint.Style.FILL);
|
/frameworks/base/media/java/android/media/ |
TimedText.java | 66 private static final int KEY_STRUCT_STYLE_LIST = 13; // List<Style> 102 private List<Style> mStyleList = null; 167 * Helper class to hold the style information to display the text. 171 public static final class Style { 173 * The offset of the start character which applys this style 178 * The offset of the end character which applys this style 216 * @param startChar the offset of the start character which applys this style 217 * @param endChar the offset of the end character which applys this style 225 public Style(int startChar, int endChar, int fontId, 529 * To parse and store the Style list 583 Style style = new Style(startChar, endChar, fontId, isBold, local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
DashPathEffectTest.java | 27 import android.graphics.Paint.Style; 53 paint.setStyle(Style.STROKE);
|
PictureTest.java | 29 import android.graphics.Paint.Style; 80 paint.setStyle(Style.FILL);
|
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
PathShapeTest.java | 25 import android.graphics.Paint.Style; 58 paint.setStyle(Style.FILL);
|
RectShapeTest.java | 25 import android.graphics.Paint.Style; 54 paint.setStyle(Style.FILL);
|
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
ShadowLayout.java | 26 import android.graphics.Paint.Style; 67 mShadowPaint.setStyle(Style.FILL);
|
/external/chromium/chrome/browser/chromeos/login/ |
login_html_dialog.cc | 2 // Use of this source code is governed by a BSD-style license that can be 49 Style style) 54 style_(style), 73 static_cast<BubbleWindow::Style>(
|
/external/skia/gm/ |
emptypath.cpp | 5 * Use of this source code is governed by a BSD-style license that can be 29 SkPaint::Style style, 35 paint.setStyle(style); 54 SkPaint::Style fStyle; 69 "Indicated Style and Fill"; 81 for (size_t style = 0; style < SK_ARRAY_COUNT(gStyles); ++style) { 96 gStyles[style].fStyle, gFills[fill].fFill) [all...] |
/frameworks/base/core/java/android/text/style/ |
BulletSpan.java | 17 package android.text.style; 85 Paint.Style style = p.getStyle(); local 93 p.setStyle(Paint.Style.FILL); 114 p.setStyle(style);
|