Searched refs:listSize (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebRenderLayer.mm176 size_t listSize = negZOrderList->size();
178 if (listSize) {
184 for (size_t i = 0; i < listSize; ++i) {
196 size_t listSize = normalFlowList->size();
198 if (listSize) {
204 for (size_t i = 0; i < listSize; ++i) {
216 size_t listSize = posZOrderList->size();
218 if (listSize) {
224 for (size_t i = 0; i < listSize; ++i) {
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DStructureStubInfo.h153 void initInList(PolymorphicAccessStructureList* list, int listSize) argument
157 u.inList.listSize = listSize;
257 int listSize; member in struct:JSC::StructureStubInfo::__anon2548::__anon2557
H A DStructureStubInfo.cpp98 if (!polymorphicStructures->visitWeak(u.inList.listSize))
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dcolldata.h117 int32_t listSize; member in class:CEList
181 int32_t listSize; member in class:StringList
H A Dcolldata.cpp41 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0)
113 if (listSize >= listMax) {
122 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t));
132 ces[listSize++] = ce;
137 if (index >= 0 && index < listSize) {
151 if (other == NULL || listSize - offset < other->size()) {
166 return listSize;
170 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0)
194 if (listSize >= listMax) {
201 for (int32_t i=0; i<listSize;
[all...]
H A Dssearch.cpp350 int32_t listSize; member in class:OrderList
354 : list(NULL), listMax(16), listSize(0)
360 : list(NULL), listMax(16), listSize(0)
409 if (listSize >= listMax) {
414 uprv_memcpy(newList, list, listSize * sizeof(Order));
419 list[listSize].order = order;
420 list[listSize].lowOffset = low;
421 list[listSize].highOffset = high;
423 listSize += 1;
428 if (index >= listSize) {
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderSearchField.cpp200 ASSERT(static_cast<int>(listIndex) < listSize());
201 if (static_cast<int>(listIndex) == (listSize() - 1)) {
222 int size = listSize();
300 int RenderSearchField::listSize() const function in class:WebCore::RenderSearchField
322 return static_cast<int>(listIndex) == (listSize() - 2);
H A DRenderSearchField.h72 virtual int listSize() const override;
H A DRenderMenuList.h103 virtual int listSize() const override;
H A DRenderLayerCompositor.cpp1364 for (size_t i = 0, listSize = layerList->size(); i < listSize; ++i) {
1547 for (size_t i = 0, listSize = layerList->size(); i < listSize; ++i) {
1808 size_t listSize = negZOrderList->size(); local
1809 for (size_t i = 0; i < listSize; ++i)
1815 size_t listSize = normalFlowList->size(); local
1816 for (size_t i = 0; i < listSize; ++i)
1822 size_t listSize = posZOrderList->size(); local
1823 for (size_t i = 0; i < listSize;
[all...]
H A DRenderLayerBacking.cpp1753 size_t listSize = normalFlowList->size(); local
1754 for (size_t i = 0; i < listSize; ++i) {
1768 size_t listSize = negZOrderList->size(); local
1769 for (size_t i = 0; i < listSize; ++i) {
1778 size_t listSize = posZOrderList->size(); local
1779 for (size_t i = 0; i < listSize; ++i) {
H A DRenderMenuList.cpp622 int RenderMenuList::listSize() const function in class:RenderMenuList
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPopupMenuClient.h57 virtual int listSize() const = 0;
/macosx-10.10/WebCore-7600.1.25/html/
H A DFileInputType.cpp432 unsigned listSize = fileList->length(); local
433 if (!listSize) {
440 for (size_t i = 0; i < listSize; ++i) {
442 if (i != listSize - 1)
H A DHTMLSelectElement.cpp915 int listSize = static_cast<int>(items.size()); local
916 if (optionIndex < 0 || optionIndex >= listSize)
920 for (int listIndex = 0; listIndex < listSize; ++listIndex) {
/macosx-10.10/ICU-531.30/icuSources/test/perf/DateFmtPerf/
H A DDateFmtPerf.h434 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); local
435 collation_strings = new UnicodeString[listSize];
436 for(uint32_t k=0;k<listSize;k++) {
463 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); local
470 for(i=listSize-1; i>=1; i--) {
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DPopupMenuWin.cpp147 if (!m_scrollbar && visibleItems() < client()->listSize()) {
332 int itemCount = client()->listSize();
407 if (i < 0 || i >= client()->listSize() || i == focusedIndex())
447 int size = client()->listSize();
461 int size = client()->listSize();
475 int size = client()->listSize();
494 int size = client()->listSize();
619 int itemCount = client()->listSize();
834 scrollbar()->setEnabled(visibleItems < client()->listSize());
836 scrollbar()->setProportion(visibleItems, client()->listSize());
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/History/
H A DWebBackForwardList.mm211 size_t listSize = coreBFList->entries().size();
212 if (currentIndex >= listSize)
213 currentIndex = listSize - 1;
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DPopupMenuGtk.cpp75 const int size = client()->listSize();
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebPopupMenu.cpp77 size_t size = m_popupClient->listSize();
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dicuplug.c65 * @param listSize the number of entries in the list
70 static int32_t uplug_removeEntryAt(void *list, int32_t listSize, int32_t memberSize, int32_t itemToRemove) { argument
74 if(listSize<1) {
75 return listSize;
79 if(listSize > itemToRemove+1) {
83 return listSize-1;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsLayer.cpp154 size_t listSize = newChildren.size(); local
155 for (size_t i = 0; i < listSize; ++i)
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DPopupMenuMac.mm76 int size = m_client->listSize();
/macosx-10.10/ICU-531.30/icuSources/tools/pkgdata/
H A Dpkgdata.cpp1529 int32_t listSize = pkg_countCharList(list); local
1561 if ((cmd = (char *)uprv_malloc((listSize + 2) * SMALL_BUFFER_MAX_SIZE)) == NULL) {
1564 } else if ((buffer = (char *)uprv_malloc((listSize + 1) * SMALL_BUFFER_MAX_SIZE)) == NULL) {
1570 for (int32_t i = 0; i < (listSize + 1); i++) {
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDUserLib.c636 size_t listSize = kMaxIOConnectTransferSize; local
639 char * listString = (char *)malloc((int)listSize);
649 &listSize); // output size (in/out)
652 IOLog2("size = %d, theList = %s\n", (int)listSize, (char *)listString);

Completed in 208 milliseconds

12