Searched defs:from (Results 1 - 25 of 925) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrixTest.cpp15 TransformationMatrix from; local
20 result.blend(from, 0.25);
21 EXPECT_TRUE(result == from);
24 result.blend(from, 0.75);
H A DMatrix3DTransformOperation.cpp33 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 if (from && !from->isSameType(*this))
42 if (from)
43 from->apply(fromT, size);
H A DMatrixTransformOperation.cpp29 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
38 if (from) {
39 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(from);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.cpp38 ShadowData ShadowData::blend(const ShadowData& from, double progress) const argument
40 if (style() != from.style())
43 return ShadowData(blink::blend(from.location(), location(), progress),
44 clampTo(blink::blend(from.blur(), blur(), progress), 0.0f),
45 blink::blend(from.spread(), spread(), progress),
47 blink::blend(from.color(), color(), progress));
/external/libutf/
H A Dutfecpy.c20 utfecpy(char *to, char *e, const char *from) argument
26 end = (char*)memccpy(to, from, '\0', e - to);
/external/chromium_org/chrome/installer/util/
H A Dinstaller_util_test_common.cc17 bool CopyFileHierarchy(const base::FilePath& from, const base::FilePath& to) { argument
20 base::string16 double_null_from(from.value());
/external/chromium_org/components/enhanced_bookmarks/
H A Dimage_store.cc15 void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) { argument
18 if (!HasKey(from))
21 std::pair<gfx::Image, GURL> image_info = Get(from);
22 Erase(from);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPrerendererClient.cpp15 * contributors may be used to endorse or promote products derived from
46 PrerendererClient* PrerendererClient::from(Page* page) function in class:blink::PrerendererClient
48 PrerendererClient* supplement = static_cast<PrerendererClient*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScopeProxyProvider.cpp15 * contributors may be used to endorse or promote products derived from
38 WorkerGlobalScopeProxyProvider* WorkerGlobalScopeProxyProvider::from(Page& page) function in class:blink::WorkerGlobalScopeProxyProvider
40 return static_cast<WorkerGlobalScopeProxyProvider*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeysController.h23 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DStorageQuotaClient.cpp15 * contributors may be used to endorse or promote products derived from
45 StorageQuotaClient* StorageQuotaClient::from(ExecutionContext* context) function in class:blink::StorageQuotaClient
49 return static_cast<StorageQuotaClient*>(WillBeHeapSupplement<Page>::from(toDocument(context)->page(), supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerGlobalScopeClient.cpp15 * contributors may be used to endorse or promote products derived from
44 ServiceWorkerGlobalScopeClient* ServiceWorkerGlobalScopeClient::from(ExecutionContext* context) function in class:blink::ServiceWorkerGlobalScopeClient
46 return static_cast<ServiceWorkerGlobalScopeClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIController.h15 * contributors may be used to endorse or promote products derived from
52 static MIDIController* from(LocalFrame* frame) { return static_cast<MIDIController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); } function in class:blink::FINAL
/external/chromium_org/third_party/icu/source/i18n/
H A Dzonemeta.h21 UDate from; member in struct:OlsonToMetaMappingEntry
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_internal.h15 * contributors may be used to endorse or promote products derived from
45 // SpinLockWait() waits until it can perform one of several transitions from
46 // "from" to "to". It returns when it performs a transition where done==true.
48 int32 from; member in struct:base::internal::SpinLockWaitTransition
53 // Wait until *w can transition from trans[i].from to trans[i].to for some i
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_internal.h15 * contributors may be used to endorse or promote products derived from
45 // SpinLockWait() waits until it can perform one of several transitions from
46 // "from" to "to". It returns when it performs a transition where done==true.
48 int32 from; member in struct:base::internal::SpinLockWaitTransition
53 // Wait until *w can transition from trans[i].from to trans[i].to for some i
/external/icu/icu4c/source/i18n/
H A Dzonemeta.h21 UDate from; member in struct:OlsonToMetaMappingEntry
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar32_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
H A Dwchar_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
/external/openssl/crypto/rsa/
H A Drsa_none.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
80 memcpy(to,from,(unsigned int)flen);
85 const unsigned char *from, int flen, int num)
95 memcpy(to+tlen-flen,from,flen);
65 RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
84 RSA_padding_check_none(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/external/smack/src/org/jivesoftware/smackx/
H A DPEPListener.java37 * @param from the user that sent the entries.
40 public void eventReceived(String from, PEPEvent event); argument
H A DRosterExchangeListener.java36 * @param from the user that sent the entries.
40 public void entriesReceived(String from, Iterator<RemoteRosterEntry> remoteRosterEntries); argument
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist_state_fetcher_unittest.cc16 void Assign(BlacklistState* to, BlacklistState from) { argument
17 *to = from;

Completed in 393 milliseconds

1234567891011>>