Home
last modified time | relevance | path

Searched refs:relative (Results 1 – 25 of 157) sorted by relevance

1234567

/external/webkit/WebCore/svg/
DSVGParserUtilities.cpp224 …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/
DSkParseSVGPath.cpp100 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/
DSDL_mouse.c103 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()
DSDL_events_c.h58 extern int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative,
/external/dbus/bus/
Dtest.c298 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/
DARMv7Assembler.h1509 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/
Dwlan_filtering.patch13 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/
DEmojiFont.cpp132 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/
DKURLGoogle.cpp173 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()
DKURL.h75 KURL(const KURL& base, const String& relative);
76 KURL(const KURL& base, const String& relative, const TextEncoding&);
DKURLGooglePrivate.h55 void init(const KURL& base, const String& relative,
DKURL.cpp317 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/
Dinspector.css306 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/
Dtest_url_validate.hdf14 ColonUrl = relative/path:name
/external/bluetooth/glib/gio/
Dglocalfile.c1577 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/
Dsunspider.css27 position: relative;
/external/srec/tools/thirdparty/OpenFst/
DREADME24 Include "fst/lib/fstlib.h" (path must be relative to the OpenFst root
/external/bluetooth/bluez/doc/
Dgtk-doc.make143 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/
DIWebFrame.idl118 @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/
DSDL_fbevents.c706 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/
Dformat.txt51 Description { "relative format :" }
/external/ipsec-tools/src/racoon/samples/
Dracoon.conf.sample4 # "include" directive with relative file path.
Dracoon.conf.in4 # "include" directive with relative file path.
/external/webkit/WebCore/platform/graphics/mac/
DIconMac.mm44 … // Don't pass relative filenames -- we don't want a result that depends on the current directory.
/external/elfutils/libebl/
DChangeLog77 * eblopenbackend.c: Adjust relative path to arch-specific DSOs

1234567