Searched defs:from (Results 51 - 75 of 873) sorted by relevance

1234567891011>>

/external/chromium_org/jingle/notifier/listener/
H A Dnotification_defines.h21 // A sender, which could be a domain or a bare JID, from which we
23 std::string from; member in struct:notifier::Subscription
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDeviceOrientationController.cpp75 DeviceOrientationController* DeviceOrientationController::from(Page* page) function in class:WebCore::DeviceOrientationController
77 return static_cast<DeviceOrientationController*>(Supplement<Page>::from(page, supplementName()));
82 if (DeviceOrientationController* self = DeviceOrientationController::from(page))
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
36 if (from && !from->isSameType(*this))
42 const BasicColorMatrixFilterOperation* fromOp = static_cast<const BasicColorMatrixFilterOperation*>(from);
62 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
64 if (from && !from->isSameType(*this))
70 const BasicComponentTransferFilterOperation* fromOp = static_cast<const BasicComponentTransferFilterOperation*>(from);
92 PassRefPtr<FilterOperation> GammaFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
94 if (from
113 blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
128 blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> CustomFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) argument
61 if (blendToPassthrough || !from || !from->isSameType(*this))
64 const CustomFilterOperation* fromOp = static_cast<const CustomFilterOperation*>(from);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DInterpolatedTransformOperation.cpp15 * contributors may be used to endorse or promote products derived from
43 return progress == t->progress && from == t->from && to == t->to;
50 from.apply(borderBoxSize, fromTransform);
58 PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
60 if (from && !from->isSameType(*this))
69 fromOperations.operations().append(const_cast<TransformOperation*>(from));
H A DInterpolatedTransformOperation.h15 * contributors may be used to endorse or promote products derived from
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) argument
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
56 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
58 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
59 : from(from)
64 const TransformOperations from; member in class:WebCore::InterpolatedTransformOperation
H A DPerspectiveTransformOperation.cpp36 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
38 if (from && !from->isSameType(*this))
47 const PerspectiveTransformOperation* fromOp = static_cast<const PerspectiveTransformOperation*>(from);
H A DRotateTransformOperation.cpp33 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
35 if (from && !from->isSameType(*this))
41 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DWorkerLocalFileSystem.cpp15 * contributors may be used to endorse or promote products derived from
50 WorkerLocalFileSystem* WorkerLocalFileSystem::from(ScriptExecutionContext* context) function in class:WebCore::WorkerLocalFileSystem
52 return static_cast<WorkerLocalFileSystem*>(Supplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationController.h63 static GeolocationController* from(Page* page) { return static_cast<GeolocationController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::GeolocationController
H A DNavigatorGeolocation.cpp47 NavigatorGeolocation* NavigatorGeolocation::from(Navigator* navigator) function in class:WebCore::NavigatorGeolocation
49 NavigatorGeolocation* supplement = static_cast<NavigatorGeolocation*>(Supplement<Navigator>::from(navigator, supplementName()));
59 return NavigatorGeolocation::from(navigator)->geolocation();
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DDOMWindowIndexedDatabase.cpp52 DOMWindowIndexedDatabase* DOMWindowIndexedDatabase::from(DOMWindow* window) function in class:WebCore::DOMWindowIndexedDatabase
54 DOMWindowIndexedDatabase* supplement = static_cast<DOMWindowIndexedDatabase*>(Supplement<DOMWindow>::from(window, supplementName()));
76 return from(window)->indexedDB();
93 m_idbFactory = IDBFactory::create(PageGroupIndexedDatabase::from(page->group())->factoryBackend());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaController.h46 static UserMediaController* from(Page* page) { return static_cast<UserMediaController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::UserMediaController
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DDOMWindowNotifications.cpp55 DOMWindowNotifications* DOMWindowNotifications::from(DOMWindow* window) function in class:WebCore::DOMWindowNotifications
57 DOMWindowNotifications* supplement = static_cast<DOMWindowNotifications*>(Supplement<DOMWindow>::from(window, supplementName()));
67 return DOMWindowNotifications::from(window)->webkitNotifications();
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DNavigatorStorageQuota.cpp15 * contributors may be used to endorse or promote products derived from
54 NavigatorStorageQuota* NavigatorStorageQuota::from(Navigator* navigator) function in class:WebCore::NavigatorStorageQuota
56 NavigatorStorageQuota* supplement = static_cast<NavigatorStorageQuota*>(Supplement<Navigator>::from(navigator, supplementName()));
66 return NavigatorStorageQuota::from(navigator)->webkitTemporaryStorage();
71 return NavigatorStorageQuota::from(navigator)->webkitPersistentStorage();
H A DWorkerNavigatorStorageQuota.cpp15 * contributors may be used to endorse or promote products derived from
52 WorkerNavigatorStorageQuota* WorkerNavigatorStorageQuota::from(WorkerNavigator* navigator) function in class:WebCore::WorkerNavigatorStorageQuota
54 WorkerNavigatorStorageQuota* supplement = static_cast<WorkerNavigatorStorageQuota*>(Supplement<WorkerNavigator>::from(navigator, supplementName()));
64 return WorkerNavigatorStorageQuota::from(navigator)->webkitTemporaryStorage();
69 return WorkerNavigatorStorageQuota::from(navigator)->webkitPersistentStorage();
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionController.h49 static SpeechRecognitionController* from(Page* page) { return static_cast<SpeechRecognitionController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::SpeechRecognitionController
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DNavigatorWebMIDI.cpp15 * contributors may be used to endorse or promote products derived from
56 NavigatorWebMIDI* NavigatorWebMIDI::from(Navigator* navigator) function in class:WebCore::NavigatorWebMIDI
58 NavigatorWebMIDI* supplement = static_cast<NavigatorWebMIDI*>(Supplement<Navigator>::from(navigator, supplementName()));
68 return NavigatorWebMIDI::from(navigator)->requestMIDIAccess(options);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebCache.cpp15 * contributors may be used to endorse or promote products derived from
42 static void ToResourceTypeStat(const MemoryCache::TypeStatistic& from, argument
45 to.count = static_cast<size_t>(from.count);
46 to.size = static_cast<size_t>(from.size);
47 to.liveSize = static_cast<size_t>(from.liveSize);
48 to.decodedSize = static_cast<size_t>(from.decodedSize);
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/
H A Drsa_null.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
72 static int RSA_null_public_encrypt(int flen, const unsigned char *from,
74 static int RSA_null_private_encrypt(int flen, const unsigned char *from,
76 static int RSA_null_public_decrypt(int flen, const unsigned char *from,
78 static int RSA_null_private_decrypt(int flen, const unsigned char *from,
107 static int RSA_null_public_encrypt(int flen, const unsigned char *from, argument
114 static int RSA_null_private_encrypt(int flen, const unsigned char *from, argument
121 static int RSA_null_private_decrypt(int flen, const unsigned char *from, argument
128 static int RSA_null_public_decrypt(int flen, const unsigned char *from, argument
[all...]
H A Drsa_pk1.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)
87 memcpy(p,from,(unsigned int)flen);
92 const unsigned char *from, int flen, int num)
97 p=from;
144 const unsigned char *from, int flen)
177 memcpy(p,from,(unsigned int)flen);
182 const unsigned char *from, int flen, int num)
187 p=from;
65 RSA_padding_add_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
91 RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
143 RSA_padding_add_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
181 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]
H A Drsa_ssl.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)
101 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
65 RSA_padding_add_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
H A Drsa_x931.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
67 const unsigned char *from, int flen)
73 * nibble and 2 trailer bytes: but 1 hash if is already in 'from'.
99 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
66 RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_X931(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dcombpath_test.c35 char * (*combpath) (const char *from, const char *to);
37 /* input "from" path */
38 const char *from; member in struct:Test_Entry
104 out = test->combpath(test->from, test->to);
109 funcname, test->from, test->to, test->out, out);
/external/chromium_org/tools/json_schema_compiler/
H A Dutil.cc12 bool GetItemFromList(const base::ListValue& from, int index, int* out) { argument
13 return from.GetInteger(index, out);
16 bool GetItemFromList(const base::ListValue& from, int index, bool* out) { argument
17 return from.GetBoolean(index, out);
20 bool GetItemFromList(const base::ListValue& from, int index, double* out) { argument
21 return from.GetDouble(index, out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out) { argument
25 return from.GetString(index, out);
28 bool GetItemFromList(const base::ListValue& from, argument
32 if (!from
38 GetItemFromList(const base::ListValue& from, int index, linked_ptr<base::DictionaryValue>* out) argument
47 AddItemToList(const int from, base::ListValue* out) argument
51 AddItemToList(const bool from, base::ListValue* out) argument
55 AddItemToList(const double from, base::ListValue* out) argument
59 AddItemToList(const std::string& from, base::ListValue* out) argument
63 AddItemToList(const linked_ptr<base::Value>& from, base::ListValue* out) argument
68 AddItemToList(const linked_ptr<base::DictionaryValue>& from, base::ListValue* out) argument
[all...]

Completed in 2479 milliseconds

1234567891011>>