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

1234567891011>>

/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 string16 double_null_from(from.value());
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPrerendererClient.cpp15 * contributors may be used to endorse or promote products derived from
47 PrerendererClient* PrerendererClient::from(Page* page) function in class:WebCore::PrerendererClient
49 PrerendererClient* supplement = static_cast<PrerendererClient*>(Supplement<Page>::from(page, supplementName()));
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
37 if (from && !from->isSameType(*this))
44 if (from)
45 from->apply(fromT, size);
H A DMatrixTransformOperation.cpp31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
33 if (from && !from->isSameType(*this))
40 if (from) {
41 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(from);
H A DScaleTransformOperation.cpp29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
39 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from);
H A DSkewTransformOperation.cpp29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
37 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from);
H A DTranslateTransformOperation.cpp27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
29 if (from && !from->isSameType(*this))
36 const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from);
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotificationController.h46 static NotificationController* from(Page* page) { return static_cast<NotificationController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::NotificationController
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIController.h15 * contributors may be used to endorse or promote products derived from
51 static MIDIController* from(Page* page) { return static_cast<MIDIController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::MIDIController
/external/chromium_org/third_party/icu/source/i18n/
H A Dzonemeta.h21 UDate from; member in struct:OlsonToMetaMappingEntry
/external/chromium_org/third_party/openssl/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/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/icu4c/i18n/
H A Dzonemeta.h21 UDate from; member in struct:OlsonToMetaMappingEntry
/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/content/shell/common/
H A Dwebkit_test_helpers.cc18 const WebTestRunner::WebPreferences& from,
21 from.allowUniversalAccessFromFileURLs;
22 to->dom_paste_enabled = from.DOMPasteAllowed;
23 to->javascript_can_access_clipboard = from.javaScriptCanAccessClipboard;
24 to->xss_auditor_enabled = from.XSSAuditorEnabled;
26 from.editingBehavior);
27 to->default_font_size = from.defaultFontSize;
28 to->minimum_font_size = from.minimumFontSize;
29 to->default_encoding = from.defaultTextEncodingName.utf8().data();
30 to->javascript_enabled = from
17 ExportLayoutTestSpecificPreferences( const WebTestRunner::WebPreferences& from, WebPreferences* to) argument
[all...]
/external/chromium_org/printing/
H A Dpage_range.h18 // Print range is inclusive. To select one page, set from == to.
20 int from; member in struct:printing::PageRange
24 return from == rhs.from && to == rhs.to;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSUnicodeRangeValue.h36 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) argument
38 return adoptRef(new CSSUnicodeRangeValue(from, to));
41 UChar32 from() const { return m_from; } function in class:WebCore::CSSUnicodeRangeValue
49 CSSUnicodeRangeValue(UChar32 from, UChar32 to) argument
51 , m_from(from)
/external/chromium_org/third_party/WebKit/Source/core/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
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DAnimationUtilities.h35 inline int blend(int from, int to, double progress) argument
37 return lround(from + (to - from) * progress);
40 inline unsigned blend(unsigned from, unsigned to, double progress) argument
42 return lround(to > from ? from + (to - from) * progress : from - (from - to) * progress);
45 inline double blend(double from, doubl argument
50 blend(float from, float to, double progress) argument
55 blend(LayoutUnit from, LayoutUnit to, double progress) argument
60 blend(const IntPoint& from, const IntPoint& to, double progress) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateColorElement.cpp47 void SVGAnimateColorElement::determinePropertyValueTypes(const String& from, const String& to) argument
49 SVGAnimateElement::determinePropertyValueTypes(from, to);
50 if (attributeValueIsCurrentColor(from))
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DDOMWindowCrypto.cpp15 * contributors may be used to endorse or promote products derived from
54 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window) function in class:WebCore::DOMWindowCrypto
56 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWindow>::from(window, supplementName()));
66 return DOMWindowCrypto::from(window)->crypto();
H A DWorkerGlobalScopeCrypto.cpp15 * contributors may be used to endorse or promote products derived from
52 WorkerGlobalScopeCrypto* WorkerGlobalScopeCrypto::from(ScriptExecutionContext* context) function in class:WebCore::WorkerGlobalScopeCrypto
54 WorkerGlobalScopeCrypto* supplement = static_cast<WorkerGlobalScopeCrypto*>(Supplement<ScriptExecutionContext>::from(context, supplementName()));
64 return WorkerGlobalScopeCrypto::from(context)->crypto();

Completed in 618 milliseconds

1234567891011>>