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

  /external/webkit/Source/WebKit2/Shared/API/c/
WKMutableArray.cpp 40 bool WKArrayIsMutable(WKArrayRef arrayRef)
42 return toImpl(arrayRef)->isMutable();
45 void WKArrayAppendItem(WKMutableArrayRef arrayRef, WKTypeRef itemRef)
47 toImpl(arrayRef)->append(toImpl(itemRef));
50 void WKArrayRemoveItemAtIndex(WKMutableArrayRef arrayRef, size_t index)
52 toImpl(arrayRef)->removeItemAtIndex(index);
WKArray.cpp 45 WKTypeRef WKArrayGetItemAtIndex(WKArrayRef arrayRef, size_t index)
47 return toImpl(arrayRef)->at(index);
50 size_t WKArrayGetSize(WKArrayRef arrayRef)
52 return toImpl(arrayRef)->size();
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.cpp 157 WKArrayRef arrayRef = WKBackForwardListCopyBackListWithLimit(toAPI(d->m_backForwardList), maxItems);
158 int size = WKArrayGetSize(arrayRef);
161 WKTypeRef wkHistoryItem = WKArrayGetItemAtIndex(arrayRef, i);
171 WKArrayRef arrayRef = WKBackForwardListCopyForwardListWithLimit(toAPI(d->m_backForwardList), maxItems);
172 int size = WKArrayGetSize(arrayRef);
175 WKTypeRef wkHistoryItem = WKArrayGetItemAtIndex(arrayRef, i);
  /external/webkit/Source/WebCore/bindings/scripts/
IDLParser.pm 224 my $arrayRef = $dataNode->attributes;
225 push(@$arrayRef, $newDataNode);
252 my $arrayRef = $dataNode->parents;
253 push(@$arrayRef, $line);
287 my $arrayRef = $dataNode->attributes;
288 push(@$arrayRef, $newDataNode);
343 my $arrayRef = $newDataNode->parameters;
344 push(@$arrayRef, $paramDataNode);
350 my $arrayRef = $dataNode->functions;
351 push(@$arrayRef, $newDataNode)
    [all...]
CodeGeneratorGObject.pm     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 129 milliseconds