/system/core/toolbox/ |
dynarray.h | 10 void** items; member in struct:__anon36561 30 * remove items from the array during iteration. 36 _item_type _item = (_item_type)(_array)->items[_nn_##__LINE__]; \ 58 * This macro is only intended for simple uses. Do not add or remove items
|
/external/webkit/Source/WebCore/dom/ |
SelectElement.cpp | 78 // Returns the 1st valid item |skip| items from |listIndex| in direction |direction| if there is one. 112 const Vector<Element*>& items = data.listItems(element); local 113 int index = nextValidIndex(items, items.size(), SkipBackwards, INT_MAX); 114 if (static_cast<unsigned>(index) == items.size()) 127 const Vector<Element*>& items = data.listItems(element); local 136 int edgeIndex = (direction == SkipForwards) ? 0 : (items.size() - 1); 138 return nextValidIndex(items, edgeIndex, direction, skipAmount); 168 const Vector<Element*>& items = data.listItems(element); local 169 for (unsigned i = 0; i < items.size(); ++i) 183 const Vector<Element*>& items = data.listItems(element); local 204 const Vector<Element*>& items = data.listItems(element); local 227 const Vector<Element*>& items = data.listItems(element); local 347 const Vector<Element*>& items = data.listItems(element); local 366 const Vector<Element*>& items = data.listItems(element); local 408 const Vector<Element*>& items = data.listItems(element); local 427 const Vector<Element*>& items = data.listItems(element); local 457 const Vector<Element*>& items = data.listItems(element); local 469 const Vector<Element*>& items = data.listItems(element); local 488 const Vector<Element*>& items = data.listItems(element); local 517 const Vector<Element*>& items = data.listItems(element); local 538 const Vector<Element*>& items = data.listItems(element); local 908 const Vector<Element*>& items = data.listItems(element); local 963 const Vector<Element*>& items = data.listItems(element); local 1010 const Vector<Element*>& items = data.listItems(element); local 1031 const Vector<Element*>& items = data.listItems(element); local 1061 Vector<Element*> items = m_listItems; local [all...] |
/external/chromium/chrome/browser/tab_contents/ |
popup_menu_helper_mac.h | 30 const std::vector<WebMenuItem>& items,
|
/external/chromium/googleurl/ |
PRESUBMIT_unittest.py | 39 def __init__(self, msg, items=[], long_text=''): 41 self.items = items 77 len(PRESUBMIT.LocalChecks(api, MockOutputApi)[0].items) == 3)
|
/external/emma/core/java12/com/vladium/emma/report/ |
Item.java | 52 final IItem [] items = new IItem [m_children.size ()]; local 53 m_children.toArray (items); 55 Arrays.sort (items, order); 57 return Arrays.asList (items).iterator ();
|
/external/llvm/utils/Target/ARM/ |
analyze-match-table.py | 19 items = [s.strip() for s in b.split(",")] 23 insns.append((code,string,converter,items,features)) 30 items = insn[3] 32 flags.update(items)
|
/external/chromium/chrome/browser/importer/ |
importer_host.h | 70 // |items| - specifies which data to import (bitmask of importer::ImportItem). 76 uint16 items, 93 // |items| - specifies which data to import (bitmask of importer::ImportItem). 96 uint16 items, 100 // process starts, if bookmarks and/or search engines are among the items 102 void CheckForLoadedModels(uint16 items);
|
/external/chromium/chrome/common/extensions/docs/js/ |
sidebar.js | 52 * Controls are inserted as the first children of list items in the sidebar 62 var items = toc.getElementsByTagName('li'); 64 for (var i = 0; i < items.length; i++) { 65 var item = items[i];
|
/external/webkit/Source/WebCore/platform/ |
ContextMenu.h | 67 void setItems(const Vector<ContextMenuItem>& items) { m_items = items; } 68 const Vector<ContextMenuItem>& items() const { return m_items; } function in class:WebCore::ContextMenu
|
/frameworks/base/tools/aidl/ |
aidl.cpp | 242 check_filenames(const char* filename, document_item_type* items) 245 while (items) { 246 if (items->item_type == USER_DATA_TYPE) { 247 user_data_type* p = (user_data_type*)items; 250 else if (items->item_type == INTERFACE_TYPE_BINDER 251 || items->item_type == INTERFACE_TYPE_RPC) { 252 interface_type* c = (interface_type*)items; 257 items->item_type); 260 items = items->next [all...] |
/external/icu4c/tools/toolutil/ |
package.cpp | 396 items=NULL; 427 if(items[idx].isDataOwned) { 428 free(items[idx].data); 432 uprv_free((void*)items); 532 fprintf(stderr, "icupkg: too many items, maximum is %d\n", itemMax); 559 memset(items, 0, itemCount*sizeof(Item)); 566 * Get the common prefix of the items. 599 items[i].name=s+prefixLength; 602 items[i].data=(uint8_t *)inBytes+ds->readUInt32(inEntries[i].dataOffset); 604 items[i-1].length=(int32_t)(items[i].data-items[i-1].data) [all...] |
/external/chromium/chrome/browser/ui/toolbar/ |
back_forward_menu_model.cc | 47 int items = GetHistoryItemCount(); local 49 if (items > 0) { 53 if (items == kMaxHistoryItems) 54 chapter_stops = GetChapterStopCount(items); 57 items += chapter_stops + 1; // Chapter stops also need a separator. 61 items += 2; 64 return items; 199 // If the index is past the number of history items + separator, 212 // Look to see if we have reached the separator for the history items. 283 int items = 0 local [all...] |
/external/webkit/Source/WebKit/qt/Api/ |
qwebhistory.cpp | 228 A list of items describing the pages that can be visited by going back can be 229 obtained by calling the backItems() function; similarly, items describing the 231 The total list of items is obtained with the items() function. 234 of a list. Arbitrary items in the history can be obtained with itemAt(), the total 235 number of items is given by count(), and the history can be cleared with the 258 \sa count(), items() 286 Returns a list of all items currently in the history. 290 QList<QWebHistoryItem> QWebHistory::items() const function in class:QWebHistory 292 const WebCore::HistoryItemVector &items = d->lst->entries() local 503 const WebCore::HistoryItemVector &items = d->lst->entries(); local [all...] |
/external/webkit/Source/WebKit/win/ |
MarshallingHelpers.cpp | 231 CFStringRef* items = 0; local 233 items = new CFStringRef[len]; 237 items[lBound] = BSTRToCFStringRef(str); 241 CFArrayRef result = CFArrayCreate(0, (const void**)items, len, &kCFTypeArrayCallBacks); 242 if (items) 243 delete[] items; 254 CFNumberRef* items = 0; local 256 items = new CFNumberRef[len]; 260 items[lBound] = intToCFNumberRef(num); 263 CFArrayRef result = CFArrayCreate(0, (const void**) items, len, &kCFTypeArrayCallBacks) 276 void* items; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
TimeLineGraph.java | 82 List items = (List) _enum.nextElement(); local 83 Object[] fItemsArray=items.toArray(); 158 List items = (List) this.fItemGroups.get(groupName); local 160 items=new ArrayList(); 161 this.fItemGroups.put(groupName, items); 163 items.add(new TimeLineGraphItem(name, description, value, col, display, 171 List items = (List) _enum.nextElement(); local 172 for (int i = 0; i < items.size(); i++) { 173 TimeLineGraphItem graphItem = (TimeLineGraphItem) items.get(i); 188 List items = (List) _enum.nextElement() local 206 List items = (List) _enum.nextElement(); local [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
ExternalPopupMenu.cpp | 68 if (info.items.isEmpty()) 131 WebVector<WebMenuItemInfo> items( 134 WebMenuItemInfo& popupItem = items[i]; 157 info->items.swap(items);
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
WebPopupMenuProxyMac.mm | 52 void WebPopupMenuProxyMac::populate(const Vector<WebPopupItem>& items, NSFont *font, TextDirection menuTextDirection) 62 int size = items.size(); 65 if (items[i].m_type == WebPopupItem::Separator) 72 NSWritingDirection writingDirection = items[i].m_textDirection == LTR ? NSWritingDirectionLeftToRight : NSWritingDirectionRightToLeft; 79 if (items[i].m_hasTextDirectionOverride) { 84 RetainPtr<NSAttributedString> string(AdoptNS, [[NSAttributedString alloc] initWithString:nsStringFromWebCoreString(items[i].m_text) attributes:attributes.get()]); 87 [menuItem setEnabled:items[i].m_isEnabled]; 88 [menuItem setToolTip:nsStringFromWebCoreString(items[i].m_toolTip)]; 93 void WebPopupMenuProxyMac::showPopupMenu(const IntRect& rect, TextDirection textDirection, double scaleFactor, const Vector<WebPopupItem>& items, const PlatformPopupMenuData& data, int32_t selectedIndex) 102 populate(items, font, textDirection) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
AppWidgetPickActivity.java | 82 void putCustomAppWidgets(List<PickAdapter.Item> items) { 131 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items"); 132 putAppWidgetItems(customInfo, customExtras, items); 169 List<Bundle> customExtras, List<PickAdapter.Item> items) { 195 items.add(item); 200 * Build and return list of items to be shown in dialog. This will mix both 206 List<PickAdapter.Item> items = new ArrayList<PickAdapter.Item>(); local 208 putInstalledAppWidgets(items); 209 putCustomAppWidgets(items); 211 // Sort all items together by labe [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MapItem.java | 53 * {@code > 0;} count of items covered; {@code 1} if this 73 if (mapSection.items().size() != 0) { 75 "mapSection.items().size() != 0"); 78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, 102 // Add a MapItem for the final items in the section. 103 items.add(new MapItem(currentType, section, 107 items.add(new MapItem(mapSection)); 112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items)); [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MapItem.java | 53 * {@code > 0;} count of items covered; {@code 1} if this 73 if (mapSection.items().size() != 0) { 75 "mapSection.items().size() != 0"); 78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, 102 // Add a MapItem for the final items in the section. 103 items.add(new MapItem(currentType, section, 107 items.add(new MapItem(mapSection)); 112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items)); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MapItem.java | 53 * {@code > 0;} count of items covered; {@code 1} if this 73 if (mapSection.items().size() != 0) { 75 "mapSection.items().size() != 0"); 78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, 102 // Add a MapItem for the final items in the section. 103 items.add(new MapItem(currentType, section, 107 items.add(new MapItem(mapSection)); 112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items)); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/ |
BackupTestActivity.java | 116 List<BackupItem> items = new ArrayList<BackupItem>(); local 118 items.add(new CategoryBackupItem(R.string.bu_preferences)); 119 loadPreferenceGroup1(items); 120 loadPreferenceGroup2(items); 122 items.add(new CategoryBackupItem(R.string.bu_files)); 123 loadFile(TEST_FILE_1, items); 124 loadFile(TEST_FILE_2, items); 126 return items; 129 private void loadPreferenceGroup1(List<BackupItem> items) { 133 items.add(new PreferenceBackupItem(TEST_PREFS_1, INT_PREF, "" + intValue)) [all...] |
/external/webkit/Source/WebCore/wml/ |
WMLSelectElement.cpp | 344 const Vector<Element*>& items = m_data.listItems(this); local 345 if (items.isEmpty()) 373 ASSERT(listIndex < (int) items.size()); 375 if (OptionElement* optionElement = toOptionElement(items[listIndex])) 394 const Vector<Element*>& items = m_data.listItems(this); local 396 for (unsigned i = 0; i < items.size(); ++i) { 397 OptionElement* optionElement = toOptionElement(items[i]); 457 const Vector<Element*>& items = m_data.listItems(this); local 458 if (items.isEmpty()) 470 for (unsigned i = 0; i < items.size(); ++i) 493 const Vector<Element*>& items = m_data.listItems(this); local [all...] |
/external/clang/utils/ |
SummarizeErrors | 18 def items(self): member in class:multidict 19 return self.data.items() 55 warnings = warnings.items() 56 errors = errors.items() 61 assertions = assertions.items() 85 (aborts.items(), 'Aborts'),
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/ |
Coordinate.java | 100 String[] items = coOrdinate.split("°"); local 101 int deg = Integer.valueOf(items[0]); 103 items = items[1].split("'"); 104 float minsDecMins = Float.valueOf(items[0]); 105 char quad = items[1].charAt(0);
|