| /external/accompanist/placeholder/src/main/java/com/google/accompanist/placeholder/ |
| D | Placeholder.kt | 2 * Copyright 2021 The Android Open Source Project in <lambda>() 8 * https://www.apache.org/licenses/LICENSE-2.0 in <lambda>() 91 * You can provide a [PlaceholderHighlight] which runs an highlight animation on the placeholder. 94 * A cross-fade transition will be applied to the content and placeholder UI when the [visible] 99 * [Placeholder UI](https://material.io/design/communication/launch-screen.html#placeholder-ui) 107 * @param highlight optional highlight animation. 124 highlight: PlaceholderHighlight? = null, in placeholder() 125 …placeholderFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<F… in placeholder() 126 …contentFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float… in <lambda>() 133 properties["highlight"] = highlight in <lambda>() [all …]
|
| D | PlaceholderHighlight.kt | 2 * Copyright 2021 The Android Open Source Project 8 * https://www.apache.org/licenses/LICENSE-2.0 45 * The optional [AnimationSpec] to use when running the animation for this highlight. 76 * @param highlightColor the color of the highlight which is faded in/out. in brush() 97 * The highlight starts at the top-start, and then grows to the bottom-end during the animation. in brush() 103 * @param highlightColor the color of the highlight 'shimmer'. in brush() 155 progress <= progressForMaxAlpha -> { in brush() 163 else -> { in brush() 167 fraction = (progress - progressForMaxAlpha) / (1f - progressForMaxAlpha) in brush()
|
| /external/accompanist/docs/ |
| D | placeholder.md | 3 [ guide… 59 The library also provides some 'highlight' animations to entertain the user while they are waiting.… 63 This highlight fades a color over the entire placeholder in and out. 67 <source src="fade.mp4" type="video/mp4"> 86 highlight = PlaceholderHighlight.fade(), 107 highlight = PlaceholderHighlight.fade( 116 This displays a gradient shimmer effect which emanates from the top-start corner. 120 <source src="shimmer.mp4" type="video/mp4"> 139 highlight = PlaceholderHighlight.shimmer(), [all …]
|
| /external/google-cloud-java/java-contentwarehouse/proto-google-cloud-contentwarehouse-v1/src/main/java/com/google/cloud/contentwarehouse/v1/ |
| D | QAResultOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 17 // source: google/cloud/contentwarehouse/v1/document_service.proto 33 * <code>repeated .google.cloud.contentwarehouse.v1.QAResult.Highlight highlights = 1;</code> 35 java.util.List<com.google.cloud.contentwarehouse.v1.QAResult.Highlight> getHighlightsList(); in getHighlightsList() 43 * <code>repeated .google.cloud.contentwarehouse.v1.QAResult.Highlight highlights = 1;</code> 45 com.google.cloud.contentwarehouse.v1.QAResult.Highlight getHighlights(int index); in getHighlights() 53 * <code>repeated .google.cloud.contentwarehouse.v1.QAResult.Highlight highlights = 1;</code> 63 * <code>repeated .google.cloud.contentwarehouse.v1.QAResult.Highlight highlights = 1;</code> 74 * <code>repeated .google.cloud.contentwarehouse.v1.QAResult.Highlight highlights = 1;</code>
|
| D | QAResult.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 17 // source: google/cloud/contentwarehouse/v1/document_service.proto 25 * Additional result info for the question-answering feature. 72 … // @@protoc_insertion_point(interface_extends:google.cloud.contentwarehouse.v1.QAResult.Highlight) 79 * Start index of the highlight. 92 * End index of the highlight, exclusive. 109 * Protobuf type {@code google.cloud.contentwarehouse.v1.QAResult.Highlight} 111 public static final class Highlight extends com.google.protobuf.GeneratedMessageV3 class in QAResult 113 …// @@protoc_insertion_point(message_implements:google.cloud.contentwarehouse.v1.QAResult.Highlight) 116 // Use Highlight.newBuilder() to construct. [all …]
|
| /external/llvm/tools/llvm-cov/ |
| D | SourceCoverageViewText.cpp | 1 //===- SourceCoverageViewText.cpp - A text-based code coverage view -------===// 5 // This file is distributed under the University of Illinois Open Source 8 //===----------------------------------------------------------------------===// 10 /// \file This file implements the text-based coverage renderer. 12 //===----------------------------------------------------------------------===// 27 OS->operator<<('\n'); in closeViewFile() 82 renderLinePrefix(OS, ViewDepth - 1); in renderViewDivider() 86 OS << '-'; in renderViewDivider() 97 Optional<raw_ostream::Colors> Highlight; in renderLine() local 101 if (WrappedSegment && WrappedSegment->HasCount && WrappedSegment->Count == 0) in renderLine() [all …]
|
| D | SourceCoverageViewHTML.cpp | 1 //===- SourceCoverageViewHTML.cpp - A html code coverage view -------------===// 5 // This file is distributed under the University of Illinois Open Source 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 26 "<meta name='viewport' content='width=device-width,initial-scale=1'>" 27 "<meta charset='UTF-8'>"; 34 background-color: #FFD0D0; 37 background-color: cyan; 40 background-color: black; 44 background-color: #98FFA6; [all …]
|
| /external/accompanist/placeholder/src/sharedTest/kotlin/com/google/accompanist/placeholder/ |
| D | PlaceholderTest.kt | 2 * Copyright 2021 The Android Open Source Project 8 * https://www.apache.org/licenses/LICENSE-2.0 124 highlight = Solid(Color.Red) in placeholder_switchVisible2() 194 highlight = animatedBrush in placeholder_switchAnimatedBrush() 270 highlight = Solid(Color.Red), in placeholder_switchShape2() 298 val highlight = PlaceholderHighlight.shimmer(Color.Red) in placeholder_inspectableParameter1() constant 302 highlight = highlight, in placeholder_inspectableParameter1() 310 ValueElement("highlight", highlight), in placeholder_inspectableParameter1() 317 val highlight = PlaceholderHighlight.fade(Color.Red) in placeholder_inspectableParameter2() constant 321 highlight = highlight, in placeholder_inspectableParameter2() [all …]
|
| /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
| D | SourceHighlighterTest.java | 5 * http://www.eclipse.org/legal/epl-2.0 7 * SPDX-License-Identifier: EPL-2.0 10 * Marc R. Hoffmann - initial API and implementation 46 private SourceNodeImpl source; field in SourceHighlighterTest 51 source = new SourceNodeImpl(ElementType.SOURCEFILE, "Foo.java"); in setup() 53 html = new HTMLElement(buffer, "UTF-8"); in setup() 62 sourceHighlighter.render(parent, source, new StringReader(src)); in testDefaultTabWidth() 71 sourceHighlighter.render(parent, source, new StringReader("")); in testDefaultLanguage() 73 assertEquals("source lang-java linenums", in testDefaultLanguage() 80 sourceHighlighter.render(parent, source, new StringReader("")); in testSetLanguage() [all …]
|
| /external/python/cpython3/Tools/scripts/ |
| D | highlight.py | 2 '''Add syntax highlighting to Python source code''' 13 #### Analyze Python Source ################################# 23 return lines[srow-1][scol:ecol], end 24 rows = [lines[srow-1][scol:]] + lines[srow: erow-1] + [lines[erow-1][:ecol]] 27 def analyze_python(source): argument 31 lines = source.splitlines(True) 89 'Add syntax highlighting to source code using ANSI escape sequences' 114 '.docstring': '{color: forestgreen; font-style:italic;}', 117 '.definition': '{color: darkorange; font-weight:bold;}', 123 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" [all …]
|
| /external/libnl/doc/ |
| D | configure.ac | 1 # SPDX-License-Identifier: LGPL-2.1-only 3 # Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch> 6 AC_INIT(libnl-doc, [3.9.0], [http://www.infradead.org/~tgr/libnl/]) 8 AC_CONFIG_AUX_DIR([build-aux]) 16 AS_HELP_STRING([--disable-doc], [Do not generate documentation]), 24 if test "x$HAVE_PYTHON" = "xno" -a "x$generate_doc" = "xyes"; then 29 if test "x$HAVE_DOXYGEN" = "xno" -a "x$generate_doc" = "xyes"; then 52 AC_CHECK_PROG(HAVE_SOURCE_HIGHLIGHT, [source-highlight], yes, no) 55 AC_MSG_ERROR([*** source-highlight required to generate documentation]) 57 AC_MSG_WARN([*** source-highlight not found, disabling building of guides])
|
| /external/accompanist/placeholder-material3/src/main/java/com/google/accompanist/placeholder/material3/ |
| D | Placeholder.kt | 2 * Copyright 2022 The Android Open Source Project 8 * https://www.apache.org/licenses/LICENSE-2.0 109 * A cross-fade transition will be applied to the content and placeholder UI when the [visible] 113 * You can provide a [PlaceholderHighlight] which runs an highlight animation on the placeholder. 117 * [Placeholder UI](https://material.io/design/communication/launch-screen.html#placeholder-ui) 127 * @param highlight optional highlight animation. 144 highlight: PlaceholderHighlight? = null, in placeholder() 145 …placeholderFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<F… in placeholder() 146 …contentFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float… in <lambda>() 152 highlight = highlight, in <lambda>()
|
| /external/accompanist/placeholder-material/src/main/java/com/google/accompanist/placeholder/material/ |
| D | Placeholder.kt | 2 * Copyright 2021 The Android Open Source Project 8 * https://www.apache.org/licenses/LICENSE-2.0 109 * A cross-fade transition will be applied to the content and placeholder UI when the [visible] 113 * You can provide a [PlaceholderHighlight] which runs an highlight animation on the placeholder. 117 * [Placeholder UI](https://material.io/design/communication/launch-screen.html#placeholder-ui) 127 * @param highlight optional highlight animation. 144 highlight: PlaceholderHighlight? = null, in placeholder() 145 …placeholderFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<F… in placeholder() 146 …contentFadeTransitionSpec: @Composable Transition.Segment<Boolean>.() -> FiniteAnimationSpec<Float… in <lambda>() 152 highlight = highlight, in <lambda>()
|
| /external/pdfium/fpdfsdk/ |
| D | cpdfsdk_baannot_embeddertest.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 37 m_pFormFillEnv->GetOrCreatePageView(IPDFPageFromFPDFPage(m_page)); in SetUpBAAnnot() 47 m_pFormFillEnv->GetFocusableAnnotSubtypes()); in GetNthFocusableAnnot() 68 CPDF_Annot::Subtype::HIGHLIGHT}; in TEST_F() 70 GetFormFillEnv()->SetFocusableAnnotSubtypes(focusable_annot_types); in TEST_F() 75 EXPECT_EQ(pAnnot->GetAnnotSubtype(), CPDF_Annot::Subtype::LINK); in TEST_F() 83 // Get highlight annot. in TEST_F() 86 EXPECT_EQ(pAnnot->GetAnnotSubtype(), CPDF_Annot::Subtype::HIGHLIGHT); in TEST_F()
|
| /external/perfetto/ui/src/assets/ |
| D | home_page.scss | 1 // Copyright (C) 2021 The Android Open Source Project 7 // http://www.apache.org/licenses/LICENSE-2.0 17 .home-page { 19 align-items: stretch; 20 justify-items: center; 21 grid-template-columns: 1fr; 22 grid-template-rows: 1fr 60px; 23 grid-template-areas: "center" "footer"; 25 .home-page-center { 26 grid-area: center; [all …]
|
| /external/pdfium/xfa/fxfa/ |
| D | cxfa_ffsignature.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 27 HighlightOption highlight) { in RenderWidget() argument 34 CXFA_FFWidget::RenderWidget(pGS, mtRotate, highlight); in RenderWidget() 36 DrawBorder(pGS, m_pNode->GetUIBorder(), m_UIRect, mtRotate); in RenderWidget() 38 DrawHighlight(pGS, mtRotate, highlight, kSquareShape); in RenderWidget() 108 if (pNorm && pNorm->HitTest(FWLToClient(point)) != FWL_WidgetHit::Unknown) in HitTest()
|
| D | cxfa_ffexclgroup.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 20 HighlightOption highlight) { in RenderWidget() argument 27 CXFA_FFWidget::RenderWidget(pGS, mtRotate, highlight); in RenderWidget()
|
| /external/llvm/utils/vim/ |
| D | vimrc | 5 " WARNING: Read before you source in all these commands and macros! Some 9 " $ vim -u /path/to/llvm/utils/vim/vimrc 14 " A tab produces a 2-space indentation 19 " Highlight trailing whitespace and lines longer than 80 columns. 20 highlight LongLine ctermbg=DarkYellow guibg=DarkYellow 21 highlight WhitespaceEOL ctermbg=DarkYellow guibg=DarkYellow 24 au BufWinEnter * let w:m0=matchadd('LongLine', '\%>80v.\+', -1) 28 au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) 30 au InsertEnter * let w:m2=matchadd('WhitespaceEOL', '\s\+\%#\@<!$', -1) 32 au InsertLeave * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) [all …]
|
| /external/clang/www/ |
| D | diagnostics.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 5 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> 6 <title>Clang - Expressive Diagnostics</title> 10 .loc { font-weight: bold; } 11 .err { color:red; font-weight: bold; } 12 .warn { color:magenta; font-weight: bold; } 13 .note { color:gray; font-weight: bold; } 14 .msg { font-weight: bold; } 15 .cmd { font-style: italic; } 17 .point { color:green; font-weight: bold; } [all …]
|
| /external/python/cpython3/Doc/extending/ |
| D | building.rst | 1 .. highlight:: c 21 instance. See :ref:`initializing-modules` for details. 23 .. highlight:: python 25 For modules with ASCII-only names, the function must be named 27 module. When using :ref:`multi-phase-initialization`, non-ASCII module names 36 suffix = b'U_' + name.encode('punycode').replace(b'-', b'_') 46 .. highlight:: c 60 .. code-block:: python3 85 meta-information to build packages, and it specifies the contents of the 87 source modules, documentation, subpackages, etc. Please refer to the distutils [all …]
|
| /external/python/cpython2/Lib/idlelib/ |
| D | config-main.def | 8 # --------------------- 9 # config-main.def the default general config file 10 # config-extensions.def the default extension config file 11 # config-highlight.def the default highlighting config file 12 # config-keys.def the default keybinding config file 15 # ------------------- 16 # ~/.idlerc/config-main.cfg the user general config file 17 # ~/.idlerc/config-extensions.cfg the user extension config file 18 # ~/.idlerc/config-highlight.cfg the user highlighting config file 19 # ~/.idlerc/config-keys.cfg the user keybinding config file [all …]
|
| /external/pdfium/xfa/fxfa/parser/ |
| D | cxfa_button.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 22 {XFA_Attribute::Highlight, XFA_AttributeType::Enum, 30 return pNode && pNode->GetElementType() == XFA_Element::Button in FromNode() 44 doc->GetHeap()->GetAllocationHandle(), 54 return JSObject()->GetEnum(XFA_Attribute::Highlight); in GetHighlight()
|
| /external/python/cpython3/Lib/idlelib/idle_test/ |
| D | test_configdialog.py | 21 'highlight': config.IdleUserConfParser(''), 29 highpage = changes['highlight'] 154 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)}} [all …]
|
| /external/sdv/vsomeip/ |
| D | README.md | 4 Copyright (C) 2015-2017, Bayerische Motoren Werke Aktiengesellschaft (BMW AG) 8 This Source Code Form is subject to the terms of the Mozilla Public 13 ---------------- 14 The vsomeip stack implements the http://some-ip.com/ (Scalable service-Oriented 18 * a second shared library for SOME/IP's service discovery (`libvsomeip3-sd.so`) 25 - A C++11 enabled compiler like gcc >= 4.8 is needed. 26 - vsomeip uses CMake as buildsystem. 27 - vsomeip uses Boost >= 1.55: 31 `sudo apt-get install libboost-system1.55-dev libboost-thread1.55-dev libboost-log1.55-dev` 34 -- URL: https://launchpad.net/~boost-latest/+archive/ubuntu/ppa [all …]
|
| /external/accompanist/sample/src/main/java/com/google/accompanist/sample/placeholder/ |
| D | DocsSamplesMaterial.kt | 2 * Copyright 2021 The Android Open Source Project 8 * https://www.apache.org/licenses/LICENSE-2.0 48 highlight = PlaceholderHighlight.fade(), in DocSample_Material_PlaceholderFade() 61 highlight = PlaceholderHighlight.shimmer(), in DocSample_Material_PlaceholderShimmer()
|