Searched refs:from (Results 201 - 225 of 3428) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/Modules/vibration/
H A DVibration.h53 static Vibration* from(Page* page) { return static_cast<Vibration*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::Vibration
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DSpeechInput.h15 * contributors may be used to endorse or promote products derived from
59 static SpeechInput* from(Page* page) { return static_cast<SpeechInput*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::SpeechInput
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DFontWin.cpp54 int from, int to) const
57 it.advance(from);
72 float Font::getGlyphsAndAdvancesForComplexText(const TextRun& run, int from, int to, GlyphBuffer& glyphBuffer, ForTextEmphasisOrNot forTextEmphasis) const argument
81 controller.advance(from);
98 int from, int to) const
103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
114 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, int from, int to) const argument
117 float initialAdvance = getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer, ForTextEmphasis);
53 selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h, int from, int to) const argument
97 drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const argument
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimatedLength.cpp73 void SVGAnimatedLengthAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to) argument
75 ASSERT(from->type() == AnimatedLength);
76 ASSERT(from->type() == to->type());
79 const SVGLength& fromLength = from->length();
90 void SVGAnimatedLengthAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated) argument
95 SVGLength fromSVGLength = m_animationElement->animationMode() == ToAnimation ? animated->length() : from->length();
117 SVGLength from = SVGLength(lengthMode, fromString); local
120 return fabsf(to.value(lengthContext) - from.value(lengthContext));
H A DSVGAnimatedTransformList.cpp77 void SVGAnimatedTransformListAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGAnimatedType* to) argument
79 ASSERT(from->type() == AnimatedTransformList);
80 ASSERT(from->type() == to->type());
82 const SVGTransformList& fromTransformList = from->transformList();
96 void SVGAnimatedTransformListAnimator::calculateAnimatedValue(float percentage, unsigned repeatCount, SVGAnimatedType* from, SVGAnimatedType* to, SVGAnimatedType* toAtEndOfDuration, SVGAnimatedType* animated) argument
100 // Spec: To animations provide specific functionality to get a smooth change from the underlying value to the
104 const SVGTransformList& fromTransformList = m_animationElement->animationMode() == ToAnimation ? animated->transformList() : from->transformList();
134 OwnPtr<SVGAnimatedType> from = constructFromString(fromString); local
137 SVGTransformList& fromTransformList = from->transformList();
148 // Paced animations assume a notion of distance between the various animation values defined by the ���to���, ���from���, ���b
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/network_io/beos/
H A Dsendrecv.c170 APR_DECLARE(apr_status_t) apr_socket_recvfrom(apr_sockaddr_t *from,
177 if (from == NULL){
186 (struct sockaddr*)&from->sa, &from->salen);
198 (struct sockaddr*)&from->sa, &from->salen);
207 from->port = ntohs(from->sa.sin.sin_port);
/macosx-10.9.5/apr-30/apr/apr/network_io/beos/
H A Dsendrecv.c170 APR_DECLARE(apr_status_t) apr_socket_recvfrom(apr_sockaddr_t *from,
177 if (from == NULL){
186 (struct sockaddr*)&from->sa, &from->salen);
198 (struct sockaddr*)&from->sa, &from->salen);
207 from->port = ntohs(from->sa.sin.sin_port);
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dmapper.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
127 idn_mapper_map(idn_mapper_t ctx, const unsigned long *from,
137 const unsigned long *from,
H A Dmapselector.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
153 idn_mapselector_map(idn_mapselector_t ctx, const unsigned long *from,
157 idn_mapselector_map2(idn_mapselector_t ctx, const unsigned long *from,
H A Dnormalizer.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
69 typedef idn_result_t (*idn_normalizer_proc_t)(const unsigned long *from,
136 idn_normalizer_normalize(idn_normalizer_t ctx, const unsigned long *from,
H A Ducs4.h10 * license is obtained from Japan Network Information Center ("JPNIC"),
28 * derived from this Software without specific prior written approval of
85 idn_ucs4_strcpy(unsigned long *to, const unsigned long *from);
88 idn_ucs4_strcat(unsigned long *to, const unsigned long *from);
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ddelimitermap.c14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
199 idn_delimitermap_map(idn_delimitermap_t ctx, const unsigned long *from, argument
202 /* default delimiters (label separators) from IDNA specification */
215 assert(ctx != NULL && from != NULL && to != NULL);
217 TRACE(("idn_delimitermap_map(from=\"%s\", tolen=%d)\n",
218 idn__debug_ucs4xstring(from, 50), (int)tolen));
223 while (*from != '\0') {
230 if (default_delimiters[j] == *from) {
237 if (ctx->delimiters[i] == *from) {
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/include/
H A Dfloatformat.h87 int (*is_valid) (const struct floatformat *fmt, const void *from);
122 /* Convert from FMT to a double.
138 floatformat_is_valid (const struct floatformat *fmt, const void *from);
/macosx-10.9.5/dyld-239.4/src/
H A Dstart_glue.s34 movl %eax,(%esp) # pass result from main() to exit()
49 movl %eax,%edi # pass result from main() to exit()
/macosx-10.9.5/libresolv-54/
H A Ddns.h44 * The configuration for a particular client may be read from a file
87 * configuration, derived from a resolv.conf format file or from some other
90 * or '.'), in which case the client's configuration is read from the
128 extern int32_t dns_query(dns_handle_t dns, const char *name, uint32_t dnsclass, uint32_t dnstype, char *buf, uint32_t len, struct sockaddr *from, uint32_t *fromlen);
134 extern int32_t dns_search(dns_handle_t dns, const char *name, uint32_t dnsclass, uint32_t dnstype, char *buf, uint32_t len, struct sockaddr *from, uint32_t *fromlen);
/macosx-10.9.5/ppp-727.90.1/Drivers/L2TP/L2TP-extension/
H A Dl2tp_rfc.h65 typedef int (*l2tp_rfc_input_callback)(void *data, mbuf_t m, struct sockaddr *from, int more);
79 // callback from dlil layer
80 int l2tp_rfc_lower_input(socket_t so, mbuf_t m, struct sockaddr *from);
/macosx-10.9.5/procmail-14/procmail/src/
H A Dgoodies.h6 *simplesplit P((char*to,const char*from,const char*fencepost,int*gotp));
/macosx-10.9.5/rsync-42/rsync/support/
H A Dlogfilter24 my($mod_spec) = $msg =~ /^rsync (?:on|to) (\S+) from /;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/unix/
H A DtclXunixPort.h90 # define bcopy(from, to, length) memmove((to), (from), (length))
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/win/
H A DtclXwinPort.h83 #define bcopy(from, to, length) memmove((to), (from), (length))
/macosx-10.9.5/vim-53/src/proto/
H A Dblowfish.pro4 void bf_crypt_encode __ARGS((char_u *from, size_t len, char_u *to));
/macosx-10.9.5/xnu-2422.115.4/pexpert/gen/
H A Dbootargs.c32 static int argstrcpy(char *from, char *to);
33 static int argstrcpy2(char *from,char *to, unsigned maxlen);
158 char *from,
163 while (!isargsep(*from)) {
165 *to++ = *from++;
173 char *from,
179 while (!isargsep(*from) && i < maxlen) {
181 *to++ = *from++;
157 argstrcpy( char *from, char *to) argument
172 argstrcpy2( char *from, char *to, unsigned maxlen) argument
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/t/lib/
H A Ddbixcsl_mssql_extra_tests.pm59 ok((my $from = eval { $rs->result_source->from }),
60 'got an $rsrc->from for table with dot in name');
62 is ref($from), 'SCALAR', '->table with dot in name is a scalar ref';
64 is eval { $$from }, "[${vendor}_loader_test1.dot]",
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/t/lib/
H A Ddbixcsl_mssql_extra_tests.pm59 ok((my $from = eval { $rs->result_source->from }),
60 'got an $rsrc->from for table with dot in name');
62 is ref($from), 'SCALAR', '->table with dot in name is a scalar ref';
64 is eval { $$from }, "[${vendor}_loader_test1.dot]",
/macosx-10.9.5/WebCore-7537.78.1/Modules/battery/
H A DNavigatorBattery.h37 static NavigatorBattery* from(Navigator*);

Completed in 218 milliseconds

1234567891011>>