HomeSort by relevance Sort by last modified time
    Searched refs:style (Results 1 - 25 of 11422) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/text/style/
ParagraphStyle.java 17 package android.text.style;
UpdateAppearance.java 17 package android.text.style;
UpdateLayout.java 17 package android.text.style;
WrapTogetherSpan.java 17 package android.text.style;
SuggestionSpan.aidl 17 package android.text.style;
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECPointEncoder.java 17 * @param style the style to use.
19 public void setPointFormat(String style);
  /external/abi-compliance-checker/modules/Internals/Scripts/
Sections.js 4 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';
  /toolchain/binutils/binutils-2.25/ld/
ldbuildid.c 32 validate_build_id_style (const char *style)
34 if ((streq (style, "md5")) || (streq (style, "sha1"))
36 || (streq (style, "uuid"))
38 || (strneq (style, "0x", 2)))
45 compute_build_id_size (const char *style)
47 if (streq (style, "md5") || streq (style, "uuid"))
50 if (streq (style, "sha1"))
53 if (strneq (style, "0x", 2)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BlurMaskFilter.java 58 * @param style The Blur to use
61 public BlurMaskFilter(float radius, Blur style) {
62 native_instance = nativeConstructor(radius, style.native_int);
65 private static native long nativeConstructor(float radius, int style);
  /external/icu/icu4c/source/io/
locbund.cpp 39 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) {
52 if (result->fNumberFormat[style-1] == NULL) {
53 if (gPosixNumberFormat[style-1] == NULL) {
55 UNumberFormat *formatAlias = unum_open(style, NULL, 0, "en_US_POSIX", NULL, &status)
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
LinkableStub.java 23 private final String style; field in class:LinkableStub
25 public LinkableStub(String link, String label, String style) {
28 this.style = style;
40 return style;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
ScalarNode.java 27 private Character style; field in class:ScalarNode
30 public ScalarNode(Tag tag, String value, Mark startMark, Mark endMark, Character style) {
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;
  /frameworks/base/tools/aapt2/link/
AutoVersioner_test.cpp 66 "app:style/Foo", test::ParseConfigOrDie("v4"),
79 "app:style/Foo", test::ParseConfigOrDie("v21"),
95 Style* style = test::GetValueForConfig<Style>(table.get(), "app:style/Foo", local
97 ASSERT_NE(style, nullptr);
98 ASSERT_EQ(style->entries.size(), 1u);
99 AAPT_ASSERT_TRUE(style->entries.front().key.name);
100 EXPECT_EQ(style->entries.front().key.name.value()
    [all...]
  /external/v8/tools/
draw_instruction_graph.sh 99 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 line 11 lc rgb '#40c0c0
    [all...]
  /frameworks/base/tools/aapt2/
ValueVisitor_test.cpp 39 Style* visited_style = nullptr;
43 void Visit(Style* style) override {
44 visited_style = style;
45 ValueVisitor::Visit(style);
58 std::unique_ptr<Style> style = local
60 .SetParent("android:style/foo")
65 style->Accept(&visitor);
67 ASSERT_EQ(style.get(), visitor.visited_style)
78 std::unique_ptr<Style> style = local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
ScalarToken.java 23 private final char style; field in class:ScalarToken
29 public ScalarToken(String value, boolean plain, Mark startMark, Mark endMark, char style) {
33 this.style = style;
45 return this.style;
50 return "value=" + value + ", plain=" + plain + ", style=" + style;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
TextAppearanceFactory.java 20 import android.text.style.TextAppearanceSpan;
34 new TextAppearanceSpan(mContext, R.style.SuggestionText1_Query)
40 new TextAppearanceSpan(mContext, R.style.SuggestionText1_Suggested)
  /cts/tests/tests/theme/src/android/theme/cts/
DeviceDefaultTest.java 34 assertActionBar(android.R.style.Theme_DeviceDefault);
38 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog);
42 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_MinWidth);
46 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_NoActionBar);
50 assertNoActionBar(android.R.style.Theme_DeviceDefault_Dialog_NoActionBar_MinWidth);
54 assertActionBarWhenLarge(android.R.style.Theme_DeviceDefault_DialogWhenLarge);
58 assertNoActionBar(android.R.style.Theme_DeviceDefault_DialogWhenLarge_NoActionBar);
63 assertNoActionBar(android.R.style.Theme_DeviceDefault_InputMethod);
67 assertActionBar(android.R.style.Theme_DeviceDefault_Light);
71 assertActionBar(android.R.style.Theme_DeviceDefault_Light_DarkActionBar)
    [all...]
  /external/clang/www/demo/
syntax.css 3 .llvm_type { font-style: oblique; color: green }
  /external/skia/src/gpu/ops/
GrDashOp.h 4 * Use of this source code is governed by a BSD-style license that can be
27 const SkPoint pts[2], AAMode, const GrStyle& style);
28 bool CanDrawDashLine(const SkPoint pts[2], const GrStyle& style, const SkMatrix& viewMatrix);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
char.s 1 ; Test MRI style character constants.

Completed in 1819 milliseconds

1 2 3 4 5 6 7 8 91011>>