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

  /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...]
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();
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...]
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...]
StringMac.mm 35 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/
WebScopedMicrotaskSuppression.cpp 46 m_impl.reset(new Impl());
53 m_impl.reset(0);
  /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 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...]
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...]
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
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebCrypto.cpp 42 m_impl->completeWithError();
49 m_impl->completeWithBuffer(buffer);
63 m_impl->completeWithBoolean(b);
70 m_impl->completeWithKey(key);
78 m_impl->completeWithKeyPair(publicKey, privateKey);
83 : m_impl(impl)
85 ASSERT(m_impl.get());
90 m_impl.reset();
95 m_impl = o.m_impl;
    [all...]
  /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...]
QualifiedName.cpp 80 m_impl = *addResult.iterator;
82 m_impl->ref();
93 if (!m_impl)
97 m_impl->deref();
130 if (!m_impl->m_localNameUpper)
131 m_impl->m_localNameUpper = m_impl->m_localName.upper();
132 return m_impl->m_localNameUpper;
  /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/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/platform/graphics/
GraphicsContext3D.cpp 63 : m_impl(webContext.get())
76 , m_impl(m_provider->context3d())
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...]
GraphicsContext3D.h 132 blink::WebGraphicsContext3D* webContext() const { return m_impl; }
517 blink::WebGraphicsContext3D* m_impl; member in class:WebCore::GraphicsContext3D
  /external/chromium_org/third_party/WebKit/public/platform/
WebCrypto.h 81 WebPrivatePtr<WebCore::CryptoResult> m_impl; member in class:blink::WebCryptoResult

Completed in 991 milliseconds