/external/chromium/net/http/ |
http_cache.cc | 127 // The type of operation represented by a work item. 135 // A work item encapsulates a single request to the backend with all the 502 scoped_ptr<WorkItem> item(new WorkItem(WI_CREATE_BACKEND, NULL, callback, 510 pending_op->pending_queue.push_back(item.release()); 516 pending_op->writer = item.release(); 537 WorkItem* item = new WorkItem(WI_CREATE_BACKEND, trans, NULL, NULL); 540 pending_op->pending_queue.push_back(item); 566 // Each time we request an item from the cache, we tag it with a 568 // item will use the same generation number and pull the proper 609 WorkItem* item = new WorkItem(WI_DOOM_ENTRY, trans, NULL) local 732 WorkItem* item = new WorkItem(WI_OPEN_ENTRY, trans, entry); local 758 WorkItem* item = new WorkItem(WI_CREATE_ENTRY, trans, entry); local [all...] |
/external/linux-tools-perf/util/ |
trace-event-parse.c | 93 } *list = NULL, *item; local 100 item = malloc_or_die(sizeof(*item)); 101 sscanf(line, "%d %as", &item->pid, 102 (float *)(void *)&item->comm); /* workaround gcc warning */ 103 item->next = list; 104 list = item; 116 item = list; 118 free(item); 151 } *list = NULL, *item; local 292 } *list = NULL, *item; local [all...] |
/external/smack/src/org/jivesoftware/smack/ |
Roster.java | 283 RosterPacket.Item item = new RosterPacket.Item(user, name); local 287 item.addGroupName(group); 291 rosterPacket.addRosterItem(item); 312 private void insertRosterItems(List<RosterPacket.Item> items){ 316 Iterator<RosterPacket.Item> iter = items.iterator(); 323 private void insertRosterItem(RosterPacket.Item item, Collection<String> addedEntries, 325 RosterEntry entry = new RosterEntry(item.getUser(), item.getName() 458 RosterPacket.Item item = RosterEntry.toRosterItem(entry); local [all...] |
/external/libvorbis/doc/ |
05-comment.tex | 99 \item[TITLE] 102 \item[VERSION] 107 \item[ALBUM] 110 \item[TRACKNUMBER] 113 \item[ARTIST] 116 \item[PERFORMER] 119 \item[COPYRIGHT] 122 \item[LICENSE] 130 \item[ORGANIZATION] 134 \item[DESCRIPTION [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
AbstractTestListActivity.java | 39 TestListItem item = mAdapter.getItem(position); local 40 return item.intent; 63 /** Launch the activity when its {@link ListView} item is clicked. */
|
ManifestTestListAdapter.java | 113 public int compare(TestListItem item, TestListItem otherItem) { 114 return item.title.compareTo(otherItem.title); 155 TestListItem item = TestListItem.newTest(title, testName, intent, requiredFeatures); local 158 addTestToCategory(testsByCategory, testCategory, item); 208 String testCategory, TestListItem item) { 216 tests.add(item); 224 TestListItem item = iterator.next(); local 225 String[] requiredFeatures = item.requiredFeatures;
|
/cts/tests/src/android/app/cts/ |
TestDialog.java | 208 public boolean onMenuItemSelected(int featureId, MenuItem item) { 210 return super.onMenuItemSelected(featureId, item); 246 public boolean onOptionsItemSelected(MenuItem item) { 248 switch (item.getItemId()) { 258 return super.onOptionsItemSelected(item); 269 public boolean onContextItemSelected(MenuItem item) { 271 switch (item.getItemId()) { 277 return super.onContextItemSelected(item);
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
UniformItemSection.java | 26 * {@link Item} objects. Each of the items must have the same size in 46 Collection<? extends Item> items = items(); 53 // Since each item has to be the same size, we can pick any. 58 * Gets the item corresponding to the given {@link Constant}. This 64 * @return {@code non-null;} the corresponding item found in this instance 75 for (Item one : items()) { 86 for (Item one : items()) { 94 public final int getAbsoluteItemOffset(Item item) { 99 IndexedItem ii = (IndexedItem) item; [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
UniformItemSection.java | 26 * {@link Item} objects. Each of the items must have the same size in 46 Collection<? extends Item> items = items(); 53 // Since each item has to be the same size, we can pick any. 58 * Gets the item corresponding to the given {@link Constant}. This 64 * @return {@code non-null;} the corresponding item found in this instance 75 for (Item one : items()) { 86 for (Item one : items()) { 94 public final int getAbsoluteItemOffset(Item item) { 99 IndexedItem ii = (IndexedItem) item; [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ContentBrowserActivity.java | 217 public void onSort(MenuItem item) { 221 public boolean onOptionsItemSelected(MenuItem item) { 222 switch (item.getItemId()) { 225 item.setChecked(true); 229 item.setChecked(true); 232 item.setChecked(!item.isChecked()); 233 mContent.setBaseSystemUiVisibility(item.isChecked()
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
MyRssReader.java | 82 public boolean onOptionsItemSelected(Menu.Item item){ 83 switch (item.getId()) {
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
StableArrayAdapter.java | 43 String item = getItem(position); local 44 return mIdMap.get(item);
|
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
StableArrayAdapter.java | 43 String item = getItem(position); local 44 return mIdMap.get(item);
|
/external/chromium/chrome/browser/importer/ |
external_process_importer_bridge.h | 57 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE; 58 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE;
|
importer_host.h | 51 // particular source of data (specified by |item|) is under way. 53 void NotifyImportItemStarted(importer::ImportItem item); 54 void NotifyImportItemEnded(importer::ImportItem item);
|
in_process_importer_bridge.h | 51 virtual void NotifyItemStarted(importer::ImportItem item) OVERRIDE; 52 virtual void NotifyItemEnded(importer::ImportItem item) OVERRIDE;
|
profile_import_process_client.h | 46 virtual void OnImportItemStart(int item); 47 virtual void OnImportItemFinished(int item);
|
/external/chromium/chrome/browser/ui/gtk/importer/ |
import_progress_dialog_gtk.h | 51 virtual void ImportItemStarted(importer::ImportItem item) OVERRIDE; 52 virtual void ImportItemEnded(importer::ImportItem item) OVERRIDE;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
UniformItemSection.java | 26 * {@link Item} objects. Each of the items must have the same size in 46 Collection<? extends Item> items = items(); 53 // Since each item has to be the same size, we can pick any. 58 * Gets the item corresponding to the given {@link Constant}. This 64 * @return {@code non-null;} the corresponding item found in this instance 75 for (Item one : items()) { 86 for (Item one : items()) { 94 public final int getAbsoluteItemOffset(Item item) { 99 IndexedItem ii = (IndexedItem) item; [all...] |
/external/harfbuzz_ng/src/ |
hb-common.cc | 253 hb_language_item_t *item = lang_find_or_insert (str); local 255 return likely (item) ? item->lang : HB_LANGUAGE_INVALID; 395 hb_user_data_item_t item = {key, data, destroy}; local 396 bool ret = !!items.replace_or_insert (item, lock, replace); 404 hb_user_data_item_t item = {NULL }; local 406 return items.find (key, &item, lock) ? item.data : NULL;
|
/external/llvm/utils/lit/lit/ |
discovery.py | 19 def getTestSuite(item, litConfig, cache): 20 """getTestSuite(item, litConfig, cache) -> (suite, relative_path) 22 Find the test suite containing @arg item. 24 @retval (None, ...) - Indicates no test suite contains @arg item. 25 @retval (suite, relative_path) - The suite that @arg item is in, and its 58 item = os.path.realpath(item) 62 while not os.path.isdir(item): 63 parent,base = os.path.split(item) 64 if parent == item [all...] |
/external/mockito/src/org/mockito/internal/matchers/ |
LocalizedMatcher.java | 29 public boolean matches(Object item) {
30 return actualMatcher.matches(item);
|
/external/smack/src/org/jivesoftware/smackx/ |
OfflineMessageManager.java | 116 for (Iterator<DiscoverItems.Item> it = items.getItems(); it.hasNext();) { 117 DiscoverItems.Item item = it.next(); local 118 answer.add(new OfflineMessageHeader(item)); 139 OfflineMessageRequest.Item item = new OfflineMessageRequest.Item(node); local 140 item.setAction("view"); 141 request.addItem(item); 238 OfflineMessageRequest.Item item = new OfflineMessageRequest.Item(node) local [all...] |
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
AffiliationsExtension.java | 80 for (Affiliation item : items)
82 builder.append(item.toXML());
|
SubscriptionsExtension.java | 85 for (Subscription item : items)
87 builder.append(item.toXML());
|