Home
last modified time | relevance | path

Searched refs:lastItem (Results 1 – 10 of 10) sorted by relevance

/external/qemu/android/tools/
Dgen-hw-config.py63 lastItem = None variable
94 if lastItem: items.append(lastItem)
95 lastItem = Item(value) variable
97 lastItem.add(key, value)
99 if lastItem:
100 items.append(lastItem)
/external/webkit/WebCore/dom/
DDynamicNodeList.cpp74 m_caches->lastItem = n; in itemForwardsFromCurrent()
92 m_caches->lastItem = n; in itemBackwardsFromCurrent()
110 return m_caches->lastItem; in item()
112 start = m_caches->lastItem; in item()
155 : lastItem(0) in Caches()
168 lastItem = 0; in reset()
DChildNodeList.cpp57 return m_caches->lastItem; in item()
62 n = m_caches->lastItem; in item()
92 m_caches->lastItem = n; in item()
DDynamicNodeList.h45 Node* lastItem; member
/external/chromium/third_party/icu/source/common/
Duniset_props.cpp476 int8_t lastItem = 0, mode = 0; in applyPattern() local
485 U_ASSERT((lastItem == 0 && op == 0) || in applyPattern()
486 (lastItem == 1 && (op == 0 || op == HYPHEN /*'-'*/)) || in applyPattern()
487 (lastItem == 2 && (op == 0 || op == HYPHEN /*'-'*/ || in applyPattern()
565 if (lastItem == 1) { in applyPattern()
573 lastItem = 0; in applyPattern()
625 lastItem = 2; in applyPattern()
643 if (lastItem == 1) { in applyPattern()
661 if (lastItem != 0) { in applyPattern()
680 if (lastItem == 2 && op == 0) { in applyPattern()
[all …]
/external/icu4c/common/
Duniset_props.cpp541 int8_t lastItem = 0, mode = 0; in applyPattern() local
550 U_ASSERT((lastItem == 0 && op == 0) || in applyPattern()
551 (lastItem == 1 && (op == 0 || op == HYPHEN /*'-'*/)) || in applyPattern()
552 (lastItem == 2 && (op == 0 || op == HYPHEN /*'-'*/ || in applyPattern()
630 if (lastItem == 1) { in applyPattern()
638 lastItem = 0; in applyPattern()
690 lastItem = 2; in applyPattern()
708 if (lastItem == 1) { in applyPattern()
726 if (lastItem != 0) { in applyPattern()
745 if (lastItem == 2 && op == 0) { in applyPattern()
[all …]
/external/webkit/WebKit/mac/WebCoreSupport/
DWebContextMenuClient.mm85 NSMenuItem *lastItem = [defaultMenuItems objectAtIndex:defaultItemsCount - 1];
87 if ([secondToLastItem isSeparatorItem] && [lastItem tag] == WebMenuItemTagInspectElement) {
90 [savedItems addObject:lastItem];
93 [defaultMenuItems removeObject:lastItem];
/external/svox/pico/lib/
Dpicopr.c1080 static void pr_startItemList (pr_ioItemPtr * firstItem, pr_ioItemPtr * lastItem) in pr_startItemList() argument
1083 *lastItem = NULL; in pr_startItemList()
1087 …(picodata_ProcessingUnit this, pr_ioItemPtr * firstItem, pr_ioItemPtr * lastItem, pr_ioItemPtr ite… in pr_appendItem() argument
1091 if ((*lastItem) == NULL) { in pr_appendItem()
1094 (*lastItem)->next = item; in pr_appendItem()
1096 (*lastItem) = item; in pr_appendItem()
1186 … pr_ioItemPtr * firstItem, pr_ioItemPtr * lastItem, pr_ioItemPtr item) in pr_appendItemToOutItemList() argument
1239 pr_appendItem(this, firstItem, lastItem, litem); in pr_appendItemToOutItemList()
1254 pr_appendItem(this, firstItem, lastItem, litem); in pr_appendItemToOutItemList()
1262 pr_appendItem(this, firstItem, lastItem,litem); in pr_appendItemToOutItemList()
[all …]
/external/webkit/WebCore/platform/mac/
DPopupMenuMac.mm98 NSMenuItem* menuItem = [m_popup.get() lastItem];
/external/webkit/WebCore/
DChangeLog-2005-12-192819 Cache the lastItem and lastItemOffset for fast retrieval of the
2826 (ChildNodeListImpl::item): Use lastItemOffset and lastItem if we can.