Searched refs:WTF (Results 251 - 275 of 607) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAlloc.h116 namespace WTF { namespace
656 } // namespace WTF
658 using WTF::SizeSpecificPartitionAllocator;
659 using WTF::PartitionAllocatorGeneric;
660 using WTF::PartitionRoot;
661 using WTF::partitionAllocInit;
662 using WTF::partitionAllocShutdown;
663 using WTF::partitionAlloc;
664 using WTF::partitionFree;
665 using WTF
[all...]
H A DHashMapTest.cpp37 typedef WTF::HashMap<int, int> IntHashMap;
104 typedef WTF::HashMap<int, OwnPtr<DestructCounter> > OwnPtrHashMap;
140 class DummyRefCounted: public WTF::RefCounted<DummyRefCounted> {
152 WTF::RefCounted<DummyRefCounted>::ref();
159 WTF::RefCounted<DummyRefCounted>::deref();
H A DPartitionAlloc.cpp42 COMPILE_ASSERT(WTF::kPartitionPageSize * 4 <= WTF::kSuperPageSize, ok_super_page_size);
43 COMPILE_ASSERT(!(WTF::kSuperPageSize % WTF::kPartitionPageSize), ok_super_page_multiple);
46 COMPILE_ASSERT(WTF::kSystemPageSize * 4 <= WTF::kPartitionPageSize, ok_partition_page_size);
47 COMPILE_ASSERT(!(WTF::kPartitionPageSize % WTF::kSystemPageSize), ok_partition_page_multiple);
48 COMPILE_ASSERT(sizeof(WTF::PartitionPage) <= WTF
56 namespace WTF { namespace
[all...]
H A DPassOwnPtr.h33 namespace WTF { namespace
143 } // namespace WTF
145 using WTF::PassOwnPtr;
146 using WTF::adoptPtr;
147 using WTF::adoptArrayPtr;
148 using WTF::static_pointer_cast;
H A DDoublyLinkedList.h29 namespace WTF { namespace
189 } // namespace WTF
191 using WTF::DoublyLinkedListNode;
192 using WTF::DoublyLinkedList;
H A DTypeTraits.h27 namespace WTF { namespace
288 typename WTF::EnableIf<WTF::IsPointerConvertible<From, To>::Value, bool>::Type = true
290 typename WTF::EnableIf<WTF::IsPointerConvertible<From, To>::Value, bool>::Type
292 } // namespace WTF
300 namespace WTF { namespace
344 } // namespace WTF
H A DBloomFilter.h32 namespace WTF { namespace
137 using WTF::BloomFilter;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.h43 namespace WTF { namespace
111 friend struct WTF::CStringTranslator;
112 template<typename CharacterType> friend struct WTF::HashAndCharactersTranslator;
113 friend struct WTF::HashAndUTF8CharactersTranslator;
114 friend struct WTF::CharBufferFromLiteralDataTranslator;
115 friend struct WTF::LCharBufferTranslator;
116 friend struct WTF::SubstringTranslator;
117 friend struct WTF::UCharBufferTranslator;
120 // StringImpls are allocated out of the WTF buffer partition.
628 return WTF
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.h669 WTF::OwnPtr<Entry[]> m_entries;
690 class ThreadSafeRefCountedGarbageCollected : public GarbageCollectedFinalized<T>, public WTF::ThreadSafeRefCountedBase {
710 WTF::ThreadSafeRefCountedBase::ref();
1243 // In contrast to the normal WTF::RefCounted, the reference count
1266 // In contrast to the normal WTF::RefCounted implementation, the
1304 WTF::adopted(ptr);
1593 CollectionBackingTraceTrait<WTF::ShouldBeTraced<Traits>::value, Traits::weakHandlingFlag, WTF::WeakPointersActWeak, T, Traits>::trace(visitor, t);
1623 // The WTF classes use Allocator::VectorBackingHelper in order to find a
1668 template<typename T, size_t u, typename V> friend class WTF
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8StringResource.h47 m_threadId = WTF::currentThread();
58 m_threadId = WTF::currentThread();
67 ASSERT(m_threadId == WTF::currentThread());
80 ASSERT(m_threadId == WTF::currentThread());
107 WTF::ThreadIdentifier m_threadId;
H A DScriptGCEvent.cpp91 gcEventData->setStartTime(WTF::monotonicallyIncreasingTime());
100 double endTime = WTF::monotonicallyIncreasingTime();
H A DV8DOMActivityLogger.cpp17 typedef HashMap<int, OwnPtr<V8DOMActivityLogger>, WTF::IntHash<int>, WTF::UnsignedWithZeroKeyHashTraits<int> > DOMActivityLoggerMapForIsolatedWorld;
H A Dnpruntime.cpp55 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
90 // Implement WTF::DefaultHash<StringKey>::Hash interface.
126 struct StringKeyHashTraits : WTF::GenericHashTraits<StringKey> {
129 new (&slot) StringKey(WTF::HashTableDeletedValue);
138 typedef WTF::HashMap<StringKey, PrivateIdentifier*, StringKeyHash, StringKeyHashTraits> StringIdentifierMap;
148 typedef WTF::HashMap<int, PrivateIdentifier*> IntIdentifierMap;
358 typedef WTF::HashSet<NPObject*> NPObjectSet;
359 typedef WTF::HashMap<NPObject*, NPObject*> NPObjectMap;
360 typedef WTF::HashMap<NPObject*, NPObjectSet*> NPRootObjectMap;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSearchableFormData.cpp55 void GetFormEncoding(const HTMLFormElement* form, WTF::TextEncoding* encoding)
62 *encoding = WTF::TextEncoding(*i);
68 *encoding = WTF::TextEncoding(form->document().encoding());
199 bool buildSearchString(const HTMLFormElement* form, Vector<char>* encodedString, WTF::TextEncoding* encoding, const HTMLInputElement* textElement)
248 WTF::TextEncoding encoding;
H A DWebDevToolsAgentImpl.h102 virtual void updateInspectorStateCookie(const WTF::String&) OVERRIDE;
111 virtual void setTraceEventCallback(const WTF::String& categoryFilter, TraceEventCallback) OVERRIDE;
113 virtual void enableTracing(const WTF::String& categoryFilter) OVERRIDE;
H A DTextFinder.h160 bool shouldScopeMatches(const WTF::String& searchText);
214 WTF::String m_lastSearchString;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRuleFeature.h112 typedef WillBeHeapHashMap<CSSSelector::PseudoType, RefPtrWillBeMember<DescendantInvalidationSet>, WTF::IntHash<unsigned>, WTF::UnsignedWithZeroKeyHashTraits<unsigned> > PseudoTypeInvalidationSetMap;
178 namespace WTF { namespace
186 } // namespace WTF
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DQualifiedName.h101 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
172 namespace WTF { namespace
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormDataList.cpp32 FormDataList::FormDataList(const WTF::TextEncoding& c)
39 CString encodedString = m_encoding.encode(string, WTF::EntitiesForUnencodables);
67 void FormDataList::appendKeyValuePairItemsTo(FormData* formData, const WTF::TextEncoding& encoding, bool isMultiPartForm, FormData::EncodingType encodingType)
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTime.h112 static unsigned hash(const SMILTime& key) { return WTF::FloatHash<double>::hash(key.value()); }
113 static bool equal(const SMILTime& a, const SMILTime& b) { return WTF::FloatHash<double>::equal(a.value(), b.value()); }
119 namespace WTF { namespace
131 } // namespace WTF
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DDecodeEscapeSequences.h56 static String decodeRun(const CharType* run, size_t runLength, const WTF::TextEncoding&) argument
103 static String decodeRun(const CharType* run, size_t runLength, const WTF::TextEncoding& encoding)
126 String decodeEscapeSequences(const String& string, const WTF::TextEncoding& encoding)
H A DLocaleMac.mm125 for (unsigned i = 0; i < WTF_ARRAY_LENGTH(WTF::monthFullName); ++i)
126 m_monthLabels.append(WTF::monthFullName[i]);
141 for (unsigned i = 0; i < WTF_ARRAY_LENGTH(WTF::weekdayName); ++i) {
143 m_weekDayShortLabels.append(WTF::weekdayName[(i + 6) % 7]);
250 for (unsigned i = 0; i < WTF_ARRAY_LENGTH(WTF::monthName); ++i)
251 m_shortMonthLabels.append(WTF::monthName[i]);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDOMFilePath.cpp118 if (path.find(static_cast<UChar>(0)) != WTF::kNotFound)
122 if (path.find('\\') != WTF::kNotFound)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebHTTPLoadInfo.cpp55 WebHTTPLoadInfo::WebHTTPLoadInfo(WTF::PassRefPtr<ResourceLoadInfo> value)
60 WebHTTPLoadInfo::operator WTF::PassRefPtr<ResourceLoadInfo>() const
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzFace.cpp72 typedef HashMap<uint64_t, RefPtr<FaceCacheEntry>, WTF::IntHash<uint64_t>, WTF::UnsignedWithZeroKeyHashTraits<uint64_t> > HarfBuzzFaceCache;

Completed in 525 milliseconds

<<11121314151617181920>>