Searched defs:to (Results 26 - 50 of 433) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/svg/
H A DSVGPointList.cpp16 * along with this library; see the file COPYING.LIB. If not, write to
39 builder.append(" "); // FIXME: Shouldn't we use commas to seperate?
48 float inline adjustAnimatedValue(float from, float to, float progress) argument
50 return (to - from) * progress + from;
60 const FloatPoint& to = toList.at(n); local
61 FloatPoint segment = FloatPoint(adjustAnimatedValue(from.x(), to.x(), progress),
62 adjustAnimatedValue(from.y(), to.y(), progress));
/external/webkit/Source/WebKit/chromium/src/
H A DWebCache.cpp15 * contributors may be used to endorse or promote products derived from
35 // This will make it easier to track WebCore changes to the MemoryCache class.
45 // A helper method for coverting a MemoryCache::TypeStatistic to a
48 WebCache::ResourceTypeStat& to)
50 to.count = static_cast<size_t>(from.count);
51 to.size = static_cast<size_t>(from.size);
52 to.liveSize = static_cast<size_t>(from.liveSize);
53 to.decodedSize = static_cast<size_t>(from.decodedSize);
47 ToResourceTypeStat(const MemoryCache::TypeStatistic& from, WebCache::ResourceTypeStat& to) argument
/external/clang/test/SemaTemplate/
H A Dcopy-ctor-assign.cpp50 void test_X2(X3 &to, X3 from) { argument
51 to = from;
/external/guava/guava/src/com/google/common/io/
H A DResources.java10 * Unless required by applicable law or agreed to in writing, software
51 * @param url the URL to read from
69 * @param url the URL to read from
81 * @param url the URL to read from
93 * @param url the URL to read from
106 * @param url the URL to read from
108 * @param callback the LineProcessor to use to handle the lines
122 * @param url the URL to read from
133 * Copies all bytes from a URL to a
139 copy(URL from, OutputStream to) argument
[all...]
/external/nist-sip/java/gov/nist/core/
H A DServerLogger.java4 * This code has been contributed to the public domain.
11 * not limited to the correctness, accuracy, reliability or usefulness of
14 * Permission to use this software is contingent upon your acceptance
34 void logMessage(SIPMessage message, String from, String to, boolean sender, long time); argument
36 void logMessage(SIPMessage message, String from, String to, String status, argument
39 void logMessage(SIPMessage message, String from, String to, String status, argument
/external/openssh/
H A Ddispatch.c68 dispatch_range(u_int from, u_int to, dispatch_fn *fn) argument
72 for (i = from; i <= to; i++) {
/external/qemu/slirp/
H A Dsbuf.c66 * Try and write() to the socket, whatever doesn't get written
67 * append to the buffer... for a host with a fast net connection,
110 * we don't need to check because if it has closed,
129 * The caller is responsible to make sure there's enough room
164 * Copy data from sbuf to a normal, straight buffer
169 sbcopy(struct sbuf *sb, int off, int len, char *to) argument
179 memcpy(to,from,len);
184 memcpy(to,from,off);
187 memcpy(to+off,sb->sb_data,len);
/external/qemu/slirp-android/
H A Dsbuf.c66 * Try and write() to the socket, whatever doesn't get written
67 * append to the buffer... for a host with a fast net connection,
110 * we don't need to check because if it has closed,
129 * The caller is responsible to make sure there's enough room
164 * Copy data from sbuf to a normal, straight buffer
169 sbcopy(struct sbuf *sb, int off, int len, char *to) argument
179 memcpy(to,from,len);
184 memcpy(to,from,off);
187 memcpy(to+off,sb->sb_data,len);
/external/quake/quake/src/QW/client/
H A Dcl_pred.c16 along with this program; if not, write to the Free Software
33 try nudging slightly on all axis to
64 void CL_PredictUsercmd (player_state_t *from, player_state_t *to, usercmd_t *u, qboolean spectator) argument
76 CL_PredictUsercmd (&temp, to, &split, spectator);
95 to->waterjumptime = pmove.waterjumptime;
96 to->oldbuttons = pmove.cmd.buttons;
97 VectorCopy (pmove.origin, to->origin);
98 VectorCopy (pmove.angles, to->viewangles);
99 VectorCopy (pmove.velocity, to->velocity);
100 to
116 frame_t *from, *to = NULL; local
[all...]
/external/stlport/src/
H A Dcodecvt.cpp11 * Permission to use or copy this software for any purpose is hereby granted
13 * Permission to modify the code and to distribute modified code is granted,
87 extern_type* to,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
93 to_next = to + len;
102 intern_type* to,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
107 __REINTERPRET_CAST(const unsigned char*, from) + len, to);
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
114 do_unshift(state_type& , extern_type* to, extern_type* , extern_type*& to_next) const argument
[all...]
/external/v8/src/
H A Delements.h13 // contributors may be used to endorse or promote products derived
50 // in the backing store to use for the check, which must be compatible with
60 // can optionally pass in the backing store to use for the check, which must
71 // have non-deletable elements can only be shrunk to the size of highest
91 // If kCopyToEnd is specified as the copy_size to CopyElements, it copies all
92 // of elements from source after source_start to the destination array.
94 // If kCopyToEndAndInitializeToHole is specified as the copy_size to
95 // CopyElements, it copies all of elements from source after source_start to
100 // Copy elements from one backing store to another. Typically, callers specify
113 FixedArrayBase* to,
112 CopyElements(JSObject* from_holder, FixedArrayBase* to, ElementsKind to_kind, FixedArrayBase* from = NULL) argument
[all...]
H A Dregexp-stack.cc13 // contributors may be used to endorse or promote products derived
57 char* RegExpStack::ArchiveStack(char* to) { argument
59 memcpy(reinterpret_cast<void*>(to),
63 return to + size;
/external/bluetooth/bluez/test/
H A Dattest.c19 * along with this program; if not, write to the Free Software
41 static int at_command(int fd, char *cmd, int to) argument
56 timeout.tv_usec = to;
94 /* Switch tty to RAW mode */
166 printf("Connecting to %s on channel %d\n", argv[1], channel);
/external/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder.h10 // 3. Provide reverse-mapping from filenames back to URLs.
11 // 4. Be able to distinguish http://x from http://x/ from http://x/index.html.
13 // 5. Be able to represent http://a/b/c and http://a/b/c/d, a pattern seen
22 // are ~`!@#$%^&()-=_+{}[],. but we would prefer to avoid characters that are
28 // ~`!$^&(){}[]'; are special to Unix shells
39 // & 487 Prefer to avoid shell escapes
57 // inserting ,-/ (Windows limits paths to 128 chars, other OSes also
137 // Last step - convert to native slashes.
150 // |escaped_ending| is the URL to be encoded into a filename. It may have URL
176 // ",-/", and then rewrites segment to contai
186 ReplaceAll(std::string* str, const std::string& from, const std::string& to) argument
[all...]
/external/compiler-rt/lib/asan/interception/
H A Dinterception_win.cc50 static void WriteJumpInstruction(char *jmp_from, char *to) { argument
52 // to the next instruction to the destination.
53 ptrdiff_t offset = to - jmp_from - 5;
63 // We write 5 bytes (jmp-to-new_func) at the beginning of the 'old_func'
64 // to override it. We want to be able to execute the original 'old_func' from
65 // the wrapper, so we need to keep the leading 5+ bytes ('head') of the
86 // Find out the number of bytes of the instructions we need to cop
[all...]
/external/guava/guava/src/com/google/common/base/
H A DCaseFormat.java10 * Unless required by applicable law or agreed to in writing, software
63 * Converts the specified {@code String s} from this format to the specified {@code format}. A
64 * "best effort" approach is taken; if {@code s} does not conform to the assumed format, then the
67 public String to(CaseFormat format, String s) { method in class:CaseFormat
/external/icu4c/i18n/
H A Dtztrans.cpp8 #include <typeinfo> // for 'typeid' to work
21 TimeZoneTransition::TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to) argument
22 : UObject(), fTime(time), fFrom(from.clone()), fTo(to.clone()) {
112 TimeZoneTransition::setTo(const TimeZoneRule& to) { argument
116 fTo = to.clone();
120 TimeZoneTransition::adoptTo(TimeZoneRule* to) { argument
124 fTo = to;
H A Dztrans.cpp27 ztrans_open(UDate time, const void* from, const void* to){ argument
28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to);
82 ztrans_setTo(ZTrans* trans, const void* to) { argument
83 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTo(*(TimeZoneRule*)to);
87 ztrans_adoptTo(ZTrans* trans, void* to) { argument
88 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptTo((TimeZoneRule*)to);
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DParserStateTable.java10 * Unless required by applicable law or agreed to in writing, software
30 * <p>This class provides methods to initially build the state table and then
31 * methods at parsing time to determine the transitions to subsequent states.
35 * ASCII characters, that is characters in the Unicode space of [U+0000 to
36 * U+00FF]. We use that property to design a more efficient state transition
40 * transition exists, we switch to the Internal Error state.
61 * characters in the range 0 to MAX_CHARS -1.
87 * Returns the state to go to whe
121 setExpression(String expr, InternalState from, InternalState to) argument
144 fill(InternalState from, InternalState to) argument
151 setDefaultDestination(InternalState from, InternalState to) argument
162 setDestination(InternalState from, char chr, InternalState to) argument
174 setRange(InternalState from, char start, char end, InternalState to) argument
[all...]
/external/kernel-headers/original/linux/
H A Dhighmem.h78 * Same but also flushes aliased cache contents to RAM.
92 static inline void copy_user_highpage(struct page *to, struct page *from, unsigned long vaddr) argument
97 vto = kmap_atomic(to, KM_USER1);
98 copy_user_page(vto, vfrom, vaddr, to);
105 static inline void copy_highpage(struct page *to, struct page *from) argument
110 vto = kmap_atomic(to, KM_USER1);
/external/linux-tools-perf/util/
H A Drun-command.c11 static inline void dup_devnull(int to) argument
14 dup2(fd, to);
24 * In case of errors we must keep the promise to close FDs
101 die("exec %s: cd to %s failed (%s)", cmd->argv[0],
H A Dutil.c30 static int slow_copyfile(const char *from, const char *to) argument
40 to_fp = fopen(to, "w");
57 int copyfile(const char *from, const char *to) argument
68 return slow_copyfile(from, to);
74 tofd = creat(to, 0755);
89 unlink(to);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DFrom.java6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
65 public From(To to) { argument
67 address = to.address;
68 parameters = to.parameters;
96 * Conveniance accessor function to ge
[all...]
/external/nist-sip/java/javax/sip/message/
H A DMessageFactory.java17 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
22 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
27 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
33 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
38 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
43 CSeqHeader cSeq, FromHeader from, ToHeader to, List via,
16 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
21 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
26 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
32 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
37 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
42 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
/external/openssl/crypto/evp/
H A Dnames.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
144 const char *from, const char *to, void *arg);
157 const char *from, const char *to, void *x), void *arg)
166 const char *from, const char *to, void *x), void *arg)
178 const char *from, const char *to, void *arg);
191 const char *from, const char *to, void *x), void *arg)
200 const char *from, const char *to, voi
156 EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
165 EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
190 EVP_MD_do_all(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
199 EVP_MD_do_all_sorted(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
[all...]

Completed in 3264 milliseconds

1234567891011>>