/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/ |
D | cssmin.py | 4 """`cssmin` - A Python port of the YUI CSS compressor. 37 def remove_comments(css): argument 38 """Remove all CSS comment blocks.""" 42 comment_start = css.find("/*") 46 preserve = css[comment_start + 2:comment_start + 3] == "!" 48 comment_end = css.find("*/", comment_start + 2) 51 css = css[:comment_start] 54 if css[comment_end - 1] == "\\": 63 css = css[:comment_start] + css[comment_end + 2:] 66 comment_start = css.find("/*", comment_start) [all …]
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/ |
D | MANIFEST | 33 bench/wikipedia.css 34 bench/wikipedia.min.css 44 docs/apidoc/epydoc.css 59 tests/main/atgroup_00.css 60 tests/main/atgroup_01.css 61 tests/main/atgroup_02.css 62 tests/main/atgroup_03.css 63 tests/main/atgroup_04.css 64 tests/main/atgroup_05.css 65 tests/main/atgroup_06.css [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | content_v2_1.csses.html | 82 <p class="firstline">Retrieves a single CSS domain by ID.</p> 85 <p class="firstline">Lists CSS domains affiliated with a CSS group.</p> 91 <p class="firstline">Updates labels that are assigned to a CSS domain by its CSS group.</p> 100 <pre>Retrieves a single CSS domain by ID. 103 …sDomainId](#cssDomainId), then this ID must be a CSS group ID and `cssDomainId` must be the ID of … 104 cssDomainId: string, Required. The ID of the CSS domain to return. (required) 113 { # Information about CSS domain. 114 "cssDomainId": "A String", # Output only. Immutable. The CSS domain ID. 115 …, # Output only. Immutable. The ID of the CSS group this CSS domain is affiliated with. Only popul… 116 …"displayName": "A String", # Output only. Immutable. The CSS domain's dis… [all …]
|
/external/arm-trusted-firmware/plat/arm/css/common/ |
D | css_common.mk | 8 # By default, SCP images are needed by CSS platforms. 11 # By default, SCMI driver is disabled for CSS platforms 14 PLAT_INCLUDES += -Iinclude/plat/arm/css/common/aarch64 17 PLAT_BL_COMMON_SOURCES += plat/arm/css/common/${ARCH}/css_helpers.S 19 BL1_SOURCES += plat/arm/css/common/css_bl1_setup.c 21 BL2_SOURCES += plat/arm/css/common/css_bl2_setup.c 23 BL2U_SOURCES += plat/arm/css/common/css_bl2u_setup.c 25 BL31_SOURCES += plat/arm/css/common/css_pm.c \ 26 plat/arm/css/common/css_topology.c 29 BL31_SOURCES += drivers/arm/css/mhu/css_mhu.c \ [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/reconvergence/ |
D | vktReconvergenceTests.cpp | 888 void printIndent(std::stringstream &css) in printIndent() argument 891 css << " "; in printIndent() 901 void printBallot(std::stringstream *css) in printBallot() argument 903 *css << "outputC.loc[gl_LocalInvocationIndex]++,"; in printBallot() 910 …*css << "outputB.b[(outLoc++)*invocationStride + gl_LocalInvocationIndex] = " << genPartitionBallo… in printBallot() 914 *css << "outputB.b[(outLoc++)*invocationStride + gl_LocalInvocationIndex].x = elect()"; in printBallot() 918 …*css << "outputB.b[(outLoc++)*invocationStride + gl_LocalInvocationIndex] = subgroupBallot(true).x… in printBallot() 924 std::stringstream *css = &main; in genCode() local 933 printIndent(*css); in genCode() 938 *css << "if (inputA.a[" << idx << "] == " << idx << ") {\n"; in genCode() [all …]
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-docs.js | 49 $("body").css({'overflow':'auto'}); 50 $("html").css({'overflow':'auto'}); 51 $("#body-content").css({'position':'relative', 'top':'0'}); 52 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'}); 53 $("#side-nav").css({'padding':'0'}); 54 $("#nav-tree").css({'overflow-y': 'auto'}); 78 content.css({marginLeft:parseInt(navWidth) + 6 + "px"}); //account for 6px-wide handle-bar 81 …content.css({width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"}); // necessary in order … 84 sidenav.css({width:navWidth}); 85 resizePackagesNav.css({width:navWidth}); [all …]
|
/external/google-styleguide/ |
D | htmlcssguide.html | 5 <title>Google HTML/CSS Style Guide</title> 6 <link rel="stylesheet" href="javaguide.css"> 13 <h1>Google HTML/CSS Style Guide</h1> 16 <p>This document defines formatting and style rules for HTML and CSS. It aims at 18 It applies to raw, working files that use HTML and CSS, including GSS files. 45 <pre><code class="language-css prettyprint badcode">/* Not recommended: omits the protocol */ 46 @import '//fonts.googleapis.com/css?family=Open+Sans'; 49 @import 'http://fonts.googleapis.com/css?family=Open+Sans'; 52 <pre><code class="language-css prettyprint">/* Recommended */ 53 @import 'https://fonts.googleapis.com/css?family=Open+Sans'; [all …]
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssTokens.java | 41 * Given a string of CSS, produces a string of normalized CSS with certain 85 public static CssTokens lex(String css) { in lex() argument 86 Lexer lexer = new Lexer(css); in lex() 291 * Tokenizes according to section 4 of http://dev.w3.org/csswg/css-syntax/ 294 private final String css; field in CssTokens.Lexer 329 Lexer(String css) { in Lexer() argument 330 this.css = css; in Lexer() 332 this.cssLimit = css.length(); in Lexer() 430 String css = this.css; in lex() local 435 + " in `" + css + "`"; in lex() local [all …]
|
/external/arm-trusted-firmware/plat/arm/css/common/sp_min/ |
D | css_sp_min.mk | 7 # SP MIN source files common to CSS platforms 8 BL32_SOURCES += plat/arm/css/common/css_pm.c \ 9 plat/arm/css/common/css_topology.c 12 BL32_SOURCES += drivers/arm/css/mhu/css_mhu.c \ 13 drivers/arm/css/scp/css_pm_scpi.c \ 14 drivers/arm/css/scpi/css_scpi.c 16 BL32_SOURCES += drivers/arm/css/mhu/css_mhu_doorbell.c \ 17 drivers/arm/css/scp/css_pm_scmi.c \ 18 drivers/arm/css/scmi/scmi_common.c \ 19 drivers/arm/css/scmi/scmi_pwr_dmn_proto.c \ [all …]
|
/external/python/cpython2/Doc/tools/static/ |
D | sidebar.js | 37 var bw_margin_expanded = bodywrapper.css('margin-left'); 46 var dark_color = $('.related').css('background-color'); 47 var light_color = $('.document').css('background-color'); 71 sidebar.css('width', ssb_width_collapsed); 72 bodywrapper.css('margin-left', bw_margin_collapsed); 73 sidebarbutton.css({ 83 bodywrapper.css('margin-left', bw_margin_expanded); 84 sidebar.css('width', ssb_width_expanded); 86 sidebarbutton.css({ 96 sidebarwrapper.css({ [all …]
|
D | copybutton.js | 10 pre.parent().parent().css('position', 'relative'); 13 var border_width = pre.css('border-top-width'); 14 var border_style = pre.css('border-top-style'); 15 var border_color = pre.css('border-top-color'); 28 button.css(button_styles) 47 button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'hidden'); 48 button.css('text-decoration', 'line-through'); 54 button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'visible'); 55 button.css('text-decoration', 'none');
|
/external/deqp/external/vulkancts/modules/vulkan/memory_model/ |
D | vktMemoryModelMessagePassing.cpp | 404 std::stringstream css; in initPrograms() local 405 css << "#version 450 core\n"; in initPrograms() 408 css << "#pragma use_vulkan_memory_model\n"; in initPrograms() 412 css << in initPrograms() 416 css << in initPrograms() 430 css << "layout(local_size_x_id = 0, local_size_y_id = 0, local_size_z = 1) in;\n"; in initPrograms() 465 …case SC_PHYSBUFFER: css << "layout(buffer_reference) buffer PayloadRef { " << typeStr << " x[]; };… in initPrograms() 467 …case SC_BUFFER: css << "layout(set=0, binding=0) " << memqual << " buffer Payload { " << typeStr … in initPrograms() 470 css << "layout(set=0, binding=0, r32ui) uniform " << memqual << " uimage2D payload;\n"; in initPrograms() 472 css << "layout(set=0, binding=0, r32f) uniform " << memqual << " image2D payload;\n"; in initPrograms() [all …]
|
/external/wayland/doc/publican/ |
D | Makefile.am | 6 # * hand-written chapters and CSS files are located in sources. These are 40 $(srcdir)/sources/css/brand.css \ 41 $(srcdir)/sources/css/common.css \ 42 $(srcdir)/sources/css/default.css \ 43 $(srcdir)/sources/css/epub.css \ 44 $(srcdir)/sources/css/print.css 66 --stringparam html.stylesheet=css/default.css 69 alldirs := $(builddir)/en-US $(builddir)/en-US/images $(html_destdir) $(html_destdir)/css $(html_de… 72 html_css_targets = $(addprefix $(html_destdir)/css/,$(notdir $(css_sources))) 82 $(html_destdir)/css/%: $(srcdir)/sources/css/% | $(html_destdir)/css [all …]
|
/external/igt-gpu-tools/tools/ |
D | intel_firmware_decode.c | 196 struct intel_css_header *css = ctx->css_header; in dump_css() local 198 printf("CSS header (%zd bytes)\n", sizeof(*css)); in dump_css() 199 printf(" module_type: %s (%d)\n", module_type_name(css->module_type), in dump_css() 200 css->module_type); in dump_css() 201 print_d32(css, header_len); in dump_css() 202 print_x32(css, header_ver); in dump_css() 203 print_x32(css, module_id); in dump_css() 204 print_x32(css, module_vendor); in dump_css() 205 print_x32(css, date); in dump_css() 206 print_d32(css, size); in dump_css() [all …]
|
/external/wayland/doc/publican/sources/ |
D | meson.build | 92 'css/brand.css', 93 'css/common.css', 94 'css/default.css', 95 'css/epub.css', 96 'css/print.css' 101 install_dir: join_paths(publican_install_prefix, publican_html_dir, 'css')
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/docs/ |
D | BENCHMARKS | 1 $ python3.4 -OO bench/main.py bench/*.css 5 Benchmarking 'bench/wikipedia.css'... (81.0 KiB) 10 Benchmarking 'bench/wikipedia.min.css'... (49.4 KiB) 16 $ python3.3 -OO bench/main.py bench/*.css 20 Benchmarking 'bench/wikipedia.css'... (81.0 KiB) 25 Benchmarking 'bench/wikipedia.min.css'... (49.4 KiB) 31 $ python3.2 -OO bench/main.py bench/*.css 35 Benchmarking 'bench/wikipedia.css'... (81.0 KiB) 40 Benchmarking 'bench/wikipedia.min.css'... (49.4 KiB) 46 $ python2.7 -OO bench/main.py bench/*.css [all …]
|
/external/libopus/doc/ |
D | build_isobmff.sh | 36 CSS=${HTML%%.html}.css 38 wget -q http://vfrmaniac.fushizen.eu/style.css -O ${CSS} 41 cat ${HTML} | sed -e "s/\\.\\.\\/style.css/${CSS}/" > ${HTML}+ && mv ${HTML}+ ${HTML} 46 cat ${CSS} | sed -e 's/ *$//g' > ${CSS}+ && mv ${CSS}+ ${CSS}
|
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
D | vktComputeCooperativeMatrixTests.cpp | 282 std::stringstream css; in initPrograms() local 283 css << "#version 450 core\n"; in initPrograms() 284 css << "#pragma use_vulkan_memory_model\n"; in initPrograms() 285 css << in initPrograms() 306 css << "#pragma use_variable_pointers\n"; in initPrograms() 342 css << "const int workgroupsX = " << m_data.workgroupsX << ";\n"; in initPrograms() 343 …css << "const uvec2 subgroupsPerWG = uvec2(" << m_data.subgroupsPerWorkgroupX << ", " << m_data.su… in initPrograms() 347 css << "layout(buffer_reference) buffer InputA { " << typeStrA << " x[]; };\n"; in initPrograms() 348 css << "layout(buffer_reference) buffer InputB { " << typeStrB << " x[]; };\n"; in initPrograms() 349 css << "layout(buffer_reference) buffer InputC { " << typeStrC << " x[]; };\n"; in initPrograms() [all …]
|
/external/testng/ |
D | testng-1.0.dtd.php | 5 <link rel="stylesheet" href="testng.css" type="text/css" /> 6 <link type="text/css" rel="stylesheet" href="http://beust.com/beust.css" /> 15 <link type="text/css" rel="stylesheet" href="http://beust.com/styles/shCore.css"/> 16 <link type="text/css" rel="stylesheet" href="http://beust.com/styles/shThemeCedric.css"/> 23 <style type="text/css">
|
/external/bzip2/ |
D | bz-html.xsl | 2 <!DOCTYPE xsl:stylesheet [ <!ENTITY bz-css SYSTEM "./bzip.css"> ]> 13 <!-- we include the css as link and directly when generating one large file --> 16 <![CDATA[<]]>link rel="stylesheet" type="text/css" href="bzip.css" /> 18 <style type="text/css" media="screen"> 19 <xsl:text>&bz-css;</xsl:text>
|
/external/parameter-framework/upstream/doc/requirements/ |
D | CMakeLists.txt | 39 configure_file(requirements.css 40 ${CMAKE_CURRENT_BINARY_DIR}/requirements.css 48 DEPENDS requirements.md requirements.css 56 --css requirements.css # this path is relative to the html doc 57 --css http://sindresorhus.com/github-markdown-css/github-markdown.css
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/_data/ |
D | variables.yml | 44 font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css' 50 css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css' 55 font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css' 61 css: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.css'
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/_data/ |
D | variables.yml | 44 font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css' 50 css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css' 55 font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css' 61 css: 'https://unpkg.com/gitalk@1.2.2/dist/gitalk.css'
|
/external/deqp/external/vulkancts/modules/vulkan/ray_query/ |
D | vktRayQueryTraversalControlTests.cpp | 1318 std::stringstream css; in initPrograms() local 1319 css << in initPrograms() 1335 rayQueryTest[BTT_TRIANGLES].push_back(css.str()); in initPrograms() 1340 std::stringstream css; in initPrograms() local 1341 css << in initPrograms() 1357 rayQueryTest[BTT_AABBS].push_back(css.str()); in initPrograms() 1362 std::stringstream css; in initPrograms() local 1363 css << in initPrograms() 1378 rayQueryTest[BTT_TRIANGLES].push_back(css.str()); in initPrograms() 1383 std::stringstream css; in initPrograms() local [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/ |
D | README.md | 3 …ulate ShadowDOM style encapsulation (ScopingShim), a shim for the proposed CSS mixin `@apply` synt… 35 ScopingShim provides simulated ShadyDOM style encapsulation, and a shim for CSS Custom Properties. 38 Additionally, if CSS Custom Properties is not detected, ScopingShim will replace CSS Custom Propert… 92 …yntax proposed at https://tabatkins.github.io/specs/css-apply-rule/, which expands the definition … 94 This is done by transforming the block definition into a set of CSS Custom Properties, and replacin… 98 …f the ::part/::theme [Shadow Parts spec](https://tabatkins.github.io/specs/css-shadow-parts/). The… 104 …ans that using both `background-color: green;` and `background: red;` in two separate CSS selectors 107 ```css 115 ```css 131 ```css [all …]
|