Searched defs:adopt (Results 1 - 25 of 30) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DStaticHashSetNodeList.h48 static PassRefPtr<StaticHashSetNodeList> adopt(const ListHashSet<RefPtr<Node> >& nodes) function in class:WebCore::StaticHashSetNodeList
50 return adopt(const_cast<ListHashSet<RefPtr<Node> >&>(nodes));
53 static PassRefPtr<StaticHashSetNodeList> adopt(ListHashSet<RefPtr<Node> >& nodes) function in class:WebCore::StaticHashSetNodeList
H A DStaticNodeList.h44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes) function in class:WebCore::StaticNodeList
/external/icu4c/i18n/
H A Dfpositer.cpp75 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { argument
76 // Verify that adopt has valid data, and update status if it doesn't.
78 if (adopt) {
79 if ((adopt->size() % 3) != 0) {
82 for (int i = 1; i < adopt->size(); i += 3) {
83 if (adopt->elementAti(i) >= adopt->elementAti(i+1)) {
95 delete adopt;
100 data = adopt;
101 pos = adopt
[all...]
H A Dsortkey.cpp99 void CollationKey::adopt(uint8_t *values, int32_t capacity, int32_t count) { function in class:CollationKey
/external/icu4c/test/intltest/
H A Dsfwdchit.cpp42 SimpleFwdCharIterator::SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt) { argument
48 if(adopt == FALSE) {
58 } else { // adopt = TRUE
H A Dcaltztst.cpp71 void CalendarTimeZoneTest::releaseDateFormat(DateFormat *adopt) argument
79 fgDateFormat = adopt;
80 adopt = 0;
84 delete adopt;
117 void CalendarTimeZoneTest::releaseCalendar(Calendar* adopt) argument
125 fgCalendar = adopt;
126 adopt = 0;
131 delete adopt;
/external/webkit/Source/WebCore/xml/
H A DXPathValue.cpp44 const Value::AdoptTag Value::adopt = {}; member in class:WebCore::XPath::Value
H A DXPathValue.h71 static const struct AdoptTag {} adopt; member in class:WebCore::XPath::Value
/external/webkit/Source/WebKit2/Shared/
H A DImmutableArray.h50 static PassRefPtr<ImmutableArray> adopt(Vector<RefPtr<APIObject> >& entries) function in class:WebKit::ImmutableArray
H A DImmutableDictionary.h51 static PassRefPtr<ImmutableDictionary> adopt(MapType& map) function in class:WebKit::ImmutableDictionary
H A DWebSerializedScriptValue.h53 static PassRefPtr<WebSerializedScriptValue> adopt(Vector<uint8_t>& buffer) function in class:WebKit::WebSerializedScriptValue
55 return adoptRef(new WebSerializedScriptValue(WebCore::SerializedScriptValue::adopt(buffer)));
/external/webkit/Source/WebCore/bindings/js/
H A DSerializedScriptValue.h60 static PassRefPtr<SerializedScriptValue> adopt(Vector<uint8_t>& buffer) function in class:WebCore::SerializedScriptValue
/external/webkit/Source/WebCore/css/
H A DCSSSelectorList.cpp41 void CSSSelectorList::adopt(CSSSelectorList& list) function in class:WebCore::CSSSelectorList
/external/webkit/Source/WebCore/platform/network/
H A DHTTPHeaderMap.cpp60 void HTTPHeaderMap::adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData> data) function in class:WebCore::HTTPHeaderMap
H A DResourceRequestBase.cpp47 PassOwnPtr<ResourceRequest> ResourceRequestBase::adopt(PassOwnPtr<CrossThreadResourceRequestData> data) function in class:WebCore::ResourceRequestBase
59 request->m_httpHeaderFields.adopt(data->m_httpHeaders.release());
/external/webkit/Source/WebKit/win/
H A DCOMEnumVariant.h39 static COMEnumVariant* adopt(ContainerType&);
76 COMEnumVariant<typename ContainerType>* COMEnumVariant<ContainerType>::adopt(ContainerType& container) function in class:COMEnumVariant
H A DCOMPropertyBag.h45 static COMPropertyBag* adopt(HashMapType&);
91 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap) function in class:COMPropertyBag
/external/webkit/Source/WebKit2/Platform/win/
H A DSharedMemoryWin.cpp148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection);
158 PassRefPtr<SharedMemory> SharedMemory::adopt(HANDLE handle, size_t size, Protection protection) function in class:WebKit::SharedMemory
/external/webkit/Source/JavaScriptCore/API/
H A DJSRetainPtr.h67 void adopt(T);
148 template<typename T> inline void JSRetainPtr<T>::adopt(T optr) function in class:JSRetainPtr
/external/webkit/Source/WebKit2/UIProcess/API/cpp/
H A DWKRetainPtr.h106 void adopt(PtrType);
148 template<typename T> inline void WKRetainPtr<T>::adopt(PtrType optr) function in class:WebKit::WKRetainPtr
/external/webkit/Source/JavaScriptCore/runtime/
H A DUString.h58 static UString adopt(Vector<UChar, inlineCapacity>& vector) { return StringImpl::adopt(vector); } function in class:JSC::UString
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.h188 static PassRefPtr<StringImpl> adopt(Vector<UChar, inlineCapacity>& vector) function in class:WTF::StringImpl
198 static PassRefPtr<StringImpl> adopt(StringBuffer&);
H A DWTFString.h96 // copying, consider using String::adopt instead.
119 static String adopt(StringBuffer& buffer) { return StringImpl::adopt(buffer); } function in class:WTF::String
121 static String adopt(Vector<UChar, inlineCapacity>& vector) { return StringImpl::adopt(vector); } function in class:WTF::String
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTPixelBuffer.cpp112 void QTPixelBuffer::adopt(CVPixelBufferRef ref) function in class:QTPixelBuffer
/external/icu4c/io/
H A Dustdio.c63 UTransliterator *adopt, UErrorCode *status)
69 return adopt;
75 return adopt;
82 return adopt;
85 if(adopt == NULL) /* they are clearing it */
105 return adopt;
118 file->fTranslit->translit = adopt;
62 u_fsettransliterator(UFILE *file, UFileDirection direction, UTransliterator *adopt, UErrorCode *status) argument

Completed in 667 milliseconds

12