/external/chromium_org/third_party/WebKit/Source/core/workers/ |
WorkerGlobalScopeProxyProvider.cpp | 15 * contributors may be used to endorse or promote products derived from 36 WorkerGlobalScopeProxyProvider* WorkerGlobalScopeProxyProvider::from(Page* page) function in class:WebCore::WorkerGlobalScopeProxyProvider 38 return static_cast<WorkerGlobalScopeProxyProvider*>(Supplement<Page>::from(page, supplementName()));
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionSync.cpp | 16 * contributors may be used to endorse or promote products derived from 53 SQLTransactionSync* SQLTransactionSync::from(SQLTransactionBackendSync* backend) function in class:WebCore::SQLTransactionSync
|
DatabaseClient.cpp | 15 * contributors may be used to endorse or promote products derived from 39 DatabaseClient* DatabaseClient::from(ExecutionContext* context) function in class:WebCore::DatabaseClient 42 return static_cast<DatabaseClient*>(Supplement<Page>::from(toDocument(context)->page(), supplementName())); 45 return static_cast<DatabaseClient*>(Supplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableVisibility.cpp | 15 * contributors may be used to endorse or promote products derived from 38 EVisibility from = m_visibility; local 40 if (from != VISIBLE && to != VISIBLE) 46 return takeConstRef(from == VISIBLE ? this : value);
|
AnimatableStrokeDasharrayList.cpp | 15 * contributors may be used to endorse or promote products derived from 58 Vector<RefPtr<AnimatableValue> > from = m_values; local 63 // Since we animate to and from values of zero, treat a value of 'none' the 64 // same. If both the two and from values are 'none', we return 'none' 66 if (from.isEmpty() && to.isEmpty()) 68 if (from.isEmpty() || to.isEmpty()) { 75 if (from.isEmpty()) { 76 from.append(zeroPixels); 77 from.append(zeroPixels); 86 bool success = interpolateLists(from, to, fraction, interpolatedValues) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
PrerendererClient.cpp | 15 * contributors may be used to endorse or promote products derived from 46 PrerendererClient* PrerendererClient::from(Page* page) function in class:WebCore::PrerendererClient 48 PrerendererClient* supplement = static_cast<PrerendererClient*>(Supplement<Page>::from(page, supplementName()));
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
MIDIController.h | 15 * 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
|
/art/test/004-annotations/src/android/test/anno/ |
IntToString.java | 10 int from(); method in interface:IntToString
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
IntToString.java | 10 int from(); method in interface:IntToString
|
/external/chromium_org/printing/ |
page_range.h | 18 // 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/speech/ |
SpeechInput.h | 15 * contributors may be used to endorse or promote products derived from 58 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/modules/notifications/ |
NotificationController.h | 44 static NotificationController* from(Page* page) { return static_cast<NotificationController*>(Supplement<Page>::from(page, supplementName())); } function in class:WebCore::NotificationController
|
/external/chromium_org/third_party/icu/source/i18n/ |
zonemeta.h | 21 UDate from; member in struct:OlsonToMetaMappingEntry
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
spinlock_internal.h | 15 * 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/ |
spinlock_internal.h | 15 * 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/ |
zonemeta.h | 21 UDate from; member in struct:OlsonToMetaMappingEntry
|
/external/smack/src/org/jivesoftware/smack/filter/ |
FromContainsFilter.java | 26 * Filters for packets where the "from" field contains a specified value. 32 private String from; field in class:FromContainsFilter 35 * Creates a "from" contains filter using the "from" field part. 37 * @param from the from field value the packet must contain. 39 public FromContainsFilter(String from) { 40 if (from == null) { 43 this.from = from.toLowerCase() [all...] |
/frameworks/compile/mclinker/lib/Target/ |
ELFEmulation.cpp | 18 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:NameMap 73 pScript.sectionMap().append(map[i].from, map[i].to, exist);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_length.pass.cpp | 14 // 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+10, 10) == 10) [all...] |
char32_t_length.pass.cpp | 14 // 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+10, 10) == 10) [all...] |
char_length.pass.cpp | 14 // 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+10, 11) == 10) [all...] |
wchar_t_length.pass.cpp | 14 // 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+10, 11) == 10) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSUnicodeRangeValue.h | 36 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) 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) 51 , m_from(from)
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
DocumentXPathEvaluator.cpp | 44 DocumentXPathEvaluator* DocumentXPathEvaluator::from(DocumentSupplementable* document) function in class:WebCore::DocumentXPathEvaluator 46 DocumentXPathEvaluator* cache = static_cast<DocumentXPathEvaluator*>(DocumentSupplement::from(document, supplementName())); 57 DocumentXPathEvaluator* suplement = from(document); 65 DocumentXPathEvaluator* suplement = from(document); 75 DocumentXPathEvaluator* suplement = from(document);
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
DOMWindowCrypto.cpp | 15 * contributors may be used to endorse or promote products derived from 53 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window) function in class:WebCore::DOMWindowCrypto 55 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWindow>::from(window, supplementName())); 65 return DOMWindowCrypto::from(window)->crypto();
|