HomeSort by relevance Sort by last modified time
    Searched full:m_impl (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebCrypto.cpp 40 m_impl->initializationFailed();
46 m_impl->initializationSucceeded(op);
52 m_impl->completeWithError();
58 m_impl->completeWithArrayBuffer(buffer);
64 m_impl->completeWithBoolean(b);
70 m_impl.reset();
75 m_impl = o.m_impl;
80 m_impl = impl;
85 m_impl->initializationFailed()
    [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/wtf/
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...]
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...]
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...]
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...]
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...]
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/wtf/text/
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...]
WTFString.cpp 48 : m_impl(characters ? StringImpl::create(characters, length) : 0)
57 m_impl = StringImpl::create(str, lengthOfNullTerminatedString(str));
62 : m_impl(characters ? StringImpl::create(characters, length) : 0)
67 : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters), length) : 0)
73 : m_impl(characters ? StringImpl::create(characters) : 0)
78 : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters)) : 0)
86 if (!m_impl) {
87 m_impl = string.m_impl;
96 if (m_impl->is8Bit() && string.m_impl->is8Bit())
    [all...]
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
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoOperation.cpp 48 , m_impl(0)
73 m_impl->finish();
80 ASSERT(!m_impl);
99 ASSERT(!m_impl);
101 m_impl = operationImpl;
109 m_impl = 0;
118 m_impl = 0;
127 m_impl = 0;
138 m_impl->process(reinterpret_cast<const unsigned char*>(bytes), size);
154 // This will cause m_impl to be deleted
    [all...]
KeyOperation.cpp 49 , m_impl(0)
56 ASSERT(!m_impl);
62 ASSERT(!m_impl);
72 ASSERT(!m_impl);
74 m_impl = operationImpl;
82 m_impl = 0;
92 m_impl = 0;
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
KeyOperation.h 81 WebKit::WebCryptoKeyOperation* m_impl; member in class:WebCore::KeyOperation
  /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...]
QualifiedName.cpp 75 m_impl = *addResult.iterator;
77 m_impl->ref();
88 if (!m_impl)
92 m_impl->deref();
125 if (!m_impl->m_localNameUpper)
126 m_impl->m_localNameUpper = m_impl->m_localName.upper();
127 return m_impl->m_localNameUpper;
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/cf/
StringCF.cpp 38 m_impl = StringImpl::empty();
44 m_impl = StringImpl::create(lcharBuffer.data(), size);
50 m_impl = StringImpl::create(buffer.data(), size);
56 if (!m_impl)
59 return m_impl->createCFString();
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/mac/
StringMac.mm 35 m_impl = StringImpl::empty();
41 m_impl = StringImpl::create(lcharBuffer.data(), size);
47 m_impl = StringImpl::create(ucharBuffer.data(), size);
  /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/core/platform/graphics/
GraphicsContext3D.cpp 85 : m_impl(webContext.get())
98 , m_impl(m_provider->context3d())
125 m_impl->name(); \
131 return m_impl->name(); \
137 m_impl->name(a1); \
143 return m_impl->name(a1); \
149 m_impl->name(a1, a2); \
155 return m_impl->name(a1, a2); \
161 m_impl->name(a1, a2, a3); \
167 return m_impl->name(a1, a2, a3);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebScopedMicrotaskSuppression.cpp 46 m_impl.reset(new Impl());
53 m_impl.reset(0);
  /external/eigen/unsupported/Eigen/
FFT 175 FFT( const impl_type & impl=impl_type() , Flag flags=Default ) :m_impl(impl),m_flag(flags) { }
189 m_impl.fwd(dst,src,static_cast<int>(nfft));
197 m_impl.fwd(dst,src,static_cast<int>(nfft));
204 m_impl.fwd2(dst,src,n0,n1);
274 m_impl.inv( dst,src,static_cast<int>(nfft) );
282 m_impl.inv( dst,src,static_cast<int>(nfft) );
363 m_impl.inv2(dst,src,n0,n1);
370 impl_type & impl() {return m_impl;}
398 impl_type m_impl;
  /external/chromium_org/third_party/WebKit/Tools/gdb/
webkit.py 144 return self.val['m_impl']['m_ptr']
186 if self.val['m_impl']:
188 self.val['m_impl']['m_prefix']['m_string'])
190 self.val['m_impl']['m_localName']['m_string'])

Completed in 416 milliseconds

1 2