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

  /external/chromium_org/third_party/WebKit/public/web/
WebScopedMicrotaskSuppression.h 68 WebPrivateOwnPtr<Impl> m_impl; member in class:blink::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/wtf/text/
StringView.h 47 : m_impl(impl)
49 , m_length(m_impl->length())
54 : m_impl(impl)
58 ASSERT_WITH_SECURITY_IMPLICATION(offset + length <= m_impl->length());
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;
91 if (!m_impl)
99 RefPtr<StringImpl> m_impl; member in class:WTF::StringView
    [all...]
WTFString.h 117 String(StringImpl* impl) : m_impl(impl) { }
118 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
123 String(const String& other) : m_impl(other.m_impl) { }
124 String(String&& other) : m_impl(other.m_impl.release()) { }
125 String& operator=(const String& other) { m_impl = other.m_impl; return *this; }
126 String& operator=(String&& other) { m_impl = other.m_impl.release(); return *this;
454 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...]
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...]
HashMap.h 138 HashTableType m_impl; member in class:WTF::HashMap
250 m_impl.swap(other.m_impl);
256 return m_impl.size();
262 return m_impl.capacity();
268 return m_impl.isEmpty();
274 return m_impl.begin();
280 return m_impl.end();
286 return m_impl.begin();
292 return m_impl.end()
    [all...]
ListHashSet.h 163 ImplType m_impl; member in class:WTF::ListHashSet
538 m_impl.swap(other.m_impl);
553 return m_impl.size();
559 return m_impl.capacity();
565 return m_impl.isEmpty();
574 result += sizeof(*m_allocator) + (sizeof(typename ImplType::ValueType) * m_impl.capacity());
641 m_impl.remove(m_head);
670 m_impl.remove(m_tail);
677 ImplTypeIterator it = m_impl.template find<BaseTranslator>(value)
    [all...]
HashTable.h 1011 typename HashTableType::const_iterator m_impl; member in struct:WTF::HashTableConstIteratorAdapter
1030 typename HashTableType::iterator m_impl; member in struct:WTF::HashTableIteratorAdapter
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 81 WebPrivatePtr<WebCore::CryptoResult> m_impl; member in class:blink::WebCryptoResult
  /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());
110 QualifiedNameImpl* m_impl; member in class:WebCore::QualifiedName
    [all...]
  /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/platform/graphics/
GraphicsContext3D.h 132 blink::WebGraphicsContext3D* webContext() const { return m_impl; }
517 blink::WebGraphicsContext3D* m_impl; member in class:WebCore::GraphicsContext3D

Completed in 8350 milliseconds