Home
last modified time | relevance | path

Searched refs:m_impl (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
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;
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;
92 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
[all …]
DHashSet.h95 HashTableType m_impl; variable
115 m_impl.swap(other.m_impl); in swap()
121 return m_impl.size(); in size()
127 return m_impl.capacity(); in capacity()
133 return m_impl.isEmpty(); in isEmpty()
139 return m_impl.begin(); in begin()
145 return m_impl.end(); in end()
151 return m_impl.find(value); in find()
157 return m_impl.contains(value); in contains()
165 return m_impl.template find<HashSetTranslatorAdapter<HashTranslator> >(value); in find()
[all …]
DHashCountedSet.h78 ImplType m_impl;
84 m_impl.swap(other.m_impl); in swap()
90 return m_impl.size(); in size()
96 return m_impl.capacity(); in capacity()
108 return m_impl.begin(); in begin()
114 return m_impl.end(); in end()
120 return m_impl.begin(); in begin()
126 return m_impl.end(); in end()
132 return m_impl.find(value); in find()
138 return m_impl.find(value); in find()
[all …]
DRefPtrHashMap.h111 HashTableType m_impl; variable
117 m_impl.swap(other.m_impl); in swap()
123 return m_impl.size(); in size()
129 return m_impl.capacity(); in capacity()
135 return m_impl.isEmpty(); in isEmpty()
141 return m_impl.begin(); in begin()
147 return m_impl.end(); in end()
153 return m_impl.begin(); in begin()
159 return m_impl.end(); in end()
165 return m_impl.find(key); in find()
[all …]
DHashMap.h138 HashTableType m_impl;
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();
298 return m_impl.find(key);
[all …]
DListHashSet.h163 ImplType m_impl; variable
538 m_impl.swap(other.m_impl); in swap()
553 return m_impl.size(); in size()
559 return m_impl.capacity(); in capacity()
565 return m_impl.isEmpty(); in isEmpty()
574 result += sizeof(*m_allocator) + (sizeof(typename ImplType::ValueType) * m_impl.capacity()); in sizeInBytes()
641 m_impl.remove(m_head); in removeFirst()
670 m_impl.remove(m_tail); in removeLast()
677 ImplTypeIterator it = m_impl.template find<BaseTranslator>(value); in find()
678 if (it == m_impl.end()) in find()
[all …]
DHashTable.h1002 …HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
1004 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
1008 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; }
1011 typename HashTableType::const_iterator m_impl;
1016 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
1018 ValueType* get() const { return (ValueType*)m_impl.get(); }
1022 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
1026 typename HashTableType::const_iterator i = m_impl;
1030 typename HashTableType::iterator m_impl;
1036 return a.m_impl == b.m_impl;
[all …]
DFunctional.h537 return !m_impl;
546 : m_impl(impl)
552 return static_cast<FunctionImpl<FunctionType>*>(m_impl.get());
556 RefPtr<FunctionImplBase> m_impl;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DWTFString.cpp48 : m_impl(characters ? StringImpl::create(characters, length) : 0) in String()
57 m_impl = StringImpl::create(str, lengthOfNullTerminatedString(str)); in String()
62 : m_impl(characters ? StringImpl::create(characters, length) : 0) in String()
67 … : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters), length) : 0) in String()
73 : m_impl(characters ? StringImpl::create(characters) : 0) in String()
78 : m_impl(characters ? StringImpl::create(reinterpret_cast<const LChar*>(characters)) : 0) in String()
86 if (!m_impl) { in append()
87 m_impl = string.m_impl; in append()
96 if (m_impl->is8Bit() && string.m_impl->is8Bit()) { in append()
98 RELEASE_ASSERT(string.length() <= numeric_limits<unsigned>::max() - m_impl->length()); in append()
[all …]
DWTFString.h117 String(StringImpl* impl) : m_impl(impl) { } in String()
118 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { } in String()
123 String(const String& other) : m_impl(other.m_impl) { } in String()
124 String(String&& other) : m_impl(other.m_impl.release()) { } in String()
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; }
132 void swap(String& o) { m_impl.swap(o.m_impl); } in swap()
142 bool isNull() const { return !m_impl; } in isNull()
143 bool isEmpty() const { return !m_impl || !m_impl->length(); } in isEmpty()
145 StringImpl* impl() const { return m_impl.get(); } in impl()
[all …]
DStringView.h47 : m_impl(impl) in StringView()
49 , m_length(m_impl->length()) in StringView()
54 : m_impl(impl) in StringView()
58 ASSERT_WITH_SECURITY_IMPLICATION(offset + length <= m_impl->length()); in StringView()
71 bool is8Bit() const { return m_impl->is8Bit(); } in is8Bit()
75 if (!m_impl) in characters8()
78 return m_impl->characters8() + m_offset; in characters8()
83 if (!m_impl) in characters16()
86 return m_impl->characters16() + m_offset; in characters16()
91 if (!m_impl) in toString()
[all …]
DStringCF.cpp39 m_impl = StringImpl::empty(); in String()
45 m_impl = StringImpl::create(lcharBuffer.data(), size); in String()
51 m_impl = StringImpl::create(buffer.data(), size); in String()
57 if (!m_impl) in createCFString()
60 return m_impl->createCFString(); in createCFString()
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/core/dom/
DQualifiedName.h70 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { } in QualifiedName()
71 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); } in isHashTableDeletedValue()
74 QualifiedName() : m_impl(0) { } in QualifiedName()
77 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); } in QualifiedName()
78 …me& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *t…
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() == … in matches()
85 …onst QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalP… in matchesPossiblyIgnoringCase()
87 bool hasPrefix() const { return m_impl->m_prefix != nullAtom; } in hasPrefix()
90 const AtomicString& prefix() const { return m_impl->m_prefix; } in prefix()
[all …]
DQualifiedName.cpp80 m_impl = *addResult.iterator; in QualifiedName()
82 m_impl->ref(); in QualifiedName()
93 if (!m_impl) in deref()
97 m_impl->deref(); in deref()
130 if (!m_impl->m_localNameUpper) in localNameUpper()
131 m_impl->m_localNameUpper = m_impl->m_localName.upper(); in localNameUpper()
132 return m_impl->m_localNameUpper; in localNameUpper()
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
DWebCrypto.cpp42 m_impl->completeWithError(); in completeWithError()
49 m_impl->completeWithBuffer(buffer); in completeWithBuffer()
63 m_impl->completeWithBoolean(b); in completeWithBoolean()
70 m_impl->completeWithKey(key); in completeWithKey()
78 m_impl->completeWithKeyPair(publicKey, privateKey); in completeWithKeyPair()
83 : m_impl(impl) in WebCryptoResult()
85 ASSERT(m_impl.get()); in WebCryptoResult()
90 m_impl.reset(); in reset()
95 m_impl = o.m_impl; in assign()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext3D.cpp63 : m_impl(webContext.get()) in GraphicsContext3D()
76 , m_impl(m_provider->context3d()) in GraphicsContext3D()
98 m_impl->name(); \
104 return m_impl->name(); \
110 m_impl->name(a1); \
116 return m_impl->name(a1); \
122 m_impl->name(a1, a2); \
128 return m_impl->name(a1, a2); \
134 m_impl->name(a1, a2, a3); \
140 return m_impl->name(a1, a2, a3); \
[all …]
DGraphicsContext3D.h132 blink::WebGraphicsContext3D* webContext() const { return m_impl; } in webContext()
517 blink::WebGraphicsContext3D* m_impl; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
DButtonPropertyEditorPresentation.java31 private final ButtonPropertyEditorPresentationImpl m_impl; field in ButtonPropertyEditorPresentation
44 m_impl = in ButtonPropertyEditorPresentation()
59 m_impl.setSelection(propertyTable, property, selected); in setSelection()
74 return m_impl.show(propertyTable, property, x, y, width, height); in show()
79 m_impl.hide(propertyTable, property); in hide()
/external/chromium_org/third_party/WebKit/Source/web/
DWebScopedMicrotaskSuppression.cpp46 m_impl.reset(new Impl()); in initialize()
53 m_impl.reset(0); in reset()
/external/eigen/unsupported/Eigen/
DFFT175 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/public/web/
DWebScopedMicrotaskSuppression.h68 WebPrivateOwnPtr<Impl> m_impl; variable
/external/chromium_org/third_party/WebKit/public/platform/
DWebCrypto.h81 WebPrivatePtr<WebCore::CryptoResult> m_impl; variable