/external/icu4c/common/ |
udata.cpp | 92 * when looking for a data item. 248 UDataMemory *item; member in struct:DataCacheElement 260 udata_close(p->item); /* unmaps storage */ 319 retVal = el->item; 328 static UDataMemory *udata_cacheDataItem(const char *path, UDataMemory *item, UErrorCode *pErr) { 348 newElement->item = UDataMemory_createNewInstance(pErr); 353 UDatamemory_assign(newElement->item, item); 360 uprv_free(newElement->item); 385 newElement->item, u_errorName(subErr), newElement->item->vFuncs) [all...] |
/external/oprofile/gui/ |
oprof_start.cpp | 270 /// find the first item with the given text in column 0 or return NULL 274 QListViewItem * item = view->firstChild(); local 276 while (item && strcmp(item->text(0).latin1(), name)) 277 item = item->nextSibling(); 279 return item; 295 QListViewItem * item = findItem(events_list, descr.name); local 296 if (item) 297 item->setSelected(true) 352 QListViewItem * item = findItem(events_list, ev_name.c_str()); local [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
MenuLoader.java | 38 throw new RuntimeException("Expected only one top-level item in menu file " + xmlFile.getName()); 39 if (items.item(0).getNodeName().compareTo("menu") != 0) 40 throw new RuntimeException("Expected a top-level item called 'menu' in menu file " + xmlFile.getName()); 42 processChildren(items.item(0).getChildNodes(), topLevelNode); 48 Node node = childNodes.item(i); 60 Node attr = attributes.item(i); 71 Node nodei = children.item(i); 92 return nodei.getNodeName().equals("item") 161 if (name.equals("item")) {
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
MUCUser.java | 35 private Item item; field in class:MUCUser 96 * Returns the item child that holds information about roles, affiliation, jids and nicks. 98 * @return an item child that holds information about roles, affiliation, jids and nicks. 100 public Item getItem() { 101 return item; 156 * Sets the item child that holds information about roles, affiliation, jids and nicks. 158 * @param item the item child that holds information about roles, affiliation, jids and nicks. 160 public void setItem(Item item) [all...] |
/external/valgrind/unittest/ |
thread_wrappers.h | 114 void Put(void *item) { 116 q_.push(item); 126 void * item; local 127 bool ok = TryGetInternal(&item); 130 return item;
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.11-1.js | 55 var item = 0; 57 array[item++] = new TestCase( SECTION, "String.prototype.toLowerCase.length", 0, String.prototype.toLowerCase.length ); 58 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length", false, delete String.prototype.toLowerCase.length ); 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length", 0, eval("delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length") ); 65 array[item++] = new TestCase( SECTION, 70 array[item++] = new TestCase( SECTION,
|
15.5.4.11-5.js | 55 var item = 0; 57 array[item++] = new TestCase( SECTION, "String.prototype.toLowerCase.length", 0, String.prototype.toLowerCase.length ); 58 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length", false, delete String.prototype.toLowerCase.length ); 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length", 0, eval("delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length") ); 66 array[item++] = new TestCase( SECTION, 71 array[item++] = new TestCase( SECTION,
|
15.5.4.12-1.js | 55 var item = 0; 57 array[item++] = new TestCase( SECTION, "String.prototype.toUpperCase.length", 0, String.prototype.toUpperCase.length ); 58 array[item++] = new TestCase( SECTION, "delete String.prototype.toUpperCase.length", false, delete String.prototype.toUpperCase.length ); 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toupperCase.length; String.prototype.toupperCase.length", 0, eval("delete String.prototype.toUpperCase.length; String.prototype.toUpperCase.length") ); 72 array[item++] = new TestCase( SECTION,
|
/external/webkit/Source/WebCore/css/ |
CSSStyleSheet.cpp | 116 if (!item(i)->isCharsetRule() && !item(i)->isImportRule()) { 164 item(index)->setParent(0); 212 StyleBase* rule = item(i); 286 StyleBase* styleBase = styleSheet->item(i);
|
/external/webkit/Source/WebCore/platform/wx/wxcode/gtk/ |
non-kerned-drawing.cpp | 161 PangoItem* item = static_cast<PangoItem*>(items->data); local 162 PangoFont* tmpFont = item->analysis.font; 163 item->analysis.font = font; 166 pango_shape(buffer, length, &item->analysis, glyphs); 168 item->analysis.font = tmpFont;
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
QtFallbackWebPopup.cpp | 241 model->item(i)->setEnabled(false); 245 model->item(i)->setEnabled(data.itemIsEnabled(i)); 247 model->item(i)->setToolTip(data.itemToolTip(i)); 249 model->item(i)->setBackground(data.itemBackgroundColor(i)); 250 model->item(i)->setForeground(data.itemForegroundColor(i));
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
addinterface.cpp | 85 QTreeWidgetItem *item = new QTreeWidgetItem(interfaceWidget); local 86 if (!item) 89 item->setText(0, arg[0]); 90 item->setText(1, arg[1]); 91 item->setText(2, arg[2]);
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSInfoWriter.cpp | 143 ItemType item; local 148 if (!helper_adapt_list_item<ItemType, ItemContainer>(item, 153 // And write out an item. 154 if (pOutput.write(&item, sizeof(item)) != sizeof(item)) { 155 ALOGE("Cannot write out item of %s for RSInfo file %s! (%s)",
|
/frameworks/native/include/utils/ |
KeyedVector.h | 85 ssize_t add(const KEY& key, const VALUE& item); 86 ssize_t replaceValueFor(const KEY& key, const VALUE& item); 87 ssize_t replaceValueAt(size_t index, const VALUE& item); 188 ssize_t KeyedVector<KEY,VALUE>::replaceValueAt(size_t index, const VALUE& item) { 190 mVector.editItemAt(index).value = item;
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementSetAttributeNodeNS.java | 124 element = (Element) elementList.item(1); 127 element2 = (Element) elementList.item(2); 146 element1 = (Element) elementList.item(1); 148 element2 = (Element) elementList.item(2); 219 element = (Element) elementList.item(0);
|
/packages/apps/Browser/src/com/android/browser/ |
BrowserActivity.java | 218 public boolean onOptionsItemSelected(MenuItem item) { 219 if (!mController.onOptionsItemSelected(item)) { 220 return super.onOptionsItemSelected(item); 232 public boolean onContextItemSelected(MenuItem item) { 233 return mController.onContextItemSelected(item);
|
DateSortedExpandableListAdapter.java | 159 * Determine which group an item belongs to. 237 * @param groupPosition Index of the group containing the desired item. 238 * @param childPosition Index of the item within the specified group. 283 TextView item; local 286 item = (TextView) factory.inflate(R.layout.history_header, null); 288 item = (TextView) convertView; 291 item.setText(label); 292 return item;
|
/packages/apps/Calendar/src/com/android/calendar/ |
ContactsAsyncHelper.java | 72 public AttendeeItem item; field in class:ContactsAsyncHelper.WorkerArgs 191 AttendeeItem item, Runnable run, Uri photoUri) { 205 args.item = item; 244 args.item.mBadge = (Drawable) args.result;
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastListActivity.java | 93 // We have a menu item to show in action bar. 192 public boolean onContextItemSelected(MenuItem item) { 195 switch (item.getItemId()) { 209 return super.onContextItemSelected(item); 213 public boolean onOptionsItemSelected(MenuItem item) { 214 switch(item.getItemId()) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
Editor.java | 65 MenuItem item = menu.getItem(i); local 66 item.setTitle(item.getTitle().toString().toUpperCase()); 283 public void swapLeft(MenuItem item) { 288 public void swapRight(MenuItem item) {
|
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/ |
DateSortedExpandableListAdapter.java | 176 * Determine which group an item belongs to. 248 * @param groupPosition Index of the group containing the desired item. 249 * @param childPosition Index of the item within the specified group. 273 TextView item; local 276 item = (TextView) factory.inflate(R.layout.list_group_header, parent, false); 278 item = (TextView) convertView; 281 item.setText(label); 282 return item;
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/ |
EditableItem.java | 84 private static void loadBitmaps(Context context, EditableItem item, int[] bitmapResIds) { 89 item.setAvailableValues(largeIconBitmaps); 134 for (EditableItem item : values()) 135 if (item != PRESET) 136 item.setValue(null);
|
/system/core/libpixelflinger/codeflinger/tinyutils/ |
KeyedVector.h | 80 ssize_t add(const KEY& key, const VALUE& item); 81 ssize_t replaceValueFor(const KEY& key, const VALUE& item); 82 ssize_t replaceValueAt(size_t index, const VALUE& item); 166 ssize_t KeyedVector<KEY,VALUE>::replaceValueAt(size_t index, const VALUE& item) { 168 mVector.editValueAt(index).value = item;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
PhotoPage.java | 107 public static final String KEY_MEDIA_ITEM_PATH = "media-item-path"; 155 // This is the original mSetPathString before adding the camera preview item. 178 // The item that is deleted (but it can still be undeleted before commiting) 180 private boolean mDeleteIsFocus; // whether the deleted item was in focus 447 // Don't display "empty album" action item for capture intents. 460 mSetPathString = "/combo/item/{" + screenNailSetPath + 466 mSetPathString = "/combo/item/{" + FilterSource.FILTER_CAMERA_SHORTCUT + 508 public void onPhotoChanged(int index, Path item) { 534 if (item != null) { 1171 MediaItem item = mModel.getMediaItem(0); local 1529 MenuItem item = menu.findItem(R.id.action_share); local 1535 MenuItem item = menu.findItem(R.id.action_share); local [all...] |
/external/chromium/chrome/browser/tab_contents/ |
render_view_context_menu.cc | 266 const ExtensionMenuItem* item = *i; local 268 if (!ExtensionContextMatch(params, item->contexts())) 272 if (!ExtensionPatternMatch(item->document_url_patterns(), document_url)) 277 if (!ExtensionPatternMatch(item->target_url_patterns(), target_url)) 280 if (item->id().profile == profile || can_cross_incognito) 308 // If this is the first extension-provided menu item, add a separator. 315 // checkbox item because we are going to put the extension icon next to it). 323 ExtensionMenuItem* item = items[0]; local 324 extension_item_map_[menu_id] = item->id(); 325 title = item->TitleWithReplacement(PrintableSelectionText() 355 ExtensionMenuItem* item = *i; local 843 ExtensionMenuItem* item = manager->GetItemById(i->second); local 1121 ExtensionMenuItem* item = GetExtensionMenuItem(id); local [all...] |