HomeSort by relevance Sort by last modified time
    Searched refs:adopt (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/icu4c/i18n/
fpositer.cpp 75 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) {
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 == NULL ? -1 : 0
    [all...]
  /external/webkit/Source/WebCore/dom/
StaticHashSetNodeList.h 48 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
StaticNodeList.h 44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes) function in class:WebCore::StaticNodeList
SelectorNodeList.cpp 71 return StaticNodeList::adopt(nodes);
  /external/icu4c/test/intltest/
caltztst.cpp 71 void CalendarTimeZoneTest::releaseDateFormat(DateFormat *adopt)
79 fgDateFormat = adopt;
80 adopt = 0;
84 delete adopt;
117 void CalendarTimeZoneTest::releaseCalendar(Calendar* adopt)
125 fgCalendar = adopt;
126 adopt = 0;
131 delete adopt;
sfwdchit.h 16 SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
sfwdchit.cpp 42 SimpleFwdCharIterator::SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt) {
48 if(adopt == FALSE) {
58 } else { // adopt = TRUE
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.cpp 42 return ImmutableArray::adopt(vector);
  /external/webkit/Tools/WebKitTestRunner/mac/
TestControllerMac.mm 46 m_injectedBundlePath.adopt(WKStringCreateWithCFString((CFStringRef)nsBundlePath));
51 m_testPluginDirectory.adopt(WKStringCreateWithCFString((CFStringRef)[[NSBundle mainBundle] bundlePath]));
  /external/icu4c/i18n/unicode/
fpositer.h 118 void setData(UVector32 *adopt, UErrorCode& status);
sortkey.h 250 void adopt(uint8_t *values, int32_t capacity, int32_t count);
  /external/webkit/Source/WebCore/css/
CSSSelectorList.h 41 void adopt(CSSSelectorList& list);
CSSOMUtils.cpp 65 appendTo.append(String::adopt(addend));
101 appendTo.append(String::adopt(addend));
CSSStyleRule.cpp 80 m_selectorList.adopt(selectorList);
  /external/webkit/Source/WebKit2/Shared/
ImmutableDictionary.cpp 60 return ImmutableArray::adopt(vector);
WebSerializedScriptValue.h 53 static PassRefPtr<WebSerializedScriptValue> adopt(Vector<uint8_t>& buffer) function in class:WebKit::WebSerializedScriptValue
55 return adoptRef(new WebSerializedScriptValue(WebCore::SerializedScriptValue::adopt(buffer)));
SecurityOriginData.cpp 67 callback->performCallbackWithReturnValue(ImmutableArray::adopt(securityOrigins).get());
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLFormElementCustom.cpp 61 return toJS(exec, jsForm->globalObject(), StaticNodeList::adopt(namedItems).get());
SerializedScriptValue.h 60 static PassRefPtr<SerializedScriptValue> adopt(Vector<uint8_t>& buffer) function in class:WebCore::SerializedScriptValue
  /external/webkit/Source/WebCore/platform/network/
HTTPHeaderMap.h 50 void adopt(PassOwnPtr<CrossThreadHTTPHeaderMapData>);
  /external/webkit/Source/WebKit2/UIProcess/
WebFormClient.cpp 44 RefPtr<ImmutableDictionary> textFieldsMap = ImmutableDictionary::adopt(map);
WebDatabaseManagerProxy.cpp 153 databases.append(ImmutableDictionary::adopt(detailsMap));
160 originAndDatabasesMap.set(databaseDetailsKey(), ImmutableArray::adopt(databases));
162 result.append(ImmutableDictionary::adopt(originAndDatabasesMap));
165 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(result);
193 callback->performCallbackWithReturnValue(ImmutableArray::adopt(securityOrigins).get());
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 80 propertyName.adopt(JSStringCreateWithUTF8CString("prototype"));
86 propertyName.adopt(JSStringCreateWithUTF8CString("hasOwnProperty"));
93 propertyName.adopt(JSStringCreateWithUTF8CString("Object"));
96 propertyName.adopt(JSStringCreateWithUTF8CString("getOwnPropertyNames"));
107 JSRetainPtr<JSStringRef> typeName(Adopt, JSStringCreateWithUTF8CString(type));
  /external/webkit/Source/WebCore/editing/
HTMLInterchange.cpp 109 return String::adopt(s);
  /external/webkit/Source/WebCore/html/
DOMTokenList.cpp 105 return String::adopt(output);

Completed in 375 milliseconds

1 2 3 4 5 6 7