HomeSort by relevance Sort by last modified time
    Searched defs:WTF (Results 226 - 250 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSpecific.h 45 #include "wtf/Noncopyable.h"
46 #include "wtf/StdLibExtras.h"
47 #include "wtf/WTF.h"
48 #include "wtf/WTFExport.h"
56 namespace WTF {
60 // This is done automatically for threads created with WTF::createThread.
281 } // namespace WTF
283 using WTF::ThreadSpecific;
ThreadingWin.cpp 91 #include "wtf/CurrentTime.h"
92 #include "wtf/DateMath.h"
93 #include "wtf/HashMap.h"
94 #include "wtf/MainThread.h"
95 #include "wtf/MathExtras.h"
96 #include "wtf/OwnPtr.h"
97 #include "wtf/PassOwnPtr.h"
98 #include "wtf/ThreadFunctionInvocation.h"
99 #include "wtf/ThreadSpecific.h"
100 #include "wtf/ThreadingPrimitives.h
    [all...]
TreeNode.h 34 #include "wtf/Assertions.h"
36 namespace WTF {
202 using WTF::TreeNode;
203 using WTF::traverseNext;
204 using WTF::traverseNextPostOrder;
Assertions.h 43 #include "wtf/Compiler.h"
44 #include "wtf/WTFExport.h"
81 /* WTF logging functions can process %@ in the format string to log a NSObject* but the printf format attribute
116 namespace WTF {
129 } // namespace WTF
131 using WTF::FrameToNameScope;
CheckedArithmetic.h 29 #include "wtf/Assertions.h"
30 #include "wtf/EnumClass.h"
31 #include "wtf/TypeTraits.h"
68 namespace WTF {
712 using WTF::Checked;
713 using WTF::CheckedState;
714 using WTF::RecordOverflow;
HashSet.h 24 #include "wtf/DefaultAllocator.h"
25 #include "wtf/HashTable.h"
27 namespace WTF {
103 void removeAll(const Collection& toBeRemoved) { WTF::removeAll(*this, toBeRemoved); }
282 } // namespace WTF
284 using WTF::HashSet;
HashTraits.h 24 #include "wtf/HashFunctions.h"
25 #include "wtf/HashTableDeletedValueType.h"
26 #include "wtf/StdLibExtras.h"
27 #include "wtf/TypeTraits.h"
32 namespace WTF {
321 } // namespace WTF
323 using WTF::HashTraits;
324 using WTF::PairHashTraits;
325 using WTF::NullableHashTraits;
326 using WTF::SimpleClassHashTraits
    [all...]
RetainPtr.h 24 #include "wtf/HashTableDeletedValueType.h"
25 #include "wtf/HashTraits.h"
26 #include "wtf/NullPtr.h"
27 #include "wtf/TypeTraits.h"
46 namespace WTF {
300 } // namespace WTF
302 using WTF::AdoptCF;
303 using WTF::AdoptNS;
304 using WTF::adoptCF;
305 using WTF::adoptNS
    [all...]
TypeTraits.h 27 namespace WTF {
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 {
344 } // namespace WTF
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.cc 37 namespace WTF {
    [all...]
bignum.cc 33 namespace WTF {
770 } // namespace WTF
double-conversion.cc 42 namespace WTF {
606 } // namespace WTF
double-conversion.h 31 #include "wtf/dtoa/utils.h"
33 namespace WTF {
375 } // namespace WTF
double.h 33 namespace WTF {
247 } // namespace WTF
fixed-dtoa.cc 35 namespace WTF {
408 } // namespace WTF
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.h 24 #include "wtf/HashTableDeletedValueType.h"
25 #include "wtf/WTFExport.h"
26 #include "wtf/text/CString.h"
27 #include "wtf/text/WTFString.h"
29 namespace WTF {
73 AtomicString(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
188 inline bool operator==(const AtomicString& a, const char* b) { return WTF::equal(a.impl(), reinterpret_cast<const LChar*>(b)); }
245 } // namespace WTF
249 using WTF::AtomicString
    [all...]
StringBuilder.cpp 32 #include "wtf/dtoa.h"
34 namespace WTF {
396 } // namespace WTF
AtomicString.cpp 27 #include "wtf/HashSet.h"
28 #include "wtf/WTFThreadData.h"
29 #include "wtf/dtoa.h"
30 #include "wtf/text/IntegerToStringConversion.h"
31 #include "wtf/unicode/UTF8.h"
33 namespace WTF {
148 return WTF::equal(str, buf.s, buf.length);
176 return WTF::equal(string, buffer.characters, buffer.length);
314 return WTF::equal(string, buffer.baseString->characters8() + buffer.start, buffer.length);
315 return WTF::equal(string, buffer.baseString->characters16() + buffer.start, buffer.length)
    [all...]
TextCodecICU.cpp 28 #include "wtf/text/TextCodecICU.h"
32 #include "wtf/Assertions.h"
33 #include "wtf/StringExtras.h"
34 #include "wtf/Threading.h"
35 #include "wtf/WTFThreadData.h"
36 #include "wtf/text/CString.h"
37 #include "wtf/text/StringBuilder.h"
38 #include "wtf/unicode/CharacterNames.h"
42 namespace WTF {
546 } // namespace WTF
    [all...]
TextEncodingRegistry.cpp 28 #include "wtf/text/TextEncodingRegistry.h"
30 #include "wtf/ASCIICType.h"
31 #include "wtf/CurrentTime.h"
32 #include "wtf/HashMap.h"
33 #include "wtf/HashSet.h"
34 #include "wtf/MainThread.h"
35 #include "wtf/StdLibExtras.h"
36 #include "wtf/StringExtras.h"
37 #include "wtf/ThreadingPrimitives.h"
38 #include "wtf/text/CString.h
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 28 #include "wtf/unicode/UTF8.h"
30 #include "wtf/ASCIICType.h"
31 #include "wtf/StringHasher.h"
32 #include "wtf/unicode/CharacterNames.h"
34 namespace WTF {
471 } // namespace WTF
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 42 namespace WTF { template <typename T> class PassRefPtr; }
102 BLINK_PLATFORM_EXPORT explicit WebCryptoResult(const WTF::PassRefPtr<CryptoResult>&);
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleFeature.h 27 #include "wtf/Forward.h"
28 #include "wtf/HashSet.h"
29 #include "wtf/text/AtomicStringHash.h"
112 typedef WillBeHeapHashMap<CSSSelector::PseudoType, RefPtrWillBeMember<DescendantInvalidationSet>, WTF::IntHash<unsigned>, WTF::UnsignedWithZeroKeyHashTraits<unsigned> > PseudoTypeInvalidationSetMap;
178 namespace WTF {
186 } // namespace WTF
  /external/chromium_org/third_party/WebKit/Source/core/dom/
QualifiedName.h 24 #include "wtf/HashTableDeletedValueType.h"
25 #include "wtf/HashTraits.h"
26 #include "wtf/RefCounted.h"
27 #include "wtf/text/AtomicString.h"
101 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
172 namespace WTF {
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.h 35 #include "wtf/HashSet.h"
36 #include "wtf/PassOwnPtr.h"
37 #include "wtf/PassRefPtr.h"
38 #include "wtf/RefCounted.h"
39 #include "wtf/Vector.h"
40 #include "wtf/text/StringHash.h"
41 #include "wtf/text/TextPosition.h"
42 #include "wtf/text/WTFString.h"
44 namespace WTF {
109 bool allowJavaScriptURLs(const String& contextURL, const WTF::OrdinalNumber& contextLine, ReportingStatus = SendReport) const
    [all...]

Completed in 293 milliseconds

1 2 3 4 5 6 7 8 91011