Searched refs:m_impl (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebContentDecryptionModuleResult.cpp14 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;
H A DWebCryptoResult.cpp43 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
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringView.h47 : 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...]
H A DStringCF.cpp39 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();
H A DWTFString.cpp48 : 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
[all...]
H A DWTFString.h123 String(StringImpl* impl) : m_impl(impl) { }
124 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
126 void swap(String& o) { m_impl.swap(o.m_impl); }
136 bool isNull() const { return !m_impl; }
137 bool isEmpty() const { return !m_impl || !m_impl->length(); }
139 StringImpl* impl() const { return m_impl.get(); }
140 PassRefPtr<StringImpl> releaseImpl() { return m_impl.release(); }
144 if (!m_impl)
438 RefPtr<StringImpl> m_impl; member in class:WTF::String
[all...]
H A DStringMac.mm35 m_impl = StringImpl::empty();
41 m_impl = StringImpl::create(lcharBuffer.data(), size);
47 m_impl = StringImpl::create(ucharBuffer.data(), size);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocketChannelClientProxy.h32 m_impl->didConnect(subprotocol, extensions);
36 m_impl->didReceiveMessage(message);
40 m_impl->didReceiveBinaryData(binaryData);
44 m_impl->didReceiveMessageError();
48 m_impl->didConsumeBufferedAmount(consumed);
52 m_impl->didStartClosingHandshake();
56 WebSocketImpl* impl = m_impl;
57 m_impl = nullptr;
63 : m_impl(impl)
67 WebSocketImpl* m_impl; member in class:blink::FINAL
[all...]
H A DWebScopedMicrotaskSuppression.cpp53 m_impl.reset(new Impl(v8::Isolate::GetCurrent()));
60 m_impl.reset(0);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h44 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(imp
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...]
H A DHashCountedSet.h49 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
86 ImplType m_impl; member in class:WTF::HashCountedSet
[all...]
H A DHashSet.h60 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
[all...]
H A DHashMap.h88 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
[all...]
H A DLinkedHashSet.h188 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
501 m_impl
[all...]
H A DListHashSet.h124 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DQualifiedName.h97 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { }
98 const QualifiedName& operator=(const QualifiedName& other) { m_impl = other.m_impl; return *this; }
101 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
102 bool isHashTableDeletedValue() const { return m_impl.isHashTableDeletedValue(); }
104 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
107 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localNam
138 RefPtr<QualifiedNameImpl> m_impl; member in class:blink::QualifiedName
[all...]
H A DQualifiedName.cpp87 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue;
94 m_impl = addResult.isNewEntry ? adoptRef(*addResult.storedValue) : *addResult.storedValue;
131 if (!m_impl->m_localNameUpper)
132 m_impl->m_localNameUpper = m_impl->m_localName.upper();
133 return m_impl->m_localNameUpper;
/external/lldb/source/Core/
H A DValueObjectConstResultChild.cpp41 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);
H A DValueObjectConstResult.cpp51 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
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebScopedMicrotaskSuppression.h71 WebPrivateOwnPtr<Impl> m_impl; member in class:blink::WebScopedMicrotaskSuppression
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java31 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/
H A DCPPLanguageRuntime.cpp27 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
142 Impl m_impl; member in class:CPPRuntimeEquivalents
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebContentDecryptionModuleResult.h65 WebPrivatePtr<ContentDecryptionModuleResult> m_impl; member in class:blink::WebContentDecryptionModuleResult
/external/lldb/source/DataFormatters/
H A DTypeSummary.cpp149 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/lldb/include/lldb/Core/
H A DValueObjectConstResult.h113 return m_impl.GetLiveAddress();
120 m_impl.SetLiveAddress(addr,
137 ValueObjectConstResultImpl m_impl; member in class:lldb_private::ValueObjectConstResult

Completed in 1296 milliseconds

12