/external/skia/tools/svg/ |
D | svgs.txt | 1 https://upload.wikimedia.org/wikipedia/commons/f/fd/Ghostscript_Tiger.svg 2 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/car.svg 3 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/rg1024_green_grapes.svg 4 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/gallardo.svg 5 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/cartman.svg 6 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/bzrfeed.svg 7 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/android.svg 8 https://upload.wikimedia.org/wikipedia/commons/d/df/Seal_of_American_Samoa.svg 9 https://upload.wikimedia.org/wikipedia/commons/e/e7/Seal_of_Illinois.svg 10 …/upload.wikimedia.org/wikipedia/commons/6/63/A_large_blank_world_map_with_oceans_marked_in_blue.svg [all …]
|
D | svgs_parse_only.txt | 1 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/AJ_Digital_Camera.svg 2 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/acid.svg 3 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/alphachannel.svg 4 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/bozo.svg 5 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/compass.svg 6 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/displayWebStats.svg 7 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/eff.svg 8 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/fsm.svg 9 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/usaf.svg 10 https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/yinyang.svg [all …]
|
/external/skia/modules/svg/ |
D | svg.gni | 5 # //modules/svg/include/BUILD.bazel 6 # //modules/svg/src/BUILD.bazel 12 # Generated by Bazel rule //modules/svg/include:public_hdrs 14 "$_modules/svg/include/SkSVGAttribute.h", 15 "$_modules/svg/include/SkSVGAttributeParser.h", 16 "$_modules/svg/include/SkSVGCircle.h", 17 "$_modules/svg/include/SkSVGClipPath.h", 18 "$_modules/svg/include/SkSVGContainer.h", 19 "$_modules/svg/include/SkSVGDOM.h", 20 "$_modules/svg/include/SkSVGDefs.h", [all …]
|
D | BUILD.gn | 14 skia_component("svg") { 16 import("svg.gni") 42 public_deps = [ ":svg" ] 56 ":svg", 63 group("svg") {
|
/external/freetype/src/sfnt/ |
D | ttsvg.c | 82 Svg* svg = NULL; in tt_face_load_svg() local 97 if ( FT_NEW( svg ) ) in tt_face_load_svg() 101 svg->version = FT_NEXT_USHORT( p ); in tt_face_load_svg() 109 svg->svg_doc_list = (FT_Byte*)( table + offsetToSVGDocumentList ); in tt_face_load_svg() 111 p = svg->svg_doc_list; in tt_face_load_svg() 112 svg->num_entries = FT_NEXT_USHORT( p ); in tt_face_load_svg() 114 FT_TRACE3(( "version: %d\n", svg->version )); in tt_face_load_svg() 115 FT_TRACE3(( "number of entries: %d\n", svg->num_entries )); in tt_face_load_svg() 118 svg->num_entries * SVG_DOCUMENT_RECORD_SIZE > table_size ) in tt_face_load_svg() 121 svg->table = table; in tt_face_load_svg() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | icons.qrc | 3 <file alias="wpa_gui.svg">icons/wpa_gui.svg</file> 4 <file alias="ap.svg">icons/ap.svg</file> 5 <file alias="laptop.svg">icons/laptop.svg</file> 6 <file alias="group.svg">icons/group.svg</file> 7 <file alias="invitation.svg">icons/invitation.svg</file>
|
/external/skia/modules/canvaskit/ |
D | BUILD.gn | 16 "../../modules/svg/src/SkSVGAttribute.cpp", 17 "../../modules/svg/src/SkSVGAttributeParser.cpp", 18 "../../modules/svg/src/SkSVGCircle.cpp", 19 "../../modules/svg/src/SkSVGClipPath.cpp", 20 "../../modules/svg/src/SkSVGContainer.cpp", 21 "../../modules/svg/src/SkSVGDOM.cpp", 22 "../../modules/svg/src/SkSVGEllipse.cpp", 23 "../../modules/svg/src/SkSVGFe.cpp", 24 "../../modules/svg/src/SkSVGFeColorMatrix.cpp", 25 "../../modules/svg/src/SkSVGFeComposite.cpp", [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/ |
D | README | 3 To convert the svg icons to other formats, make sure inkscape and imagemagick 7 wpa_gui.svg 16 ap.svg 19 mystica_Wireless_Router.svg 29 laptop.svg 32 metalmarious_Laptop.svg 42 group.svg 46 http://www.openclipart.org/people/Anonymous/Anonymous_Network.svg 61 invitation.svg 65 http://www.openclipart.org/people/jean_victor_balin/jean_victor_balin_unknown_green.svg
|
/external/fonttools/Tests/subset/ |
D | svg_test.py | 9 from fontTools.subset.svg import NAMESPACES, ranges 56 svg = new_svg() 57 etree.SubElement(svg, "path", {"id": f"glyph{i}", "d": f"M{i},{i}"}) 58 svg_docs.append((etree.tostring(svg).decode(), i, i)) 66 svg = new_svg(id=f"glyph{i}") 67 etree.SubElement(svg, "path", {"d": f"M{i},{i}"}) 68 svg_docs.append((etree.tostring(svg).decode(), i, i)) 493 svg = new_svg() 494 etree.SubElement(svg, "rect", {"id": "glyph1", "x": "1", "y": "2"}) 495 font["SVG "].docList.append((etree.tostring(svg).decode(), 1, 1)) [all …]
|
/external/libabigail/tests/ |
D | test-svg.cc | 14 svg obj("sa-base"); in main() 23 svg obj("sa-A"); in main() 42 svg obj("sa-B"); in main() 59 svg obj("sa-C1"); in main() 72 svg obj("sa-C2"); in main() 89 svg obj("sa-C3"); in main() 106 svg obj("sa-D1"); in main() 125 svg obj("sa-D2"); in main() 148 svg obj("sa-D2v"); in main() 173 svg obj("sa-D3"); in main() [all …]
|
/external/testng/ |
D | README.md | 1 [![Build Status](http://img.shields.io/travis/cbeust/testng.svg)](https://travis-ci.org/cbeust/test… 2 …tps://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG.svg?label="Java9 EA")](… 3 …mg.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG-Jigsaw.svg?label="Java9 Jigsaw… 4 [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/cbeust/testng?svg=true)](https://ci… 5 [![Dependency Status](https://www.versioneye.com/user/projects/553a031c4e5d2e9408000059/badge.svg)]… 6 [![Reference Status](https://www.versioneye.com/java/org.testng:testng/reference_badge.svg)](https:… 7 [![Maven Central](https://img.shields.io/maven-central/v/org.testng/testng.svg)](https://maven-badg… 8 [![License](https://img.shields.io/github/license/cbeust/testng.svg)](https://www.apache.org/licens… 9 …//img.shields.io/sonar/http/nemo.sonarqube.org/org.testng:testng/tech_debt.svg?label=Sonarqube%20t…
|
/external/fonttools/Tests/svgLib/path/ |
D | path_test.py | 44 svg = SVGPath(tmp.name) 45 svg.draw(pen) 53 svg = SVGPath.fromstring(SVG_DATA) 54 svg.draw(pen) 60 svg = SVGPath.fromstring(SVG_DATA, 62 svg.draw(pen)
|
/external/rust/crates/plotters-svg/ |
D | METADATA | 2 # Usage: tools/external_updater/updater.sh update rust/crates/plotters-svg 5 name: "plotters-svg" 10 value: "https://crates.io/crates/plotters-svg" 14 value: "https://static.crates.io/crates/plotters-svg/plotters-svg-0.3.3.crate"
|
/external/fonttools/Lib/fontTools/subset/ |
D | svg.py | 128 svg: etree.Element, glyph_index_map: Dict[int, int] 132 elements = group_elements_by_id(svg) 167 def update_glyph_href_links(svg: etree.Element, id_map: Dict[str, str]) -> None: 169 for el in xpath(".//svg:*[starts-with(@xlink:href, '#glyph')]")(svg): 215 svg = etree.fromstring( 231 elements = group_elements_by_id(svg) 236 if not subset_elements(svg, element_ids): 240 id_map = remap_glyph_ids(svg, glyph_index_map) 241 update_glyph_href_links(svg, id_map) 243 new_doc = etree.tostring(svg, pretty_print=s.options.pretty_svg).decode("utf-8")
|
/external/rust/pica/static/src/components/ |
D | Map.js | 15 import { LitElement, css, html, svg } from "lit"; 118 const svg = this.renderRoot.children[0]; 119 const point = svg.createSVGPoint(); 122 return point.matrixTransform(svg.getScreenCTM().inverse()); 180 (device, i) => svg` 193 ? svg` 212 : svg`
|
/external/pigweed/pw_console/ |
D | BUILD.gn | 22 "images/calculator_plugin.svg", 23 "images/clock_plugin1.svg", 24 "images/clock_plugin2.svg", 25 "images/2048_plugin1.svg", 26 "images/command_runner_main_menu.svg", 29 "images/serial_debug.svg",
|
/external/cpu_features/ci/ |
D | README.md | 9 [freebsd_svg]: https://github.com/google/cpu_features/actions/workflows/amd64_freebsd.yml/badge.svg… 12 [linux_svg]: https://github.com/google/cpu_features/actions/workflows/amd64_linux.yml/badge.svg?bra… 14 …]: https://github.com/google/cpu_features/actions/workflows/aarch64_linux.yml/badge.svg?branch=main 16 [linux_arm_svg]: https://github.com/google/cpu_features/actions/workflows/arm_linux.yml/badge.svg?b… 18 [linux_mips_svg]: https://github.com/google/cpu_features/actions/workflows/mips_linux.yml/badge.svg… 21 [macos_svg]: https://github.com/google/cpu_features/actions/workflows/amd64_macos.yml/badge.svg?bra… 24 [windows_svg]: https://github.com/google/cpu_features/actions/workflows/amd64_windows.yml/badge.svg… 59 ![docker](doc/docker.svg)
|
/external/rust/crates/rand_xorshift/ |
D | README.md | 3 [![Build Status](https://travis-ci.org/rust-random/rngs.svg)](https://travis-ci.org/rust-random/rng… 4 [![Build Status](https://ci.appveyor.com/api/projects/status/github/rust-random/rngs?svg=true)](htt… 5 [![Latest version](https://img.shields.io/crates/v/rand_xorshift.svg)](https://crates.io/crates/ran… 6 [![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/) 7 [![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/ran… 8 [![API](https://docs.rs/rand_xorshift/badge.svg)](https://docs.rs/rand_xorshift) 9 [![Minimum rustc version](https://img.shields.io/badge/rustc-1.32+-lightgray.svg)](https://github.c…
|
/external/libabigail/src/ |
D | abg-viz-svg.cc | 22 svg::write() in write() 42 svg::start_element() 46 <svg version="1.1" 50 xmlns:svg="http://www.w3.org/2000/svg" 76 _M_sstream << "</svg>" << std::endl;
|
/external/rust/crates/bitflags/ |
D | README.md | 4 [![Rust](https://github.com/bitflags/bitflags/workflows/Rust/badge.svg)](https://github.com/bitflag… 5 [![Join the chat at https://gitter.im/bitflags/Lobby](https://badges.gitter.im/Join%20Chat.svg)](ht… 6 [![Latest version](https://img.shields.io/crates/v/bitflags.svg)](https://crates.io/crates/bitflags) 7 [![Documentation](https://docs.rs/bitflags/badge.svg)](https://docs.rs/bitflags) 8 ![License](https://img.shields.io/crates/l/bitflags.svg)
|
/external/rust/crates/crossbeam-deque/ |
D | README.md | 3 [![Build Status](https://github.com/crossbeam-rs/crossbeam/workflows/CI/badge.svg)]( 5 [![License](https://img.shields.io/badge/license-MIT_OR_Apache--2.0-blue.svg)]( 7 [![Cargo](https://img.shields.io/crates/v/crossbeam-deque.svg)]( 9 [![Documentation](https://docs.rs/crossbeam-deque/badge.svg)]( 11 [![Rust 1.38+](https://img.shields.io/badge/rust-1.38+-lightgray.svg)]( 13 [![chat](https://img.shields.io/discord/569610676205781012.svg?logo=discord)](https://discord.com/i…
|
/external/ot-br-posix/ |
D | README.md | 1 …svg]][ot-gh-action-build] [![Docker Status][ot-gh-action-docker-svg]][ot-gh-action-docker] [![Buil… 15 <img src="/doc/images/certified.svg" alt="Thread Certified Component" width="150px" align="right"> 32 [ot-gh-action-build-svg]: https://github.com/openthread/ot-br-posix/workflows/Build/badge.svg?branc… 34 [ot-gh-action-docker-svg]: https://github.com/openthread/ot-br-posix/workflows/Docker/badge.svg?bra… 36 [otbr-travis-svg]: https://travis-ci.org/openthread/ot-br-posix.svg?branch=main 38 [otbr-codecov-svg]: https://codecov.io/gh/openthread/ot-br-posix/branch/main/graph/badge.svg
|
/external/openthread/ |
D | README.md | 1 …svg]][ot-gh-action-build] [![Simulation][ot-gh-action-simulation-svg]][ot-gh-action-simulation] [!… 7 …https://cdn.rawgit.com/openthread/openthread/ab4c4e1e/doc/images/certified.svg" alt="Thread Certif… 20 [ot-gh-action-build-svg]: https://github.com/openthread/openthread/workflows/Build/badge.svg?branch… 22 [ot-gh-action-simulation-svg]: https://github.com/openthread/openthread/workflows/Simulation/badge.… 24 [ot-gh-action-docker-svg]: https://github.com/openthread/openthread/workflows/Docker/badge.svg?bran… 26 [ot-lgtm-svg]: https://img.shields.io/lgtm/grade/cpp/g/openthread/openthread.svg?logo=lgtm&logoWidt… 28 [ot-codecov-svg]: https://codecov.io/gh/openthread/openthread/branch/main/graph/badge.svg
|
/external/rust/crates/der_derive/ |
D | README.md | 38 [crate-image]: https://img.shields.io/crates/v/der_derive.svg 40 [docs-image]: https://docs.rs/der_derive/badge.svg 42 [build-image]: https://github.com/RustCrypto/formats/actions/workflows/der.yml/badge.svg 44 [license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg 45 [rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg 46 [chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
|
/external/rust/crates/atty/ |
D | README.md | 3 …svg?branch=master)](https://travis-ci.org/softprops/atty) [![Build status](https://ci.appveyor.com…
|