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

1 2

  /external/skia/experimental/docs/
backend.js 10 case 'SVG':
24 case 'SVG':
38 case 'SVG':
  /external/skia/src/svg/parser/
SkSVGSVG.h 16 DECLARE_SVG_INFO(SVG);
SkSVGSVG.cpp 29 DEFINE_SVG_INFO(SVG)
SkSVGParser.cpp 192 if (strncmp(name, "svg", len) == 0) {
213 if (strncmp(name, "svg", len) != 0)
379 CASE_NEW(SVG);
427 {"svg", SkSVGType_SVG},
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/svg/
svg.go 5 // Package svg provides tools related to handling of SVG files
6 package svg package
15 viewBox = regexp.MustCompile(`<svg\s*width="[^"]+"\s*height="[^"]+"\s*viewBox="[^"]+"`)
17 svgClose = regexp.MustCompile(`</svg>`)
20 // Massage enhances the SVG output from DOT to provide better
24 svg := string(in.Bytes())
27 // resulting on unparsable SVG.
28 svg = strings.Replace(svg, "&;", "&amp;;", -1
    [all...]
svgpan.go 0 // SVG pan and zoom library.
4 package svg package
14 * element), including the the library into any SVG adds the following capabilities:
99 //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
109 * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
121 alert('Unable to obtain SVG root element');
253 evt.target.tagName == "svg"
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/svg/
svg.go 5 // Package svg provides tools related to handling of SVG files
6 package svg package
15 viewBox = regexp.MustCompile(`<svg\s*width="[^"]+"\s*height="[^"]+"\s*viewBox="[^"]+"`)
17 svgClose = regexp.MustCompile(`</svg>`)
20 // Massage enhances the SVG output from DOT to provide better
24 svg := string(in.Bytes())
27 // resulting on unparsable SVG.
28 svg = strings.Replace(svg, "&;", "&amp;;", -1
    [all...]
svgpan.go 0 // SVG pan and zoom library.
4 package svg package
14 * element), including the the library into any SVG adds the following capabilities:
99 //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
109 * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
121 alert('Unable to obtain SVG root element');
253 evt.target.tagName == "svg"
  /external/opencv3/doc/pattern_tools/
gen_pattern.py 5 python gen_pattern.py -o out.svg -r 11 -c 8 -T circles -s 20.0 -R 5.0 -u mm -w 216 -h 279
7 -o, --output - output file (default out.svg)
34 self.g = SVG("g") # the svg group container
41 dot = SVG("circle", cx=x * spacing, cy=y * spacing, r=r, fill="black")
49 dot = SVG("circle", cx= ((j*2 + i%2)*spacing) + spacing, cy=self.height - (i * spacing + spacing), r=r, fill="black")
57 dot = SVG("rect", x=x * spacing, y=y * spacing, width=spacing, height=spacing, stroke_width="0", fill="black")
75 output = "out.svg"
svgfig.py 36 _default_fileName = "tmp.svg"
43 """Create an SVG color string "#xxyyzz" from r, g, and b.
68 class SVG:
69 """A tree representation of an SVG image or image fragment.
71 SVG(t, sub, sub, sub..., attribute=value)
73 t required SVG type name
74 sub optional list nested SVG elements or text/Unicode
75 attribute=value pairs optional keywords SVG attributes
79 SVG in XML
86 SVG in Pytho
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
tokenizer_proxy.js 81 if (tn === $.SVG)
82 this._enterNamespace(NS.SVG);
119 else if ((tn === $.SVG && this.currentNamespace === NS.SVG) ||
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
html.js 6 SVG: 'http://www.w3.org/2000/svg',
161 SVG: 'svg',
265 SPECIAL_ELEMENTS[NS.SVG] = {};
266 SPECIAL_ELEMENTS[NS.SVG][$.TITLE] = true;
267 SPECIAL_ELEMENTS[NS.SVG][$.FOREIGN_OBJECT] = true;
268 SPECIAL_ELEMENTS[NS.SVG][$.DESC] = true;
foreign_content.js 101 //SVG tag names adjustment map
256 return ns === NS.SVG && (tn === $.FOREIGN_OBJECT || tn === $.DESC || tn === $.TITLE);
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
History.md 11 * Fix loading the polyfill in an SVG document
  /external/netperf/doc/examples/
bloat.sh 106 $RRDTOOL graph bloat.svg --imgformat SVG \
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
open_element_stack.js 47 return ns === NS.SVG;
59 return ns === NS.SVG;
73 return tn === $.FOREIGN_OBJECT && ns === NS.SVG;
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/serialization/
serializer.js 89 qualifiedTn = (ns === NS.HTML || ns === NS.SVG || ns === NS.MATHML) ? tn : (ns + ':' + tn);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/
test_utils.js 153 case HTML.NAMESPACES.SVG:
154 return 'svg ';
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/
commands.go 21 "cmd/pprof/internal/svg"
70 // Save SVG output into a file after including svgpan library
71 "svg": {c, report.Dot, saveSVGToFile(), false, "Outputs a graph in SVG format"},
74 "eog": {c, report.Dot, invokeVisualizer(interactive, invokeDot("svg"), "svg", []string{"eog"}), false, "Visualize graph through eog"},
77 "web": {c, report.Dot, invokeVisualizer(interactive, saveSVGToFile(), "svg", browsers()), false, "Visualize graph through web browser"},
179 generateSVG := invokeDot("svg")
180 divert := awayFromTTY("svg")
185 fmt.Fprint(massaged, svg.Massage(*baseSVG)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/
commands.go 21 "cmd/pprof/internal/svg"
70 // Save SVG output into a file after including svgpan library
71 "svg": {c, report.Dot, saveSVGToFile(), false, "Outputs a graph in SVG format"},
74 "eog": {c, report.Dot, invokeVisualizer(interactive, invokeDot("svg"), "svg", []string{"eog"}), false, "Visualize graph through eog"},
77 "web": {c, report.Dot, invokeVisualizer(interactive, saveSVGToFile(), "svg", browsers()), false, "Visualize graph through web browser"},
179 generateSVG := invokeDot("svg")
180 divert := awayFromTTY("svg")
185 fmt.Fprint(massaged, svg.Massage(*baseSVG)
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
open_element_stack_test.js 307 stack.push(treeAdapter.createElement($.TITLE, NS.SVG, []));
324 stack.push(treeAdapter.createElement($.TITLE, NS.SVG, []));
  /external/jemalloc/bin/
jeprof.in 197 --web Generate SVG and display
204 --svg Generate SVG to stdout
404 "svg!" => \$main::opt_svg,
632 my $tmp = TempName($main::next_tmpfile, "svg");
776 # OS X: open will use standard preference for SVG files.
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
parse5.js 238 //SVG tag names adjustment map
393 return ns === NS.SVG && (tn === $.FOREIGN_OBJECT || tn === $.DESC || tn === $.TITLE);
402 SVG: 'http://www.w3.org/2000/svg',
557 SVG: 'svg',
661 SPECIAL_ELEMENTS[NS.SVG] = {};
662 SPECIAL_ELEMENTS[NS.SVG][$.TITLE] = true;
663 SPECIAL_ELEMENTS[NS.SVG][$.FOREIGN_OBJECT] = true;
664 SPECIAL_ELEMENTS[NS.SVG][$.DESC] = true
    [all...]
  /external/ImageMagick/www/api/
color.php 12 <meta name="description" content="ImageMagick® is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-2000, GIF, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves."/>
187 <p>Adhere to this color standard: SVG, X11, or XPM.</p>
  /external/libxml2/
Makefile.am 698 @echo "## SVG parsing regression tests"
699 -@(for i in $(srcdir)/test/SVG/* ; do \
702 if [ ! -f $(srcdir)/result/SVG/$$name ] ; then \
704 $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/SVG/$$name ; \
710 diff $(srcdir)/result/SVG/$$name result.$$name ; \
    [all...]

Completed in 510 milliseconds

1 2