Home
last modified time | relevance | path

Searched refs:styles (Results 1 – 25 of 222) sorted by relevance

123456789

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DReplaceableTest.java69 || tr.styles.hasMetaData()) { in check()
87 ReplaceableString styles; field in ReplaceableTest.TestReplaceable
93 TestReplaceable (String text, String styles) { in TestReplaceable() argument
97 if (styles != null && i < styles.length()) { in TestReplaceable()
98 s.append(styles.charAt(i)); in TestReplaceable()
107 this.styles = new ReplaceableString(s.toString()); in TestReplaceable()
111 return styles.toString(); in getStyles()
116 return chars.toString() + "{" + styles.toString() + "}"; in toString()
163 if (start != limit && styles.charAt(start) != NO_STYLE) { in fixStyles()
164 newStyle = styles.charAt(start); in fixStyles()
[all …]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DReplaceableTest.java66 || tr.styles.hasMetaData()) { in check()
84 ReplaceableString styles; field in ReplaceableTest.TestReplaceable
90 TestReplaceable (String text, String styles) { in TestReplaceable() argument
94 if (styles != null && i < styles.length()) { in TestReplaceable()
95 s.append(styles.charAt(i)); in TestReplaceable()
104 this.styles = new ReplaceableString(s.toString()); in TestReplaceable()
108 return styles.toString(); in getStyles()
113 return chars.toString() + "{" + styles.toString() + "}"; in toString()
160 if (start != limit && styles.charAt(start) != NO_STYLE) { in fixStyles()
161 newStyle = styles.charAt(start); in fixStyles()
[all …]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DThemeStyleSet.java11 private List<OverlayedStyle> styles = new ArrayList<>(); field in ThemeStyleSet
16 for (OverlayedStyle overlayedStyle : styles) { in getAttrValue()
28 for (int i = 0; i < styles.size(); ++i) { in apply()
29 if (styleToAdd.equals(styles.get(i))) { in apply()
30 styles.remove(i); in apply()
34 styles.add(styleToAdd); in apply()
39 themeStyleSet.styles.addAll(this.styles); in copy()
45 if (styles.isEmpty()) { in toString()
48 return "theme with applied styles: " + styles + ""; in toString()
DStyleResolver.java9 private final List<StyleData> styles = new ArrayList<>(); field in StyleResolver
23 styles.add(styleData); in StyleResolver()
27 for (StyleData style : styles) { in getAttrValue()
31 int initialSize = styles.size(); in getAttrValue()
32 while (hasParent(styles.get(styles.size() - 1))) { in getAttrValue()
33 StyleData parent = getParent(styles.get(styles.size() - 1)); in getAttrValue()
35 styles.add(parent); in getAttrValue()
40 for (int i = initialSize; i < styles.size(); i++) { in getAttrValue()
41 StyleData style = styles.get(i); in getAttrValue()
120 for (StyleData parentStyle : styles) { in dereferenceResName()
[all …]
/external/icu/icu4c/source/test/intltest/
Dreptest.cpp43 UnicodeString styles; member in TestReplaceable
71 this->styles = s; in TestReplaceable()
75 return new TestReplaceable(chars, styles); in clone()
81 return styles; in getStyles()
87 s.append(styles); in toString()
125 if (start != limit && styles.charAt(start) != NO_STYLE) { in fixStyles()
126 newStyle = styles.charAt(start); in fixStyles()
128 newStyle = styles.charAt(start-1); in fixStyles()
129 } else if (limit < styles.length()) { in fixStyles()
130 newStyle = styles.charAt(limit); in fixStyles()
[all …]
/external/antlr/runtime/JavaScript/tests/functional/
Drhino-python.input35 def __init__(self, styles=None, keymap=None):
36 if styles is None:
37 styles = Styles()
38 basic = styles.add('normal', tabsize=3, fontSize=12, fontFamily="Courier")
39 styles.add('error', parent=basic, foreground=colors.red)
40 styles.add('output', parent=basic, foreground=colors.blue)
41 styles.add('input', parent=basic, foreground=colors.black)
42 styles.add('prompt', parent=basic, foreground=colors.purple)
43 self.styles = styles
60 self.document = swing.text.DefaultStyledDocument(self.styles)
[all …]
/external/skqp/gm/
Dinversepaths.cpp54 Style styles[] { variable
100 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
114 paint.setStyle(styles[styleIndex].fPaintStyle);
115 paint.setPathEffect(styles[styleIndex].fPathEffect);
Dblurrect.cpp179 const SkBlurStyle styles[] = {kNormal_SkBlurStyle, kInner_SkBlurStyle, kOuter_SkBlurStyle}; variable
198 for (size_t k = 0 ; k < SK_ARRAY_COUNT(styles) ; k++) {
199 SkBlurStyle style = styles[k];
/external/skia/gm/
Dinversepaths.cpp54 Style styles[] { variable
100 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
114 paint.setStyle(styles[styleIndex].fPaintStyle);
115 paint.setPathEffect(styles[styleIndex].fPathEffect);
Dblurrect.cpp179 const SkBlurStyle styles[] = {kNormal_SkBlurStyle, kInner_SkBlurStyle, kOuter_SkBlurStyle}; variable
198 for (size_t k = 0 ; k < SK_ARRAY_COUNT(styles) ; k++) {
199 SkBlurStyle style = styles[k];
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResTableTheme.java31 private final List<AppliedStyle> styles = new ArrayList<>(); field in ResTableTheme
55 if (styles.isEmpty()) { in toString()
58 return "theme with applied styles: " + styles + ""; in toString()
173 styles.add(newAppliedStyle); in applyStyle()
289 styles.clear(); in setTo()
290 styles.addAll(other.styles); in setTo()
/external/icu/icu4j/
Dstylesheet7.css78 Document title and Copyright styles
113 Navigation bar styles
198 Page header and footer styles
231 Heading styles
255 Page layout container styles
299 List styles
354 Table styles
459 Content styles
473 Formatting effect styles
492 /* ICU modified JCite styles */
Dstylesheet8.css86 Document title and Copyright styles
118 Navigation bar styles
203 Page header and footer styles
239 Heading styles
261 Page layout container styles
308 List styles
362 Table styles
515 Content styles
546 Formatting effect styles
/external/skqp/src/ports/
DSkFontMgr_fuchsia.cpp202 std::vector<SkFontStyle> styles) in SkFontStyleSet_Fuchsia() argument
203 : fFontManager(font_manager), fFamilyName(familyName), fStyles(styles) {} in SkFontStyleSet_Fuchsia()
266 std::vector<SkFontStyle> styles; local
268 for (auto& style : familyInfo->styles) {
270 for (auto& style : *(familyInfo->styles)) {
272 styles.push_back(SkFontStyle(style.weight, style.width, FuchsiaToSkSlant(style.slant)));
275 return new SkFontStyleSet_Fuchsia(sk_ref_sp(this), familyInfo->name, std::move(styles));
/external/guava/
Djavadoc-stylesheet.css69 Document title and Copyright styles
104 Navigation bar styles
183 Page header and footer styles
216 Heading styles
240 Page layout container styles
284 List styles
339 Table styles
444 Content styles
457 Formatting effect styles
/external/libjpeg-turbo/java/doc/
Dstylesheet.css69 Document title and Copyright styles
104 Navigation bar styles
183 Page header and footer styles
216 Heading styles
240 Page layout container styles
284 List styles
339 Table styles
444 Content styles
457 Formatting effect styles
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
DStyles.java107 public static String combine(final String... styles) { in combine() argument
109 for (final String style : styles) { in combine()
/external/llvm/test/Bitcode/
Dvisibility-styles.3.2.ll4 ; visibility-styles.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
5 ; The test checks that LLVM does not silently misread visibility styles of
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/
Dvisibility-styles.3.2.ll4 ; visibility-styles.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
5 ; The test checks that LLVM does not silently misread visibility styles of
/external/python/cpython3/Lib/
Dformatter.py59 def push_style(self, *styles): pass argument
280 def push_style(self, *styles): argument
285 for style in styles:
312 def new_styles(self, styles): pass argument
341 def new_styles(self, styles): argument
342 print("new_styles(%r)" % (styles,))
/external/python/cpython2/Lib/
Dformatter.py56 def push_style(self, *styles): pass argument
277 def push_style(self, *styles): argument
282 for style in styles:
309 def new_styles(self, styles): pass argument
338 def new_styles(self, styles): argument
339 print "new_styles(%r)" % (styles,)
/external/subsampling-scale-image-view/docs/javadoc/
Dstylesheet.css82 Document title and Copyright styles
114 Navigation bar styles
199 Page header and footer styles
235 Heading styles
257 Page layout container styles
304 List styles
358 Table styles
511 Content styles
542 Formatting effect styles
/external/skia/src/ports/
DSkFontMgr_fuchsia.cpp202 std::vector<SkFontStyle> styles) in SkFontStyleSet_Fuchsia() argument
203 : fFontManager(font_manager), fFamilyName(familyName), fStyles(styles) {} in SkFontStyleSet_Fuchsia()
266 std::vector<SkFontStyle> styles; in onMatchFamily() local
267 for (auto& style : familyInfo->styles) { in onMatchFamily()
268 styles.push_back(SkFontStyle(style.weight, style.width, FuchsiaToSkSlant(style.slant))); in onMatchFamily()
271 return new SkFontStyleSet_Fuchsia(sk_ref_sp(this), familyInfo->name, std::move(styles)); in onMatchFamily()
/external/bzip2/
Dbzip.css31 /* release styles */
36 /* ------ styles for docs|manuals|howto ------ */
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeUnitTest.java171 int[] styles = new int[] {TimeUnitFormat.FULL_NAME, TimeUnitFormat.ABBREVIATED_NAME}; in TestGreek() local
247 for ( int styleIndex = 0; styleIndex < styles.length; ++styleIndex ) { in TestGreek()
251 … timeUnitFormat = new TimeUnitFormat(new ULocale(locales[locIndex]), styles[styleIndex]); in TestGreek()
256 + ", style: " + styles[styleIndex] in TestGreek()

123456789