Searched defs:to (Results 76 - 100 of 758) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/host/
H A Dhost_change_notification_listener.cc58 const std::string& to = stanza->Attr(buzz::QN_TO); local
60 to == signal_strategy_->GetLocalJid()) {
66 // has to be invoked later.
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableColor.cpp15 * contributors may be used to endorse or promote products derived from
71 AnimatableColorImpl AnimatableColorImpl::interpolateTo(const AnimatableColorImpl& to, double fraction) const argument
73 return AnimatableColorImpl(blend(m_red, to.m_red, fraction),
74 blend(m_green, to.m_green, fraction),
75 blend(m_blue, to.m_blue, fraction),
76 blend(m_alpha, to.m_alpha, fraction));
H A DAnimatableRepeatable.cpp15 * contributors may be used to endorse or promote products derived from
47 const AnimatableValue* to = toValues[i % toValues.size()].get(); local
49 if (AnimatableValue::usesDefaultInterpolation(from, to))
64 const AnimatableValue* to = toValues[i % toValues.size()].get(); local
66 if (AnimatableValue::usesDefaultInterpolation(from, to))
68 interpolatedValues.append(interpolate(from, to, fraction));
H A DAnimatableStrokeDasharrayList.cpp15 * contributors may be used to endorse or promote products derived from
68 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > to = toAnimatableStrokeDasharrayList(value)->m_values; local
72 // Since we animate to and from values of zero, treat a value of 'none' the
75 if (from.isEmpty() && to.isEmpty())
77 if (from.isEmpty() || to.isEmpty()) {
83 if (to.isEmpty()) {
84 to.append(zeroPixels);
85 to.append(zeroPixels);
90 bool success = interpolateLists(from, to, fraction, interpolatedValues);
H A DAnimatableValueKeyframe.cpp21 // This is not used in time-critical code, so we probably don't need to
67 AnimatableValuePropertySpecificKeyframe* to = toAnimatableValuePropertySpecificKeyframe(end); local
68 return LegacyStyleInterpolation::create(value(), to->value(), property);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DSegmentedFontData.h38 FontDataRange(UChar32 from, UChar32 to, PassRefPtr<SimpleFontData> fontData) argument
40 , m_to(to)
46 UChar32 to() const { return m_to; } function in struct:blink::FontDataRange
/external/chromium_org/v8/src/compiler/
H A Dgraph-replay.cc38 void GraphReplayPrinter::PostEdge(Node* from, int index, Node* to) { argument
39 PrintF(" n%d->ReplaceInput(%d, n%d);\n", from->id(), index, to->id());
/external/chromium_org/v8/src/
H A Dregexp-stack.cc35 char* RegExpStack::ArchiveStack(char* to) { argument
37 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size);
39 return to + size;
/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/mockito/src/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java19 public <T> void copyToRealObject(T from, T to) { argument
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) { argument
25 copyValues(from, to, fromClazz);
/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/openssl/crypto/rsa/
H A Drsa_pk1.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.
67 int RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen, argument
79 p=(unsigned char *)to;
93 int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, argument
110 if (*p != 0xff) /* should decrypt to 0xff */
140 memcpy(to,p,(unsigned int)j);
145 int RSA_padding_add_PKCS1_type_2(unsigned char *to, in argument
183 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]
/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/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_mock.py17 # contributors may be used to endorse or promote products derived from
40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
80 """Tests that data put to MockBlockingConn by put_bytes method can be
86 specified conn repeatedly and puts the read data to the specified
/external/chromium_org/ash/system/locale/
H A Dlocale_notification_controller.cc101 base::string16 to = l10n_util::GetDisplayNameForLocale( local
116 IDS_ASH_STATUS_TRAY_LOCALE_CHANGE_MESSAGE, from, to),
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc145 FilterOperation to = FilterOperation::CreateGrayscaleFilter(0.75f); local
147 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
151 blended = FilterOperation::Blend(&from, &to, 0.75);
155 blended = FilterOperation::Blend(&from, &to, 1.8);
174 FilterOperation to = FilterOperation::CreateSepiaFilter(0.75f); local
176 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
180 blended = FilterOperation::Blend(&from, &to, 0.75);
184 blended = FilterOperation::Blend(&from, &to, 1.8);
203 FilterOperation to = FilterOperation::CreateSaturateFilter(0.75f); local
205 FilterOperation blended = FilterOperation::Blend(&from, &to,
232 FilterOperation to = FilterOperation::CreateHueRotateFilter(7.f); local
261 FilterOperation to = FilterOperation::CreateInvertFilter(0.75f); local
290 FilterOperation to = FilterOperation::CreateBrightnessFilter(7.f); local
319 FilterOperation to = FilterOperation::CreateContrastFilter(7.f); local
348 FilterOperation to = FilterOperation::CreateOpacityFilter(0.75f); local
377 FilterOperation to = FilterOperation::CreateBlurFilter(7.f); local
407 FilterOperation to = FilterOperation::CreateDropShadowFilter( local
448 FilterOperation to = FilterOperation::CreateZoomFilter(6.f, 0); local
477 FilterOperation to = FilterOperation::CreateSaturatingBrightnessFilter(7.f); local
513 FilterOperation to = FilterOperation::CreateReferenceFilter(to_filter); local
550 FilterOperations to; local
650 FilterOperations to; local
668 FilterOperations to; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist_unittest.cc69 void Assign(T *to, const T& from) { argument
70 *to = from;
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_tcp_server.cc56 LOG(ERROR) << "P2PSocketHostTcpServer::Init(): can't to get local address: "
101 LOG(ERROR) << "Failed to get address of an accepted socket.";
120 void P2PSocketHostTcpServer::Send(const net::IPEndPoint& to, argument
/external/chromium_org/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
136 // Last step - convert to native slashes.
149 // |escaped_ending| is the URL to be encoded into a filename. It may have URL
175 // ",-/", and then rewrites segment to contai
185 ReplaceAll(std::string* str, const std::string& from, const std::string& to) argument
[all...]
/external/chromium_org/remoting/test/
H A Dfake_socket_factory.h37 // latency calculated based on these parameters is added to the buffering
38 // delay (which is calculated based on the parameters passed to
44 // Where bytes_buffered is the current level in the leaky bucket used to
73 const rtc::SocketAddress& to,
82 const rtc::SocketAddress& to,
88 rtc::SocketAddress to; member in struct:remoting::FakePacketSocketFactory::PendingPacket
94 const rtc::SocketAddress& to,
/external/chromium_org/sandbox/win/src/sidestep/
H A Dpreamble_patcher_with_stub.cpp18 // Very basic memcpy. We are copying 4 to 12 bytes most of the time, so there
19 // is no attempt to optimize this code or have a general purpose function.
20 // We don't want to call the crt from this code.
23 char* to = reinterpret_cast<char*>(destination); local
26 to[i] = from[i];
31 // Very basic memset. We are filling 1 to 7 bytes most of the time, so there
32 // is no attempt to optimize this code or have a general purpose function.
33 // We don't want to call the crt from this code.
35 char* to = reinterpret_cast<char*>(destination); local
38 to[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DStringKeyframe.cpp34 // This is not used in time-critical code, so we probably don't need to
128 RefPtrWillBeRawPtr<AnimatableValue> to = StyleResolver::createAnimatableValueSnapshot(*element, property, *toCSSValue); local
129 toStringPropertySpecificKeyframe(end)->m_animatableValueCache = to;
131 return LegacyStyleInterpolation::create(m_animatableValueCache.get(), to.release(), property);

Completed in 1322 milliseconds

1234567891011>>