/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_xmf.c | 546 EAS_I32 numItems; in XMF_ReadNode() local 561 if ((result = XMF_ReadVLQ(hwInstData, pXMFData->fileHandle, &numItems)) != EAS_SUCCESS) in XMF_ReadNode() 589 if (numItems == 0) in XMF_ReadNode() 635 for ( ; numItems > 0; numItems--) in XMF_ReadNode() 677 EAS_I32 numItems; 706 if ((result = XMF_ReadVLQ(pEASData, fileHandle, &numItems)) != EAS_SUCCESS) 729 while (numItems > 0) 793 numItems--; 796 if (numItems >0)
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | PopupMenuChromium.cpp | 133 int numItems() const { return static_cast<int>(m_items.size()); } in numItems() function in WebCore::PopupListBox 714 if (numItems() == 0 && event.windowsVirtualKeyCode() != VKEY_ESCAPE) in handleKeyEvent() 840 int itemCount = numItems(); in typeAheadFind() 869 for (int i = 0; i < numItems(); ++i) in paint() 873 if (numItems() == 0) in paint() 1036 for (int i = 0; i < numItems(); ++i) { in pointToRowIndex() 1054 if (index >= numItems()) in acceptIndex() 1078 if (index < 0 || index >= numItems()) in selectIndex() 1152 ASSERT(index >= 0 && index < numItems()); in isSelectableItem() 1167 if (!m_settings.loopSelectionNavigation || m_selectedIndex != numItems() - 1) { in selectNextRow() [all …]
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderListBox.cpp | 102 int size = numItems(); in updateFromElement() 208 return min(max(minSize, numItems()), maxDefaultSize); in size() 217 int RenderListBox::numItems() const in numItems() function in WebCore::RenderListBox 224 return itemHeight() * numItems() - rowSpacing; in listHeight() 237 bool enabled = numVisibleItems() < numItems(); in computeLogicalHeight() 240 m_vBar->setProportion(numVisibleItems(), numItems()); in computeLogicalHeight() 263 int listItemsSize = numItems(); in paintObject() 316 int size = numItems(); in addFocusRingRects() 453 if (!numItems()) in listIndexAtOffset() 464 return newOffset < numItems() ? newOffset : -1; in listIndexAtOffset() [all …]
|
D | RenderListBox.h | 133 int numItems() const;
|
/external/harfbuzz/src/ |
D | harfbuzz-shaper.h | 151 const HB_ScriptItem *items, hb_uint32 numItems, 156 const HB_ScriptItem *items, hb_uint32 numItems, 161 const HB_ScriptItem *items, hb_uint32 numItems,
|
D | harfbuzz-shaper.cpp | 654 const HB_ScriptItem *items, hb_uint32 numItems, in HB_GetCharAttributes() argument 659 for (hb_uint32 i = 0; i < numItems; ++i) { in HB_GetCharAttributes()
|
/external/llvm/test/CodeGen/ARM/ |
D | 2009-09-20-LiveIntervalsBug.ll | 5 define arm_aapcs_vfpcc void @foo(i8* nocapture %pBuffer, i32 %numItems) nounwind { 26 define arm_aapcs_vfpcc <4 x float> @bar(i8* nocapture %pBuffer, i32 %numItems) nounwind {
|
D | 2009-11-02-NegativeLane.ll | 5 define arm_aapcs_vfpcc void @foo(i8* nocapture %pBuffer, i32 %numItems) nounwind {
|
D | 2009-09-22-LiveVariablesBug.ll | 12 define arm_aapcs_vfpcc void @ccc(i8* nocapture %pBuffer, i32 %numItems) nounwind {
|
D | 2009-09-13-InvalidSuperReg.ll | 3 define arm_aapcs_vfpcc <4 x float> @foo(i8* nocapture %pBuffer, i32 %numItems) nounwind {
|
D | 2009-10-02-NEONSubregsBug.ll | 4 …cs_vfpcc void @_Z27Benchmark_SceDualQuaternionPvm(i8* nocapture %pBuffer, i32 %numItems) nounwind {
|
/external/webkit/Source/WebCore/platform/mac/ |
D | PopupMenuMac.mm | 141 int numItems = [m_popup.get() numberOfItems]; 142 if (numItems <= 0) { 147 ASSERT(numItems > index); 150 …if (index == -1 && numItems == 2 && !client()->shouldPopOver() && ![[m_popup.get() itemAtIndex:1] …
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | AppleScriptController.m | 78 int numItems = [aeDesc numberOfItems]; 79 for (int i = 0; i < numItems; ++i) {
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | UniscribeController.cpp | 186 int numItems = 0; in itemizeShapeAndPlace() local 187 …(cp, length, m_items.size() - 1, &m_control, &m_state, m_items.data(), &numItems) == E_OUTOFMEMORY… in itemizeShapeAndPlace() 191 m_items.resize(numItems + 1); in itemizeShapeAndPlace()
|
/external/clang/test/SemaObjC/ |
D | property-6.m | 42 + (id)arrayWithCapacity:(int)numItems;
|
/external/clang/test/Analysis/ |
D | delegates.m | 65 - (id)initWithCapacity:(NSUInteger)numItems;
|
D | retain-release.mm | 160 …MutableDictionary (NSMutableDictionaryCreation) + (id)dictionaryWithCapacity:(NSUInteger)numItems;
|
D | NSString.m | 81 - (id)initWithCapacity:(NSUInteger)numItems;
|
D | retain-release-gc-only.m | 133 …MutableDictionary (NSMutableDictionaryCreation) + (id)dictionaryWithCapacity:(NSUInteger)numItems;
|
D | retain-release.m | 163 …MutableDictionary (NSMutableDictionaryCreation) + (id)dictionaryWithCapacity:(NSUInteger)numItems;
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | FastMalloc.cpp | 527 static void* zoneCalloc(malloc_zone_t*, size_t numItems, size_t size);
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebView.mm | 4650 unsigned numItems = array->length(); 4651 for (unsigned i = 0; i < numItems; ++i)
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2007-10-14 | 62879 (WebCore::RenderListBox::updateFromElement): Use numItems(). 62888 (WebCore::RenderListBox::numItems): Tweaked to remove the local variable. 62899 (WebCore::RenderListBox::paintObject): Changed to use numItems and 62903 (WebCore::RenderListBox::listIndexAtOffset): Changed to use numItems(), 62911 to use numItems() and to use numVisibleItems() instead of size().
|
D | ChangeLog-2009-06-16 | 6887 (WebCore::RenderListBox::numItems): 54535 (WebCore::PopupListBox::numItems):
|
D | ChangeLog-2006-12-31 | 26817 (WebCore::RenderListBox::numItems):
|