Searched refs:style (Results 1 - 25 of 995) sorted by relevance

1234567891011>>

/external/python/cpython2/Lib/lib-tk/test/test_ttk/
H A Dtest_style.py13 self.style = ttk.Style(self.root)
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertIsInstance(style.configure('TButton'), dict)
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')])
27 self.assertEqual(style
[all...]
/external/python/cpython3/Lib/tkinter/test/test_ttk/
H A Dtest_style.py13 self.style = ttk.Style(self.root)
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertIsInstance(style.configure('TButton'), dict)
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')])
27 self.assertEqual(style
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
H A DECPointEncoder.java17 * @param style the style to use.
19 public void setPointFormat(String style); argument
/external/abi-compliance-checker/modules/Internals/Scripts/
H A DSections.js4 if(e.style.display == 'none')
6 e.style.display = 'block';
7 e.style.visibility = 'visible';
12 e.style.display = 'none';
13 e.style.visibility = 'hidden';
/external/python/cpython2/Demo/tkinter/ttk/
H A Dmac_searchentry.py1 """Mac style search widget
55 style = ttk.Style() variable
57 style.element_create("Search.field", "image", "search1",
60 style.layout("Search.entry", [
68 style.configure("Search.entry", background="#b2b2b2")
72 e1 = ttk.Entry(style="Search.entry", width=20)
73 e2 = ttk.Entry(style="Search.entry", width=20)
/external/pdfium/core/fxge/
H A Dfx_font.h2 // Use of this source code is governed by a BSD-style license that can be
108 inline bool FontStyleIsBold(uint32_t style) { argument
109 return !!(style & FXFONT_BOLD);
111 inline bool FontStyleIsItalic(uint32_t style) { argument
112 return !!(style & FXFONT_ITALIC);
114 inline bool FontStyleIsFixedPitch(uint32_t style) { argument
115 return !!(style & FXFONT_FIXED_PITCH);
117 inline bool FontStyleIsSymbolic(uint32_t style) { argument
118 return !!(style & FXFONT_SYMBOLIC);
120 inline bool FontStyleIsNonSymbolic(uint32_t style) { argument
123 FontStyleIsAllCaps(uint32_t style) argument
126 FontStyleIsSerif(uint32_t style) argument
129 FontStyleIsScript(uint32_t style) argument
[all...]
/external/icu/icu4c/source/io/
H A Dlocbund.cpp39 int32_t style; local
40 for (style = 0; style < ULOCALEBUNDLE_NUMBERFORMAT_COUNT; style++) {
41 unum_close(gPosixNumberFormat[style]);
42 gPosixNumberFormat[style] = NULL;
49 static inline UNumberFormat * copyInvariantFormatter(ULocaleBundle *result, UNumberFormatStyle style) { argument
52 if (result->fNumberFormat[style-1] == NULL) {
53 if (gPosixNumberFormat[style-1] == NULL) {
55 UNumberFormat *formatAlias = unum_open(style, NUL
160 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style) argument
[all...]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
H A DLinkableStub.java23 private final String style; field in class:LinkableStub
25 public LinkableStub(String link, String label, String style) { argument
28 this.style = style;
40 return style;
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
H A DThemeStyleSet.java17 AttributeResource overlayedAttribute = overlayedStyle.style.getAttrValue(attrName);
26 public void apply(Style style, boolean force) { argument
27 OverlayedStyle styleToAdd = new OverlayedStyle(style, force);
53 Style style; field in class:ThemeStyleSet.OverlayedStyle
56 OverlayedStyle(Style style, boolean force) { argument
57 this.style = style;
67 return style.equals(overlayedStyle.style);
72 return style
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DScalarNode.java27 private Character style; field in class:ScalarNode
30 public ScalarNode(Tag tag, String value, Mark startMark, Mark endMark, Character style) { argument
31 this(tag, true, value, startMark, endMark, style);
35 Character style) {
41 this.style = style;
46 * Get scalar style of this node.
53 return style;
34 ScalarNode(Tag tag, boolean resolved, String value, Mark startMark, Mark endMark, Character style) argument
/external/v8/tools/
H A Ddraw_instruction_graph.sh99 set style line 2 lc rgb '#800000'
100 set style line 3 lc rgb '#d00000'
101 set style line 4 lc rgb '#ff6000'
102 set style line 5 lc rgb '#ffc000'
103 set style line 6 lc rgb '#ffff00'
105 set style line 7 lc rgb '#ff00ff'
106 set style line 8 lc rgb '#ffc0ff'
108 set style line 9 lc rgb '#004040'
109 set style line 10 lc rgb '#008080'
110 set style lin
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
H A DScalarToken.java23 private final char style; field in class:ScalarToken
29 public ScalarToken(String value, boolean plain, Mark startMark, Mark endMark, char style) { argument
33 this.style = style;
45 return this.style;
50 return "value=" + value + ", plain=" + plain + ", style=" + style;
/external/python/cpython2/Demo/tix/samples/
H A DSHList2.py57 style={}
58 style['header'] = Tix.DisplayStyle(Tix.TEXT, refwindow=hlist,
62 style=style['header'])
64 style=style['header'])
93 style['mgr_name'] = Tix.DisplayStyle(Tix.TEXT, refwindow=hlist)
95 style['mgr_posn'] = Tix.DisplayStyle(Tix.TEXT, padx=8, refwindow=hlist)
97 style['empl_name'] = Tix.DisplayStyle(Tix.TEXT, refwindow=hlist)
99 style['empl_pos
[all...]
/external/annotation-tools/
H A D.travis-build.sh12 ant check-style
/external/clang/www/demo/
H A Dsyntax.css3 .llvm_type { font-style: oblique; color: green }
/external/doclava/res/assets/templates-sdk/
H A Dbody_tag.cs16 ?><div id="doc-api-level" class="<?cs var:class.since ?><?cs var:package.since ?>" style="display:none"></div><?cs
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
H A DScalarEvent.java25 // style flag of a scalar event indicates the style of the scalar. Possible
27 private final Character style; field in class:ScalarEvent
31 // and non-plain style correspondingly.
35 Mark startMark, Mark endMark, Character style) {
40 this.style = style;
73 return this.style;
34 ScalarEvent(String anchor, String tag, ImplicitTuple implicit, String value, Mark startMark, Mark endMark, Character style) argument
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
H A Dscan.js2 // Use of this source code is governed by a BSD-style license that can be
19 waitAnimation.style.display = 'block';
20 requestButton.style.display = 'none';
21 scanButton.style.display = 'block';
23 waitAnimation.style.display = 'none';
29 waitAnimation.style.display = 'block';
41 waitAnimation.style.display = 'none';
61 waitAnimation.style.display = 'block';
/external/skia/src/gpu/
H A DGrPath.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 static inline void write_style_key(uint32_t* key, const GrStyle& style) { argument
12 // Pass 1 for the scale since the GPU will apply the style not GrStyle::applyToPath().
13 GrStyle::WriteKey(key, style, GrStyle::Apply::kPathEffectAndStrokeRec, SK_Scalar1);
19 int styleCnt = GrStyle::KeySize(shape.style(), GrStyle::Apply::kPathEffectAndStrokeRec);
31 write_style_key(&builder[geoCnt], shape.style());
37 bool GrPath::isEqualTo(const SkPath& path, const GrStyle& style) const {
40 int cnt1 = GrStyle::KeySize(style, GrStyle::Apply::kPathEffectAndStrokeRec);
48 write_style_key(key1.get(), style);
H A DGrStyle.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 int GrStyle::KeySize(const GrStyle &style, Apply apply, uint32_t flags) { argument
14 if (style.isDashed()) {
16 size += 2 + style.dashIntervalCnt();
17 } else if (style.pathEffect()) {
26 if (style.strokeRec().needToApply()) {
27 // One for res scale, one for style/cap/join, one for miter limit, and one for width.
33 void GrStyle::WriteKey(uint32_t *key, const GrStyle &style, Apply apply, SkScalar scale, argument
36 SkASSERT(KeySize(style, apply) >= 0);
46 if (style
170 applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src, SkScalar resScale) const argument
[all...]
/external/skqp/src/gpu/
H A DGrPath.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 static inline void write_style_key(uint32_t* key, const GrStyle& style) { argument
12 // Pass 1 for the scale since the GPU will apply the style not GrStyle::applyToPath().
13 GrStyle::WriteKey(key, style, GrStyle::Apply::kPathEffectAndStrokeRec, SK_Scalar1);
19 int styleCnt = GrStyle::KeySize(shape.style(), GrStyle::Apply::kPathEffectAndStrokeRec);
31 write_style_key(&builder[geoCnt], shape.style());
37 bool GrPath::isEqualTo(const SkPath& path, const GrStyle& style) const {
40 int cnt1 = GrStyle::KeySize(style, GrStyle::Apply::kPathEffectAndStrokeRec);
48 write_style_key(key1.get(), style);
H A DGrStyle.cpp4 * Use of this source code is governed by a BSD-style license that can be
11 int GrStyle::KeySize(const GrStyle &style, Apply apply, uint32_t flags) { argument
14 if (style.isDashed()) {
16 size += 2 + style.dashIntervalCnt();
17 } else if (style.pathEffect()) {
26 if (style.strokeRec().needToApply()) {
27 // One for res scale, one for style/cap/join, one for miter limit, and one for width.
33 void GrStyle::WriteKey(uint32_t *key, const GrStyle &style, Apply apply, SkScalar scale, argument
36 SkASSERT(KeySize(style, apply) >= 0);
46 if (style
170 applyToPath(SkPath* dst, SkStrokeRec::InitStyle* style, const SkPath& src, SkScalar resScale) const argument
[all...]
/external/skqp/tools/
H A Dsk_tool_utils_font.cpp4 * Use of this source code is governed by a BSD-style license that can be
32 sk_sp<SkTypeface> create_font(const char* name, SkFontStyle style) { argument
38 if (!strcmp(name, sub->fName) && sub->fStyle == style) {
47 name, style.weight(), style.width(), style.slant());
51 return fm->legacyMakeTypeface(name, style);
67 return sk_make_sp<SkTestTypeface>(std::move(font), style);
/external/skia/tools/fonts/
H A DSkTestFontMgr.cpp4 * Use of this source code is governed by a BSD-style license that can be
34 void getStyle(int index, SkFontStyle* style, SkString* name) override {
37 case 0: if (style) { *style = SkFontStyle::Normal(); }
40 case 1: if (style) { *style = SkFontStyle::Bold(); }
43 case 2: if (style) { *style = SkFontStyle::Italic(); }
46 case 3: if (style) { *style
[all...]
/external/skqp/dm/
H A DDMFontMgr.cpp4 * Use of this source code is governed by a BSD-style license that can be
34 void getStyle(int index, SkFontStyle* style, SkString* name) override {
37 case 0: if (style) { *style = SkFontStyle::Normal(); }
40 case 1: if (style) { *style = SkFontStyle::Bold(); }
43 case 2: if (style) { *style = SkFontStyle::Italic(); }
46 case 3: if (style) { *style
[all...]

Completed in 862 milliseconds

1234567891011>>