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

  /external/chromium_org/third_party/WebKit/public/web/
WebScopedMicrotaskSuppression.h 68 WebPrivateOwnPtr<Impl> m_impl; member in class:WebKit::WebScopedMicrotaskSuppression
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 31 private final ButtonPropertyEditorPresentationImpl m_impl; field in class:ButtonPropertyEditorPresentation
44 m_impl =
59 m_impl.setSelection(propertyTable, property, selected);
74 return m_impl.show(propertyTable, property, x, y, width, height);
79 m_impl.hide(propertyTable, property);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
KeyOperation.h 81 WebKit::WebCryptoKeyOperation* m_impl; member in class:WebCore::KeyOperation
CryptoOperation.h 117 WebKit::WebCryptoOperation* m_impl; member in class:WebCore::CryptoOperationImpl
135 CryptoOperationImpl* impl() { return m_impl.get(); }
143 RefPtr<CryptoOperationImpl> m_impl; member in class:WebCore::CryptoOperation
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringView.h 47 : m_impl(impl)
49 , m_length(m_impl->length())
54 : m_impl(impl)
71 bool is8Bit() const { return m_impl->is8Bit(); }
75 if (!m_impl)
78 return m_impl->characters8() + m_offset;
83 if (!m_impl)
86 return m_impl->characters16() + m_offset;
90 RefPtr<StringImpl> m_impl; member in class:WTF::StringView
WTFString.h 117 String(StringImpl* impl) : m_impl(impl) { }
118 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
119 String(RefPtr<StringImpl> impl) : m_impl(impl) { }
123 String(const char* characters, ConstructFromLiteralTag) : m_impl(StringImpl::create(reinterpret_cast<const LChar*>(characters))) { }
128 String(const String& other) : m_impl(other.m_impl) { }
129 String(String&& other) : m_impl(other.m_impl.release()) { }
130 String& operator=(const String& other) { m_impl = other.m_impl; return *this;
468 RefPtr<StringImpl> m_impl; member in class:WTF::String
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 78 ImplType m_impl; member in class:WTF::HashCountedSet
84 m_impl.swap(other.m_impl);
90 return m_impl.size();
96 return m_impl.capacity();
108 return m_impl.begin();
114 return m_impl.end();
120 return m_impl.begin();
126 return m_impl.end();
132 return m_impl.find(value)
    [all...]
Functional.h 537 return !m_impl;
546 : m_impl(impl)
552 return static_cast<FunctionImpl<FunctionType>*>(m_impl.get());
556 RefPtr<FunctionImplBase> m_impl; member in class:WTF::FunctionBase
HashIterators.h 44 HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
46 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
50 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; }
56 typename HashTableType::const_iterator m_impl; member in struct:WTF::HashTableConstIteratorAdapter
67 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
69 ValueType* get() const { return (ValueType*)m_impl.get(); }
73 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
77 typename HashTableType::const_iterator i = m_impl;
84 typename HashTableType::iterator m_impl; member in struct:WTF::HashTableIteratorAdapter
92 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {
101 ConstIterator m_impl; member in struct:WTF::HashTableConstKeysIterator
118 ConstIterator m_impl; member in struct:WTF::HashTableConstValuesIterator
141 Iterator m_impl; member in struct:WTF::HashTableKeysIterator
164 Iterator m_impl; member in struct:WTF::HashTableValuesIterator
    [all...]
HashSet.h 95 HashTableType m_impl; member in class:WTF::HashSet
115 m_impl.swap(other.m_impl);
121 return m_impl.size();
127 return m_impl.capacity();
133 return m_impl.isEmpty();
139 return m_impl.begin();
145 return m_impl.end();
151 return m_impl.find(value);
157 return m_impl.contains(value)
    [all...]
HashMap.h 137 HashTableType m_impl; member in class:WTF::HashMap
249 m_impl.swap(other.m_impl);
255 return m_impl.size();
261 return m_impl.capacity();
267 return m_impl.isEmpty();
273 return m_impl.begin();
279 return m_impl.end();
285 return m_impl.begin();
291 return m_impl.end()
    [all...]
RefPtrHashMap.h 111 HashTableType m_impl; member in class:WTF::HashMap
117 m_impl.swap(other.m_impl);
123 return m_impl.size();
129 return m_impl.capacity();
135 return m_impl.isEmpty();
141 return m_impl.begin();
147 return m_impl.end();
153 return m_impl.begin();
159 return m_impl.end()
    [all...]
ListHashSet.h 164 ImplType m_impl; member in class:WTF::ListHashSet
541 m_impl.swap(other.m_impl);
556 return m_impl.size();
562 return m_impl.capacity();
568 return m_impl.isEmpty();
575 result += sizeof(typename ImplType::ValueType) * m_impl.capacity();
642 m_impl.remove(m_head);
671 m_impl.remove(m_tail);
678 ImplTypeIterator it = m_impl.template find<BaseTranslator>(value)
    [all...]
HashTable.h 1005 typename HashTableType::const_iterator m_impl; member in struct:WTF::HashTableConstIteratorAdapter
1024 typename HashTableType::iterator m_impl; member in struct:WTF::HashTableIteratorAdapter
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
QualifiedName.h 70 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { }
71 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); }
74 QualifiedName() : m_impl(0) { }
77 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); }
78 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
80 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
83 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI());
108 QualifiedNameImpl* m_impl; member in class:WebCore::QualifiedName
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 198 WebPrivatePtr<WebCryptoOperationResultPrivate> m_impl; member in class:WebKit::WebCryptoOperationResult
256 WebPrivatePtr<WebCryptoKeyOperationResultPrivate> m_impl; member in class:WebKit::WebCryptoKeyOperationResult
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
callback.hpp 106 callback0( callback0 const& rhs ) : m_impl( rhs.m_impl ) {}
111 : m_impl( new ut_detail::callback0_impl_t<R,Functor>( f ) ) {}
113 void operator=( callback0 const& rhs ) { m_impl = rhs.m_impl; }
116 void operator=( Functor f ) { m_impl.reset( new ut_detail::callback0_impl_t<R,Functor>( f ) ); }
118 R operator()() const { return m_impl->invoke(); }
120 bool operator!() const { return !m_impl; }
124 boost::shared_ptr<ut_detail::callback0_impl<R> > m_impl; member in class:boost::unit_test::callback0
164 callback1( callback1 const& rhs ) : m_impl( rhs.m_impl ) {
182 boost::shared_ptr<ut_detail::callback1_impl<R,T1> > m_impl; member in class:boost::unit_test::callback1
239 boost::shared_ptr<ut_detail::callback2_impl<R,T1,T2> > m_impl; member in class:boost::unit_test::callback2
297 boost::shared_ptr<ut_detail::callback3_impl<R,T1,T2,T3> > m_impl; member in class:boost::unit_test::callback3
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext3D.h 444 WebKit::WebGraphicsContext3D* webContext() const { return m_impl; }
829 WebKit::WebGraphicsContext3D* m_impl; member in class:WebCore::GraphicsContext3D
    [all...]

Completed in 588 milliseconds