HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 1251 - 1275 of 5060) sorted by null

<<51525354555657585960>>

  /external/openssl/ssl/
d1_pkt.c 185 dtls1_copy_record(SSL *s, pitem *item)
189 rdata = (DTLS1_RECORD_DATA *)item->data;
210 pitem *item; local
217 item = pitem_new(priority, rdata);
218 if (rdata == NULL || item == NULL)
221 if (item != NULL) pitem_free(item);
232 item->data = rdata;
243 if (pqueue_insert(queue->q, item) == NULL)
246 pitem_free(item);
270 pitem *item; local
301 pitem *item; local
811 pitem *item; local
    [all...]
  /build/tools/releasetools/
ota_from_target_files 111 class Item:
123 self.parent = Item.Get(os.path.dirname(name), dir=True)
144 cls.ITEMS[name] = Item(name, dir=dir)
156 # uid, gid, and mode for every Item object. Note this uses the
192 sets the best_subtree of each directory Item to the (uid, gid,
194 Item.
236 def recurse(item, current):
238 # item (and all its children) have already been set to. We only
241 if item.dir:
242 if current != item.best_subtree
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 136 MediaItem item = mAlbumDataAdapter.get(i);
137 if (item != null && item.getPath() == path) return i;
255 MediaItem item = mAlbumDataAdapter.get(slotIndex); local
256 if (item == null) return; // Item not ready yet, ignore the click
257 mSelectionManager.toggle(item.getPath());
280 MediaItem item = mAlbumDataAdapter.get(slotIndex); local
281 if (item == null) return; // Item not ready yet, ignore the clic
770 MediaObject item = mAlbumDataAdapter.get(mIndex); local
    [all...]
  /external/iproute2/doc/
ip-cref.tex 53 \item \verb|-V|, \verb|-Version|
58 \item \verb|-s|, \verb|-stats|, \verb|-statistics|
65 \item \verb|-f|, \verb|-family| followed by a protocol family
74 \item \verb|-4|
78 \item \verb|-6|
82 \item \verb|-0|
87 \item \verb|-o|, \verb|-oneline|
94 \item \verb|-r|, \verb|-resolve|
112 \item \verb|link| --- network device
113 \item \verb|address| --- protocol (IP or IPv6) address on a devic
    [all...]
  /bootable/recovery/minadbd/
fdevent.h 53 void fdevent_remove(fdevent *item);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsReport.java 117 TestListItem item = mAdapter.getItem(i); local
118 if (item.isTest()) {
120 xml.attribute(null, "title", item.title);
121 xml.attribute(null, "class-name", item.testName);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 25 * Class that represents a map item.
34 /** {@code non-null;} item type this instance covers */
41 * {@code null-ok;} first item covered or {@code null} if this is
44 private final Item firstItem;
47 * {@code null-ok;} last item covered or {@code null} if this is
50 private final Item lastItem;
59 * Constructs a list item with instances of this class representing
82 Item firstItem = null;
83 Item lastItem = null;
86 for (Item item : section.items())
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 25 * Class that represents a map item.
34 /** {@code non-null;} item type this instance covers */
41 * {@code null-ok;} first item covered or {@code null} if this is
44 private final Item firstItem;
47 * {@code null-ok;} last item covered or {@code null} if this is
50 private final Item lastItem;
59 * Constructs a list item with instances of this class representing
82 Item firstItem = null;
83 Item lastItem = null;
86 for (Item item : section.items())
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 82 // We have a menu item to show in action bar.
115 // Place an action bar item for searching.
116 MenuItem item = menu.add("Search"); local
117 item.setIcon(android.R.drawable.ic_menu_search);
118 item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM
124 item.setActionView(mSearchView);
160 Log.i("FragmentComplexList", "Item clicked: " + id);
LoaderRetained.java 87 // We have a menu item to show in action bar.
120 // Place an action bar item for searching.
121 MenuItem item = menu.add("Search"); local
122 item.setIcon(android.R.drawable.ic_menu_search);
123 item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM
129 item.setActionView(mSearchView);
165 Log.i("FragmentComplexList", "Item clicked: " + id);
MenuInflateFromXml.java 140 public boolean onOptionsItemSelected(MenuItem item) {
141 switch (item.getItemId()) {
156 // The refresh item is part of the browser group
162 // The reply item is part of the email group
170 if (!item.hasSubMenu()) {
171 Toast.makeText(this, item.getTitle(), Toast.LENGTH_SHORT).show();
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 55 // We have a menu item to show in action bar.
74 // Place an action bar item for searching.
75 MenuItem item = menu.add("Search"); local
76 item.setIcon(android.R.drawable.ic_menu_search);
77 item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM
81 item.setActionView(sv);
100 Log.i("FragmentComplexList", "Item clicked: " + id);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCursorSupport.java 81 // We have a menu item to show in action bar.
100 // Place an action bar item for searching.
101 MenuItem item = menu.add("Search"); local
102 item.setIcon(android.R.drawable.ic_menu_search);
103 MenuItemCompat.setShowAsAction(item, MenuItemCompat.SHOW_AS_ACTION_ALWAYS
139 MenuItemCompat.setActionView(item, searchView);
145 Log.i("FragmentComplexList", "Item clicked: " + id);
LoaderRetainedSupport.java 83 // We have a menu item to show in action bar.
102 // Place an action bar item for searching.
103 MenuItem item = menu.add("Search"); local
104 item.setIcon(android.R.drawable.ic_menu_search);
105 MenuItemCompat.setShowAsAction(item, MenuItemCompat.SHOW_AS_ACTION_ALWAYS
130 MenuItemCompat.setActionView(item, searchView);
136 Log.i("FragmentComplexList", "Item clicked: " + id);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMChildIterNodeList.java 87 * Returns the <code>index</code>th item in the collection. If
95 public Node item(int index) { method in class:DTMChildIterNodeList
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMStringListImpl.java 65 * @see org.apache.xerces.dom3.DOMStringList#item(int)
67 public String item(int index) { method in class:DOMStringListImpl
  /external/chromium/chrome/browser/extensions/
extension_context_menu_api.h 21 // Helper function to read and parse a list of menu item contexts.
47 // them on |item|.
49 ExtensionMenuItem* item);
55 // unset. Also, it is considered an error if the item found has a type other
extension_menu_manager.h 30 // Represents a menu item added by an extension.
36 // An Id uniquely identifies a context menu item registered by an extension.
51 // For context menus, these are the contexts where an item can appear.
64 // An item can be only one of these types.
72 // A list of Contexts for an item.
149 // Takes ownership of |item| and sets its parent_id_.
150 void AddChild(ExtensionMenuItem* item);
152 // Takes the child item from this parent. The item is returned and the caller
161 // The unique id for this item
    [all...]
  /external/chromium/chrome/browser/geolocation/
access_token_store_browsertest.cc 110 AccessTokenStore::AccessTokenSet::const_iterator item = local
113 EXPECT_TRUE(item == access_token_set.end());
115 EXPECT_FALSE(item == access_token_set.end());
116 EXPECT_EQ(*token_to_expect_, item->second);
  /external/chromium/chrome/browser/importer/
importer_host.cc 81 void ImporterHost::NotifyImportItemStarted(importer::ImportItem item) {
83 observer_->ImportItemStarted(item);
86 void ImporterHost::NotifyImportItemEnded(importer::ImportItem item) {
88 observer_->ImportItemEnded(item);
  /external/chromium/chrome/browser/ui/cocoa/
menu_controller.h 19 // has the tag and represented object set for each menu item. The object is a
22 // that particular item. It is important that the model outlives this object
28 BOOL useWithPopUpButtonCell_; // If YES, 0th item is blank
44 // slightly different form (0th item is empty). Note this attribute of the menu
57 - (BOOL)validateUserInterfaceItem:(id<NSValidatedUserInterfaceItem>)item;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 25 * Class that represents a map item.
34 /** {@code non-null;} item type this instance covers */
41 * {@code null-ok;} first item covered or {@code null} if this is
44 private final Item firstItem;
47 * {@code null-ok;} last item covered or {@code null} if this is
50 private final Item lastItem;
59 * Constructs a list item with instances of this class representing
82 Item firstItem = null;
83 Item lastItem = null;
86 for (Item item : section.items())
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 44 private final List<Item> items = new ArrayList<Item>();
109 public Iterator<Item> getItems() {
111 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
189 * Adds a new item returned from a search.
191 * @param item the item returned from a search.
193 public void addItem(Item item) {
195 items.add(item);
230 Item item = i.next(); local
    [all...]
MUCOwner.java 38 private List<Item> items = new ArrayList<Item>();
42 * Returns an Iterator for item childs that holds information about affiliation,
45 * @return an Iterator for item childs that holds information about affiliation,
48 public Iterator<Item> getItems() {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
77 * Adds an item child that holds information about affiliation, jids and nicks.
79 * @param item the item child that holds information about affiliation, jids and nicks.
81 public void addItem(Item item)
92 Item item = (Item) items.get(i); local
    [all...]
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list.js 9 shouldBeNull("touchList.item(0)");
10 shouldBeNull("touchList.item(1)");

Completed in 1667 milliseconds

<<51525354555657585960>>