Searched refs:style (Results 51 - 75 of 633) sorted by relevance

1234567891011>>

/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_rtttldata.h62 EAS_I8 style; /* from STYLE */ member in struct:__anon14271
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_rtttldata.h62 EAS_I8 style; /* from STYLE */ member in struct:__anon14323
/external/skia/src/animator/
H A DSkPaintPart.cpp4 * Use of this source code is governed by a BSD-style license that can be
74 SK_MEMBER(style, FontStyle)
81 SkDrawTypeface::SkDrawTypeface() : style (SkTypeface::kNormal){
96 SkDump::GetEnumString(SkType_FontStyle, style, &string);
97 SkDebugf("style=\"%s\" />\n", string.c_str());
/external/skia/src/core/
H A DSkMaskCache.cpp4 * Use of this source code is governed by a BSD-style license that can be
23 RRectBlurKey(SkScalar sigma, const SkRRect& rrect, SkBlurStyle style, SkBlurQuality quality) argument
25 , fStyle(style)
73 SkCachedData* SkMaskCache::FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, argument
76 RRectBlurKey key(sigma, rrect, style, quality);
86 void SkMaskCache::Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, argument
89 RRectBlurKey key(sigma, rrect, style, quality);
100 RectsBlurKey(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, argument
103 , fStyle(style)
164 SkCachedData* SkMaskCache::FindAndRef(SkScalar sigma, SkBlurStyle style, SkBlurQualit argument
178 Add(SkScalar sigma, SkBlurStyle style, SkBlurQuality quality, const SkRect rects[], int count, const SkMask& mask, SkCachedData* data, SkResourceCache* localCache) argument
[all...]
H A DSkTypeface.cpp4 * Use of this source code is governed by a BSD-style license that can be
17 SkTypeface::SkTypeface(const SkFontStyle& style, SkFontID fontID, bool isFixedPitch) argument
18 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) { }
71 SkTypeface* sk_create_default_typeface(int style) { argument
79 SkTypeface* t = fm->legacyCreateTypeface(NULL, style);
90 SkTypeface* SkTypeface::GetDefaultTypeface(Style style) { argument
91 SkASSERT((int)style < 4);
92 return defaults[style];
95 SkTypeface* SkTypeface::RefDefault(Style style) { argument
96 return SkRef(GetDefaultTypeface(style));
112 CreateFromName(const char name[], Style style) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPaint.java19 private Paint.Style style; field in class:ShadowPaint
79 public void setStyle(Paint.Style style) { argument
80 this.style = style;
85 return style;
/external/skia/src/ports/
H A DSkFontHost_fontconfig.cpp4 * Use of this source code is governed by a BSD-style license that can be
62 NameStyle(const char* name, const SkFontStyle& style) argument
64 , fStyle(style) {}
90 SkTypeface::Style style)
98 SkFontStyle requestedStyle(style);
111 if (!fci->matchFamilyName(familyName, style, &indentity, &outFamilyName, &outStyle)) {
89 LegacyCreateTypeface(const char familyName[], SkTypeface::Style style) argument
H A DSkFontHost_FreeType_common.h5 * Use of this source code is governed by a BSD-style license that can be
40 * name and style from a stream, using FreeType's API.
48 SkString* name, SkFontStyle* style, bool* isFixedPitch) const;
56 SkTypeface_FreeType(const SkFontStyle& style, SkFontID uniqueID, bool isFixedPitch) argument
57 : INHERITED(style, uniqueID, isFixedPitch)
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatRoundTripTest.java113 int style = 0;
114 for (style = DateFormat.FULL; style <= DateFormat.SHORT; ++style) {
116 logln("Testing style " + styleName(style));
117 DateFormat df = DateFormat.getDateInstance(style, loc);
122 for (style = DateFormat.FULL; style <= DateFormat.SHORT; ++style) {
[all...]
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
H A DTimeZoneNameTest.java71 private void checkDisplayNamePair(int style, String tzid, Locale loc, boolean warnOnly) { argument
84 String icuStdName = getIcuDisplayName(tzid, false, style, loc);
85 String icuDstName = getIcuDisplayName(tzid, true, style, loc);
87 checkDisplayName(false, style, tzid, loc, icuStdName, warnOnly);
88 checkDisplayName(true, style, tzid, loc, icuDstName, warnOnly);
92 private String getIcuDisplayName(String tzid, boolean daylight, int style, Locale loc) { argument
99 switch (style) {
115 private void checkDisplayName(boolean daylight, int style, String tzid, Locale loc, String icuname, boolean warnOnly) { argument
116 String styleStr = (style == TimeZone.SHORT) ? "SHORT" : "LONG";
118 String name = tz.getDisplayName(daylight, style, lo
[all...]
/external/skia/gm/
H A Ddstreadshuffle.cpp5 * Use of this source code is governed by a BSD-style license that can be
128 static void SetStyle(SkPaint* p, int style, int width) { argument
129 switch (style) {
150 for (int style = 0; style < 3; style++) {
154 SkColor color = GetColor(&random, alpha, style + width + alpha + r);
163 SetStyle(&p, style, width);
H A Dcubicpaths.cpp4 * Use of this source code is governed by a BSD-style license that can be
68 SkPaint::Style style, SkPath::FillType fill,
76 paint.setStyle(style);
152 for (size_t style = 0; style < SK_ARRAY_COUNT(gStyles); ++style) {
153 if (0 < style) {
159 gCaps[cap].fCap, gCaps[cap].fJoin, gStyles[style].fStyle,
175 canvas->drawText(gStyles[style].fName,
176 strlen(gStyles[style]
66 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPath::FillType fill, SkScalar strokeWidth) argument
212 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPath::FillType fill, SkScalar strokeWidth) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcompactdecimalformattest.cpp189 const Locale& locale, UNumberCompactStyle style,
194 CompactDecimalFormat* createCDFInstance(const Locale& locale, UNumberCompactStyle style, UErrorCode& status);
195 static const char *StyleStr(UNumberCompactStyle style);
297 void CompactDecimalFormatTest::CheckLocale(const Locale& locale, UNumberCompactStyle style, const ExpectedResult* expectedResults, int32_t expectedResultLength) { argument
299 LocalPointer<CompactDecimalFormat> cdf(createCDFInstance(locale, style, status));
305 sprintf(description,"%s - %s", locale.getName(), StyleStr(style));
325 CompactDecimalFormatTest::createCDFInstance(const Locale& locale, UNumberCompactStyle style, UErrorCode& status) { argument
326 CompactDecimalFormat* result = CompactDecimalFormat::createInstance(locale, style, status);
336 const char *CompactDecimalFormatTest::StyleStr(UNumberCompactStyle style) { argument
337 if (style
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java39 * Indicates the style of Listformatter
46 * Standard style.
153 * Create a list formatter that is appropriate for a locale and style.
156 * @param style the style
162 public static ListFormatter getInstance(ULocale locale, Style style) { argument
163 return cache.get(locale, style.getName());
318 public ListFormatter get(ULocale locale, String style) { argument
319 String key = String.format("%s:%s", locale.toString(), style);
322 result = load(locale, style);
328 load(ULocale ulocale, String style) argument
[all...]
H A DTimeUnitFormat.java67 * Constant for full name style format.
74 * Constant for abbreviated name style format.
89 private int style; field in class:TimeUnitFormat
111 * Create empty format using full name style, for example, "hours".
119 style = FULL_NAME;
123 * Create TimeUnitFormat given a ULocale, and using full name style.
133 * Create TimeUnitFormat given a Locale, and using full name style.
143 * Create TimeUnitFormat given a ULocale and a formatting style.
145 * @param style format style, eithe
151 TimeUnitFormat(ULocale locale, int style) argument
165 TimeUnitFormat(ULocale locale, int style, NumberFormat numberFormat) argument
177 TimeUnitFormat(Locale locale, int style) argument
364 setup(String resourceKey, Map<TimeUnit, Map<String, Object[]>> timeUnitToCountToPatterns, int style, Set<String> pluralKeywords) argument
[all...]
H A DScientificNumberFormatter.java40 private final Style style; field in class:ScientificNumberFormatter
122 return style.format(
129 * A style type for ScientificNumberFormatter. All Style instances are immutable
313 DecimalFormat decimalFormat, Style style) {
316 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style);
320 ULocale locale, Style style) {
326 style);
332 DecimalFormat decimalFormat, String preExponent, Style style) {
335 this.style = style;
312 getInstance( DecimalFormat decimalFormat, Style style) argument
319 getInstanceForLocale( ULocale locale, Style style) argument
331 ScientificNumberFormatter( DecimalFormat decimalFormat, String preExponent, Style style) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DMixin.java45 public Object newInstance(int style, String[] classes, int[] route); argument
100 private int style = STYLE_INTERFACES; field in class:Mixin.Generator
112 public void setStyle(int style) { argument
113 switch (style) {
117 this.style = style;
120 throw new IllegalArgumentException("Unknown mixin style: " + style);
136 switch (style) {
165 return (Mixin)super.create(KEY_FACTORY.newInstance(style, ReflectUtil
[all...]
/external/bzip2/
H A Dbzip.css41 list-style: url("/images/li-blue.png");
47 list-style-type: none;
48 list-style-image: none;
/external/clang/tools/clang-format/
H A Dclang-format.el10 ;; style options, see <http://clang.llvm.org/docs/ClangFormatStyleOptions.html>.
48 (defcustom clang-format-style "file"
51 By default clang-format will load the style configuration from
57 (make-variable-buffer-local 'clang-format-style)
103 (defun clang-format-region (char-start char-end &optional style)
106 is no active region. If no style is given uses `clang-format-style'."
112 (unless style
113 (setq style clang-format-style))
[all...]
/external/clang/www/analyzer/scripts/
H A Dexpandcollapse.js72 with (data.style) { height = (CLIP_HEIGHT - EXPANDER_HEIGHT) + "px";
76 with (expander.style) { display = "block"; paddingTop = "5px"; }
103 expandableDiv.style.height = CLIP_HEIGHT + "px";
163 expandableDiv.style.height = newHeight + "px";
170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px";
175 data.style.height = "";
/external/doclava/res/assets/templates/
H A Dhierarchy.cs3 <style>
11 </style>
23 <div style="margin-left: 20px; margin-right: 20px;">
/external/openssh/
H A Dauth-bsdauth.c75 debug3("bsdauth_query: style %s",
76 authctxt->style ? authctxt->style : "<default>");
78 authctxt->style, "auth-ssh", &challenge);
/external/skia/bench/
H A DMorphologyBench.cpp4 * Use of this source code is governed by a BSD-style license that can be
36 MorphologyBench(SkScalar rad, MorphologyType style) argument
39 fStyle = style;
40 const char* name = rad > 0 ? gStyleName[style] : "none";
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStrictStyle.java1 package org.bouncycastle.asn1.x500.style;
/external/libvpx/libvpx/tools/
H A Dvpx-astyle.sh3 astyle --style=java --indent=spaces=2 --indent-switches\

Completed in 2213 milliseconds

1234567891011>>