/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebContentDecryptionModuleResult.cpp | 14 m_impl->complete(); 20 m_impl->completeWithSession(status); 26 m_impl->completeWithError(exception, systemCode, errorMessage); 31 : m_impl(impl) 33 ASSERT(m_impl.get()); 38 m_impl.reset(); 43 m_impl = o.m_impl;
|
WebCryptoResult.cpp | 43 m_impl->completeWithError(errorType, errorDetails); 50 m_impl->completeWithBuffer(buffer); 64 m_impl->completeWithJson(utf8Data, length); 70 m_impl->completeWithBoolean(b); 77 m_impl->completeWithKey(key); 85 m_impl->completeWithKeyPair(publicKey, privateKey); 91 return m_impl->cancelled(); 95 : m_impl(impl) 97 ASSERT(m_impl.get()); 102 m_impl.reset() [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...] |
HashCountedSet.h | 49 void swap(HashCountedSet& other) { m_impl.swap(other.m_impl); } 51 unsigned size() const { return m_impl.size(); } 52 unsigned capacity() const { return m_impl.capacity(); } 53 bool isEmpty() const { return m_impl.isEmpty(); } 56 iterator begin() { return m_impl.begin(); } 57 iterator end() { return m_impl.end(); } 58 const_iterator begin() const { return m_impl.begin(); } 59 const_iterator end() const { return m_impl.end(); } 61 iterator find(const ValueType& value) { return m_impl.find(value); 86 ImplType m_impl; member in class:WTF::HashCountedSet [all...] |
HashSet.h | 60 m_impl.swap(ref.m_impl); 66 m_impl.swap(ref.m_impl); 111 void trace(typename Allocator::Visitor* visitor) { m_impl.trace(visitor); } 114 HashTableType m_impl; member in class:WTF::HashSet 135 return m_impl.size(); 141 return m_impl.capacity(); 147 return m_impl.isEmpty(); 153 return m_impl.begin() [all...] |
HashMap.h | 88 m_impl.swap(ref.m_impl); 94 m_impl.swap(ref.m_impl); 155 void trace(typename Allocator::Visitor* visitor) { m_impl.trace(visitor); } 160 HashTableType m_impl; member in class:WTF::HashMap 272 return m_impl.size(); 278 return m_impl.capacity(); 284 return m_impl.isEmpty(); 290 return m_impl.begin() [all...] |
LinkedHashSet.h | 188 unsigned size() const { return m_impl.size(); } 189 unsigned capacity() const { return m_impl.capacity(); } 190 bool isEmpty() const { return m_impl.isEmpty(); } 240 AddResult insertBefore(iterator it, ValuePeekInType newValue) { return m_impl.template add<NodeHashFunctions>(newValue, it.node()); } 244 void clear() { m_impl.clear(); } 248 void trace(typename Allocator::Visitor* visitor) { m_impl.trace(visitor); } 250 int64_t modifications() const { return m_impl.modifications(); } 251 void checkModifications(int64_t mods) const { m_impl.checkModifications(mods); } 266 ImplType m_impl; member in class:WTF::LinkedHashSet 509 m_impl.swap(other.m_impl) [all...] |
ListHashSet.h | 124 unsigned size() const { return m_impl.size(); } 125 unsigned capacity() const { return m_impl.capacity(); } 126 bool isEmpty() const { return m_impl.isEmpty(); } 206 ImplType m_impl; member in class:WTF::ListHashSet 689 m_impl.swap(other.m_impl); 713 m_impl.remove(m_head); 742 m_impl.remove(m_tail); 749 ImplTypeIterator it = m_impl.template find<BaseTranslator>(value); 750 if (it == m_impl.end() [all...] |
/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 | 123 String(StringImpl* impl) : m_impl(impl) { } 124 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { } 129 String(const String& other) : m_impl(other.m_impl) { } 130 String(String&& other) : m_impl(other.m_impl.release()) { } 131 String& operator=(const String& other) { m_impl = other.m_impl; return *this; } 132 String& operator=(String&& other) { m_impl = other.m_impl.release(); return *this; 450 RefPtr<StringImpl> m_impl; member in class:WTF::String [all...] |
WTFString.cpp | 48 : m_impl(characters ? StringImpl::create(characters, length) : nullptr) 57 m_impl = StringImpl::create(str, lengthOfNullTerminatedString(str)); 62 : m_impl(characters ? StringImpl::create(characters, length) : nullptr) 67 : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters), length) : nullptr) 73 : m_impl(characters ? StringImpl::create(characters) : nullptr) 78 : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters)) : nullptr) 86 if (!m_impl) { 87 m_impl = string.m_impl; 96 if (m_impl->is8Bit() && string.m_impl->is8Bit()) [all...] |
StringCF.cpp | 39 m_impl = StringImpl::empty(); 45 m_impl = StringImpl::create(lcharBuffer.data(), size); 51 m_impl = StringImpl::create(buffer.data(), size); 57 if (!m_impl) 60 return m_impl->createCFString();
|
StringMac.mm | 35 m_impl = StringImpl::empty(); 41 m_impl = StringImpl::create(lcharBuffer.data(), size); 47 m_impl = StringImpl::create(ucharBuffer.data(), size);
|
/external/lldb/source/Core/ |
ValueObjectConstResultChild.cpp | 41 m_impl(this) 53 return m_impl.Dereference(error); 59 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create); 65 return m_impl.AddressOf(error); 71 return m_impl.CreateChildAtIndex(idx, synthetic_array_member, synthetic_index); 79 return m_impl.GetPointeeData(data, item_idx, item_count);
|
ValueObjectConstResult.cpp | 51 m_impl(this, address) 85 m_impl(this, address) 140 m_impl(this, address) 180 m_impl(this, address) 217 m_impl(this) 229 m_impl(this) 299 return m_impl.Dereference(error); 305 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create); 311 return m_impl.AddressOf(error); 318 return m_impl.GetAddressOf(scalar_is_load_address, address_type) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
QualifiedName.h | 105 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { } 106 const QualifiedName& operator=(const QualifiedName& other) { m_impl = other.m_impl; return *this; } 109 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { } 110 bool isHashTableDeletedValue() const { return m_impl.isHashTableDeletedValue(); } 112 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; } 115 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); 146 RefPtr<QualifiedNameImpl> m_impl; member in class:WebCore::QualifiedName [all...] |
QualifiedName.cpp | 84 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue; 91 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue; 128 if (!m_impl->m_localNameUpper) 129 m_impl->m_localNameUpper = m_impl->m_localName.upper(); 130 return m_impl->m_localNameUpper;
|
/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/lldb/source/Target/ |
CPPLanguageRuntime.cpp | 27 m_impl.Append(ConstString("std::basic_string<char, std::char_traits<char>, std::allocator<char> >").AsCString(), ConstString("basic_string<char>")); 30 m_impl.Append(ConstString("std::basic_string<char, std::char_traits<char>, std::allocator<char> >").AsCString(), ConstString("std::basic_string<char>")); 32 m_impl.Sort(); 39 m_impl.Insert(type_name.AsCString(), type_equivalent); 49 for (ImplData match = m_impl.FindFirstValueForName(type_name.AsCString()); 51 match = m_impl.FindNextValueForName(match)) 74 size_t items_count = m_impl.GetSize(); 78 const char* key_cstr = m_impl.GetCStringAtIndex(item); 117 for (ImplData match = m_impl.FindFirstValueForName(matching_key); 119 match = m_impl.FindNextValueForName(match) 142 Impl m_impl; member in class:CPPRuntimeEquivalents [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebScopedMicrotaskSuppression.cpp | 52 m_impl.reset(new Impl(v8::Isolate::GetCurrent())); 59 m_impl.reset(0);
|
/external/chromium_org/tools/win/DebugVisualizers/ |
webkit.natvis | 5 <DisplayString Condition="m_impl.m_ptr == 0">(null)</DisplayString> 6 <DisplayString>{*m_impl.m_ptr}</DisplayString> 8 <Item Name="Impl">m_impl.m_ptr</Item>
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebContentDecryptionModuleResult.h | 68 WebPrivatePtr<WebCore::ContentDecryptionModuleResult> m_impl; member in class:blink::WebContentDecryptionModuleResult
|
/external/lldb/source/DataFormatters/ |
TypeSummary.cpp | 149 m_impl(impl), 160 if (!m_impl || m_impl(*valobj,stream) == false) 170 sstr.Printf ("`%s (%p) `%s%s%s%s%s%s%s", m_description.c_str(),m_impl,
|
/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;
|