Home
last modified time | relevance | path

Searched +full:theme +full:- +full:one +full:- +full:dark (Results 1 – 25 of 44) sorted by relevance

12

/external/zxing/zxing.appspot.com/src/main/resources/com/google/zxing/web/generator/
DGenerator.gwt.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <module rename-to='generator'>
3 <!-- Inherit the core Web Toolkit stuff. -->
6 <!-- Inherit the default GWT style sheet. You can change -->
7 <!-- the theme of your GWT application by uncommenting -->
8 <!-- any one of the following lines. -->
9 <inherits name='com.google.gwt.user.theme.clean.Clean'/>
10 <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
11 <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
12 <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
[all …]
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config.py42 [one]
43 one = false
48 one = a string
59 self.assertIs(parser.Get('one', 'one', type='bool'), False)
60 self.assertIs(parser.Get('one', 'two', type='bool'), True)
61 eq(parser.Get('one', 'three', type='int'), 10)
62 eq(parser.Get('two', 'one'), 'a string')
78 self.assertCountEqual(get_list('one'), ['one', 'two', 'three'])
79 self.assertCountEqual(get_list('two'), ['one', 'two', 'three'])
193 config_path = os.path.join(idle_dir, '../config-%s.def' % ctype)
[all …]
Dtest_configdialog.py154 fontlist.event_generate('<Key-Down>')
155 fontlist.event_generate('<KeyRelease-Down>')
164 fontlist.event_generate('<Key-Up>')
165 fontlist.event_generate('<KeyRelease-Up>')
186 fontlist.event_generate('<Button-1>', x=x, y=y)
187 fontlist.event_generate('<ButtonRelease-1>', x=x, y=y)
224 'font-size': default_size,
225 'font-bold': str(default_bold)}}
232 'font-size': '20',
233 'font-bold': str(default_bold)}}
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/google-signin/
Dgoogle-signin.html1 <!--
8 https://www.apache.org/licenses/LICENSE-2.0
15 -->
17 <link rel="import" href="google-signin-aware.html">
18 <link rel="import" href="../iron-icon/iron-icon.html">
19 <link rel="import" href="../font-roboto/roboto.html">
20 <link rel="import" href="../google-apis/google-js-api.html">
21 <link rel="import" href="../paper-ripple/paper-ripple.html">
22 <link rel="import" href="../paper-material/paper-material.html">
23 <link rel="import" href="../iron-flex-layout/iron-flex-layout-classes.html">
[all …]
/external/pigweed/docs/
Dconf.py7 # https://www.apache.org/licenses/LICENSE-2.0
22 # The master toctree document. # inclusive-language: ignore
27 copyright = f'{date.today().year} The Pigweed Authors' # pylint: disable=redefined-builtin
51 "sphinx.ext.napoleon", # Parses Google-style docstrings
56 "sphinx_copybutton", # Copy-to-clipboard button on code blocks
61 # When a user clicks the copy-to-clipboard button the `$ ` prompt should not be
62 # copied: https://sphinx-copybutton.readthedocs.io/en/latest/use.html
76 # The theme to use for HTML and HTML Help pages. See the documentation for
115 # FontAwesome for mermaid and sphinx-design
116 "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css",
[all …]
/external/pigweed/docs/_static/css/
Dpigweed.css8 * https://www.apache.org/licenses/LICENSE-2.0
19 /* Make the "Pigweed" logo text. One day, this will be an image. */
20 .sidebar-brand {
21 font-size: 2em;
22 font-family: 'Inconsolata', monospace;
23 font-weight: bold;
24 letter-spacing: 0.1em;
25 text-transform: uppercase;
28 .sidebar-brand-text {
29 font-size: 2.5rem;
[all …]
/external/pigweed/pw_web/webconsole/
Dpackage.json13 "@codemirror/lang-javascript": "^6.0.2",
15 "@codemirror/theme-one-dark": "^6.0.0",
21 "object-path": "^0.11.8",
24 "react-dom": "18.2.0",
25 "react-virtualized": "^9.22.3",
26 "react-virtualized-auto-sizer": "^1.0.6",
27 "react-window": "^1.8.7",
29 "xterm-addon-fit": "^0.5.0"
34 "@types/react-dom": "18.0.6",
35 "@types/react-virtualized": "^9.21.21",
[all …]
/external/libmonet/dynamiccolor/
DDynamicColor.java8 * http://www.apache.org/licenses/LICENSE-2.0
37 * such as differing in light mode versus dark mode, or what the theme is, or what the color that
38 * produced the theme is, etc.
75 * <p>_Strongly_ prefer using one of the convenience constructors. This class is arguably too
99 * colors. One of them must be the color being constructed.
125 * <p>_Strongly_ prefer using one of the convenience constructors. This class is arguably too
149 * colors. One of them must be the color being constructed.
176 * <p>_Strongly_ prefer using one of the convenience constructors. This class is arguably too
213 * <p>_Strongly_ prefer using one of the convenience constructors. This class is arguably too
262 return DynamicColor.fromPalette(name, (s) -> palette, (s) -> hct.getTone()); in fromArgb()
[all …]
/external/setupdesign/main/src/com/google/android/setupdesign/util/
DThemeResolver.java8 * http://www.apache.org/licenses/LICENSE-2.0
27 * A resolver to resolve the theme from a string or an activity intent, setting options like the
28 * default theme and the oldest supported theme. Apps can share the resolver across the entire
30 * android.app.Application#onCreate()}. If an app needs more granular sharing of the theme default
44 * preset one.
76 * Returns the style for the theme specified in the intent extra. If the specified string theme is
77 * older than the oldest supported theme, the default will be returned instead. Note that the
78 * default theme is returned without processing -- it may not be a DayNight theme even if {@link
90 * the intent extra {@link WizardManagerHelper#EXTRA_THEME}, the default theme will be returned
91 * instead. Note that the default theme is returned without processing -- it may not be a DayNight
[all …]
/external/python/cpython3/Lib/idlelib/
DNEWS.txt3 Released after 2022-10-24
7 gh-104719: Remove IDLE's modification of tokenize.tabsize and test
10 gh-104499: Fix completions for Tk Aqua 8.7 (currently blank).
12 gh-104486: Make About print both tcl and tk versions if different,
15 gh-88496 Fix IDLE test hang on macOS.
17 gh-103314 Support sys.last_exc after exceptions in Shell.
23 Released on 2022-10-24
26 gh-97527: Fix a bug in the previous bugfix that caused IDLE to not
31 gh-65802: Document handling of extensions in Save As dialogs.
33 gh-95191: Include prompts when saving Shell (interactive input/output).
[all …]
Dconfigdialog.py53 parent - parent of this dialog
54 title - string which is the title of this popup dialog
55 _htest - bool, change box location when running htest
56 _utest - bool, don't wait_window when running unittest
75 # Each theme element key is its display name.
86 # self.bind('<Alt-a>', self.Apply) #apply changes, save
219 # config must be done - remove the previous keybindings.
256 # # Define tab-specific behavior.
325 (*)fontlist: ListBox - font_name
329 (*)sizelist: DynOptionMenu - font_size
[all …]
/external/accompanist/testharness/src/main/java/com/google/accompanist/testharness/
DTestHarness.kt8 * https://www.apache.org/licenses/LICENSE-2.0
54 * @param darkMode if true, the content will be rendered with dark mode. This defaults to the
55 * current dark mode value as reported by [isSystemInDarkTheme].
82 content: @Composable () -> Unit
85 val sizeContentWrapper: @Composable (@Composable () -> Unit) -> Unit =
101 // Set dark mode directly in <lambda>()
125 true -> (screenLayout and Configuration.SCREENLAYOUT_ROUND_MASK.inv()) or in <lambda>()
127 false -> (screenLayout and Configuration.SCREENLAYOUT_ROUND_MASK.inv()) or in <lambda>()
134 // overriding the one from the locale. in <lambda>()
153 content: @Composable () -> Unit
[all …]
/external/perfetto/ui/
Dpackage.json2 "name": "perfetto-webui",
8 "license": "Apache-2.0",
15 "@codemirror/theme-one-dark": "^6.1.2",
20 "@types/color-convert": "^1.9.0",
27 "@types/w3c-web-usb": "^1.0.6",
30 "color-convert": "^2.0.1",
32 "devtools-protocol": "0.0.1159816",
37 "jsbn-rsa": "^1.0.4",
39 "noice-json-rpc": "^1.2.0",
42 "protobufjs-cli": "^1.1.2",
[all …]
/external/perfetto/ui/src/widgets/
Deditor.ts7 // http://www.apache.org/licenses/LICENSE-2.0
17 import {oneDarkTheme} from '@codemirror/theme-one-dark';
48 key: 'Mod-Enter',
109 return m('.pf-editor');
/external/python/cpython2/Lib/idlelib/
DNEWS.txt3 *Release date: 2017-01-01?*
5 - Issue #27854: Make Help => IDLE Help work again on Windows.
8 - Issue #25507: Add back import needed for 2.x encoding warning box.
11 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
14 - Issue #27922: Stop IDLE tests from 'flashing' gui widgets on the screen.
16 - Issue #17642: add larger font sizes for classroom projection.
18 - Add version to title of IDLE help window.
20 - Issue #25564: In section on IDLE -- console differences, mention that
23 - Issue #27714: text_textview and test_autocomplete now pass when re-run
25 -w option but without -jn. Fix warning from test_config.
[all …]
DconfigDialog.py28 _htest - bool, change box location when running htest
29 _utest - bool, don't wait_window when running unittest
42 #Theme Elements. Each theme element key is its display name.
70 #self.bind('<Alt-a>', self.Apply) #apply changes, save
136 '<ButtonRelease-1>', self.OnListFontButtonRelease)
197 text=' Highlighting Theme ')
204 text.bind('<Double-Button-1>', lambda e: 'break')
205 text.bind('<B1-Motion>', lambda e: 'break')
229 self.themeElements[element][0], '<ButtonPress-1>', tem)
247 frameCustom, text='Save as New Custom Theme',
[all …]
/external/pigweed/pw_web/webconsole/components/repl/
Dindex.tsx7 // https://www.apache.org/licenses/LICENSE-2.0
19 import {javascript, javascriptLanguage} from "@codemirror/lang-javascript"
21 import {oneDark} from "@codemirror/theme-one-dark";
41 const {FitAddon} = await import('xterm-addon-fit');
44 theme: {
70 let currentCommandHistoryIndex = -1;
83 const futureTerm = createTerminal(document.querySelector('#repl-log-container')!);
134 currentCommandHistoryIndex = -1;
154 currentCommandHistoryIndex = historyStorage.data.length - 1;
163 currentCommandHistoryIndex--;
[all …]
/external/pigweed/pw_console/py/pw_console/
Dconsole_app.py7 # https://www.apache.org/licenses/LICENSE-2.0
122 ) -> None:
131 ) -> ColorDepth:
152 # pylint: disable=too-many-instance-attributes,too-many-public-methods
240 'Ctrl-p',
246 base_style='class:toolbar-button-inactive',
249 # One space separator
252 # Auto-generated keybindings list for all active panes
372 # pylint: disable=line-too-long
390 # pylint: enable=line-too-long
[all …]
/external/python/cpython2/Doc/library/
Didle.rst19 * cross-platform: works mostly the same on Windows, Unix, and Mac OS X
24 * multi-window text editor with multiple undo, Python colorizing,
36 -----
57 Open a list of recent files. Click one to open it.
75 Save the current window to the associated file, if there is one. Windows
108 Copy selection into the system-wide clipboard; then delete the selection.
111 Copy selection into the system-wide clipboard.
114 Insert contents of the system-wide clipboard into the current window.
125 Repeat the last search, if there is one.
128 Search for the currently selected string, if there is one.
[all …]
/external/replicaisland/res/values/
Dwanda.xml1 <?xml version="1.0" encoding="utf-8"?>
4 <!-- Wanda Dialog Entries -->
15 Hmm, his self-repair mechanism is still intact. If I can just reconnect the power...
19 Are you feeling better Mr. Android? Your memory is probably still scrambled, but don’t worry--it w…
31 Why hello there! You’re not another one of this island’s crazy creations, are you? Let me guess: …
87 …warn you though, he’s kind of full of himself. And he’s really competitive--this isn’t just a job…
112 …ting it for at least the last fifty. I’ve seen evidence of early explorers--old diaries and stuff…
116 Personally, my money is on the space theory. I bet it’s some sort of alien artifact that crash-lan…
132 …ou really pumped up his ego. He’s actually a really nice guy under those dark glasses. Last year…
150-with-a-heart-of-gold shtick is just for show. Secretly he’s built Rokudou Corp. by investing in …
[all …]
/external/cldr/common/annotations/
Den_001.xml1 <?xml version="1.0" encoding="UTF-8" ?>
3 <!-- Copyright © 1991-2024 Unicode, Inc.
5 SPDX-License-Identifier: Unicode-3.0
9 -->
19 <annotation cp="��">medium-light skin tone | skin tone</annotation>
21 <annotation cp="��">medium-dark skin tone | skin tone</annotation>
22 <annotation cp="��">dark skin tone | skin tone</annotation>
27 <annotation cp="؛">Arabic | Arabic semicolon | semi-colon</annotation>
75 <annotation cp="↞">leftwards two-headed arrow</annotation>
76 <annotation cp="↞" type="tts">leftwards two-headed arrow</annotation>
[all …]
/external/icu/icu4j/perf-tests/data/collation/
Dulyss10.txt30 organization with EIN [Employee Identification Number] 64-6221541
39 [Yes, we are more than one year ahead of schedule]
62 We are now trying to release all our etexts one year in advance
78 These Web sites include award-winning information about Project
98 Information about Project Gutenberg (one page)
104 projected audience is one hundred million readers. If the value
105 per text is nominally estimated at one dollar then we produce $2
108 If they reach just 1-2% of the world's population then the total
111 The Goal of Project Gutenberg is to Give Away One Trillion Etext
113 This is ten thousand titles each to one hundred million readers,
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a1.rst1 .. release date: 2016-05-16
4 .. nonce: C_-XFg
46 .. nonce: -nPBL6
64 .. nonce: oO-wLV
83 .. nonce: ZtcJf-
96 Single var-keyword argument of dict subtype was passed unscathed to the
97 C-defined function. Now it is converted to exact dict.
112 .. nonce: c-FZZc
221 file, only the first one is taken to account.
321 character, but next replacement uses a non-ASCII character or a string
[all …]
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dslides.v1.json38 "x16": "http://www.google.com/images/icons/product/search-16.gif",
39 "x32": "http://www.google.com/images/icons/product/search-32.gif"
75 "Responses with Content-Type of application/json",
76 "Media download with context-dependent Content-Type",
77 "Responses with Content-Type of application/x-protobuf"
109 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit…
129one or more updates to the presentation. Each request is validated before being applied. If any re…
418 … by the font_size gives the font size that is rendered in the editor. This property is read-only.",
423 …e line_spacing gives the line spacing that is rendered in the editor. This property is read-only.",
538-supplied object ID. If you specify an ID, it must be unique among all pages and page elements in …
[all …]
/external/rust/crates/moveit/
DCONTRIBUTING.md10 <meta charset="utf-8">
11 <link rel="dns-prefetch" href="https://github.githubassets.com">
12 <link rel="dns-prefetch" href="https://avatars0.githubusercontent.com">
13 <link rel="dns-prefetch" href="https://avatars1.githubusercontent.com">
14 <link rel="dns-prefetch" href="https://avatars2.githubusercontent.com">
15 <link rel="dns-prefetch" href="https://avatars3.githubusercontent.com">
16 <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
17 <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
21-v0wSB0SbeOFEPVJKeG3ENnZHwhmCB7glTJtbS70wGCd2pJHoqe+KL2LEDE4gdI+EaY0lXGWQ5IPmHimAuvJmWw==" rel="st…
22-uP1AMyqEyOPRvRp69YW8vMoZjC+Zl+bvrF+7DpeyLNAlanwBk1G9TGFqriK9cju81RQF75NYHIW4a2NZuT/02w==" rel="st…
[all …]

12