HomeSort by relevance Sort by last modified time
    Searched defs:PeekType (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicStringHash.h 54 typedef const WTF::AtomicString& PeekType;
57 static PeekType peek(const WTF::AtomicString& value) { return value; }
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTraits.h 91 typedef T PeekType;
92 static PeekType peek(const T& value) { return value; }
142 typedef typename OwnPtr<P>::PtrType PeekType;
143 static PeekType peek(const OwnPtr<P>& value) { return value.get(); }
144 static PeekType peek(std::nullptr_t) { return 0; }
157 typedef P* PeekType;
158 static PeekType peek(const RefPtr<P>& value) { return value.get(); }
159 static PeekType peek(P* value) { return value; }

Completed in 48 milliseconds