/external/webkit/WebCore/svg/ |
D | SVGParserUtilities.cpp | 224 …void calculateArc(bool relative, double& curx, double& cury, double angle, double x, double y, dou… 247 bool relative = false; in parseSVG() local 252 relative = true; in parseSVG() 259 subpathx = curx = relative ? curx + tox : tox; in parseSVG() 260 subpathy = cury = relative ? cury + toy : toy; in parseSVG() 264 … svgMoveTo(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), closed, !relative); in parseSVG() 269 relative = true; in parseSVG() 276 curx = relative ? curx + tox : tox; in parseSVG() 277 cury = relative ? cury + toy : toy; in parseSVG() 282 svgLineTo(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), !relative); in parseSVG() [all …]
|
/external/skia/src/animator/ |
D | SkParseSVGPath.cpp | 100 bool isRelative, SkPoint* relative) in find_points() argument 105 value[index].fX += relative->fX; in find_points() 106 value[index].fY += relative->fY; in find_points() 113 bool isRelative, SkScalar relative) in find_scalar() argument 117 *value += relative; in find_scalar() 130 bool relative = false; in parseSVG() local 142 relative = false; in parseSVG() 145 relative = true; in parseSVG() 152 data = find_points(data, points, 1, relative, &c); in parseSVG() 158 data = find_points(data, points, 1, relative, &c); in parseSVG() [all …]
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
D | SDL_mouse.c | 103 int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative, Sint16 x, Sint16 y) in SDL_PrivateMouseMotion() argument 122 if ( relative ) { in SDL_PrivateMouseMotion() 152 if ( ! relative ) { in SDL_PrivateMouseMotion()
|
D | SDL_events_c.h | 58 extern int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative,
|
/external/dbus/bus/ |
D | test.c | 298 DBusString relative; in bus_context_new_test() local 315 _dbus_string_init_const (&relative, filename); in bus_context_new_test() 317 if (!_dbus_concat_dir_and_file (&config_file, &relative)) in bus_context_new_test()
|
/external/webkit/JavaScriptCore/assembler/ |
D | ARMv7Assembler.h | 1509 intptr_t relative = to.m_offset - from.m_offset; in linkJump() local 1511 linkWithOffset(location, relative); in linkJump() 1519 intptr_t relative = reinterpret_cast<intptr_t>(to) - reinterpret_cast<intptr_t>(location); in linkJump() local 1521 linkWithOffset(location, relative); in linkJump() 1545 intptr_t relative = reinterpret_cast<intptr_t>(to) - reinterpret_cast<intptr_t>(from); in relinkJump() local 1546 linkWithOffset(reinterpret_cast<uint16_t*>(from), relative); in relinkJump() 1636 static void linkWithOffset(uint16_t* instruction, intptr_t relative) in linkWithOffset() argument 1639 if (((relative << 7) >> 7) != relative) { in linkWithOffset() 1646 if (relative >= 0) in linkWithOffset() 1647 relative ^= 0xC00000; in linkWithOffset() [all …]
|
/external/libpcap/ |
D | wlan_filtering.patch | 13 OR_NET, /* relative to the network-layer header */ 14 OR_NET_NOSNAP, /* relative to the network-layer header, with no SNAP header at the link layer */ 15 OR_TRAN_IPV4, /* relative to the transport-layer header, with IPv4 network layer */ 16 - OR_TRAN_IPV6 /* relative to the transport-layer header, with IPv6 network layer */ 17 + OR_TRAN_IPV6, /* relative to the transport-layer header, with IPv6 network layer */ 43 + * Load a value relative to the beginning of the link-layer header after the 802.11 176 * Load a value relative to the beginning of the specified header.
|
/external/skia/emoji/ |
D | EmojiFont.cpp | 132 uint16_t relative = unichar - GMOJI_PUA_MIN; in UnicharToGlyph() local 133 int index = SkTSearch<uint16_t>(gGmojiPUA, GMOJI_PUA_COUNT, relative, in UnicharToGlyph()
|
/external/webkit/WebCore/platform/ |
D | KURLGoogle.cpp | 173 const String& relative, in init() argument 176 init(base, relative.characters(), relative.length(), queryEncoding); in init() 367 KURL::KURL(const KURL& base, const String& relative) in KURL() argument 369 m_url.init(base, relative, 0); in KURL() 375 const String& relative, in KURL() argument 378 m_url.init(base, relative, &encoding.encodingForFormSubmission()); in KURL()
|
D | KURL.h | 75 KURL(const KURL& base, const String& relative); 76 KURL(const KURL& base, const String& relative, const TextEncoding&);
|
D | KURLGooglePrivate.h | 55 void init(const KURL& base, const String& relative,
|
D | KURL.cpp | 317 KURL::KURL(const KURL& base, const String& relative) in KURL() argument 319 init(base, relative, UTF8Encoding()); in KURL() 322 KURL::KURL(const KURL& base, const String& relative, const TextEncoding& encoding) in KURL() argument 328 init(base, relative, encoding.encodingForFormSubmission()); in KURL() 331 void KURL::init(const KURL& base, const String& relative, const TextEncoding& encoding) in init() argument 336 m_string = relative; in init() 343 String rel = relative; in init() 412 m_string = relative; in init()
|
/external/webkit/WebCore/inspector/front-end/ |
D | inspector.css | 306 position: relative; 327 position: relative; 478 position: relative; 494 position: relative; 674 position: relative; 785 position: relative; 1012 position: relative; 1130 position: relative; 1189 position: relative; 1396 position: relative; [all …]
|
/external/clearsilver/cs/ |
D | test_url_validate.hdf | 14 ColonUrl = relative/path:name
|
/external/bluetooth/glib/gio/ |
D | glocalfile.c | 1577 char *relative; in try_make_relative() local 1582 relative = NULL; in try_make_relative() 1585 relative = path2 + strlen (base2); in try_make_relative() 1586 while (*relative == '/') in try_make_relative() 1587 relative ++; in try_make_relative() 1588 relative = g_strdup (relative); in try_make_relative() 1593 if (relative) in try_make_relative() 1594 return relative; in try_make_relative()
|
/external/webkit/SunSpider/hosted/ |
D | sunspider.css | 27 position: relative;
|
/external/srec/tools/thirdparty/OpenFst/ |
D | README | 24 Include "fst/lib/fstlib.h" (path must be relative to the OpenFst root
|
/external/bluetooth/bluez/doc/ |
D | gtk-doc.make | 143 gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \ 171 -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebFrame.idl | 118 @param URL The base URL to apply to relative URLs within the document. 126 @param URL The base URL to apply to relative URLs within the document. 141 @param baseURL The baseURL to apply to relative URLs within the document.
|
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
D | SDL_fbevents.c | 706 void FB_vgamousecallback(int button, int relative, int dx, int dy) in FB_vgamousecallback() argument 715 posted += SDL_PrivateMouseMotion(0, relative, dx, dy); in FB_vgamousecallback() 762 static int relative = 1; in handle_mouse() local 911 FB_vgamousecallback(button, relative, dx, dy); in handle_mouse()
|
/external/icu4c/test/testdata/ |
D | format.txt | 51 Description { "relative format :" }
|
/external/ipsec-tools/src/racoon/samples/ |
D | racoon.conf.sample | 4 # "include" directive with relative file path.
|
D | racoon.conf.in | 4 # "include" directive with relative file path.
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | IconMac.mm | 44 … // Don't pass relative filenames -- we don't want a result that depends on the current directory.
|
/external/elfutils/libebl/ |
D | ChangeLog | 77 * eblopenbackend.c: Adjust relative path to arch-specific DSOs
|