HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 1 - 25 of 330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/src/main/java/com/google/android/maps/
ShadowItemizedOverlayBridge.java 6 public class ShadowItemizedOverlayBridge<Item extends OverlayItem> {
7 private ItemizedOverlay<Item> itemizedObject;
9 public ShadowItemizedOverlayBridge(ItemizedOverlay<Item> itemizedObject) {
13 public Item createItem(int i) {
  /external/smack/src/org/jivesoftware/smack/
RosterStorage.java 19 public List<RosterPacket.Item> getEntries();
25 public RosterPacket.Item getEntry(String bareJid);
43 public void addEntry(RosterPacket.Item item, String ver);
53 public void updateLocalEntry(RosterPacket.Item item);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Item.java 24 * Represents an Item COMPREHENSION-TLV object.
28 public class Item implements Parcelable {
29 /** Identifier of the item. */
31 /** Text string of the item. */
33 /** Icon of the item */
36 public Item(int id, String text) {
42 public Item(Parcel in) {
60 public static final Parcelable.Creator<Item> CREATOR = new Parcelable.Creator<Item>() {
62 public Item createFromParcel(Parcel in)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /dalvik/dx/src/com/android/dx/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Item.java 25 public abstract class Item {
29 public Item() {
34 * Returns the item type for this instance.
36 * @return {@code non-null;} the item type
41 * Returns the human name for the particular type of item this
59 * This will <i>not</i> add an item to the file for this instance itself
  /external/smack/src/org/jivesoftware/smackx/pubsub/listener/
ItemEventListener.java 16 import org.jivesoftware.smackx.pubsub.Item;
27 public interface ItemEventListener <T extends Item>
30 * Called whenever an item is published to the node the listener
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 27 template<class Item>
37 void push_back(Item *x) {
50 void push_front(Item *x) {
70 Item *front() { return first_; }
71 Item *back() { return last_; }
73 void append_front(IntrusiveList<Item> *l) {
87 void append_back(IntrusiveList<Item> *l) {
107 for (Item *i = first_; ; i = i->next) {
118 Item *first_;
119 Item *last_
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 84 Item item = descriptorList.get(i); local
85 Item signatureItem = signatureList.itemToLocal(item);
88 item = item.withSignature(signature);
90 result.set(i, item);
107 * Gets the indicated item.
109 * @param n {@code >= 0;} which item
110 * @return {@code null-ok;} the indicated item
    [all...]
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowItemizedOverlay.java 19 public class ShadowItemizedOverlay<Item extends OverlayItem> {
23 private ArrayList<Item> items = new ArrayList<Item>();
26 private ItemizedOverlay<Item> realObject;
39 public final Item getItem(int position) {
44 public boolean hitTest(OverlayItem item, android.graphics.drawable.Drawable drawable, int i, int i1) {
89 private ShadowItemizedOverlayBridge<Item> getBridge() {
90 return new ShadowItemizedOverlayBridge<Item>(realObject);
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 6 struct Item {
13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1
22 constexpr Item items[] = {
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
  /external/emma/core/java12/com/vladium/emma/report/
AllItem.java 16 final class AllItem extends Item
53 private static final Item.ItemMetadata METADATA; // set in <clinit>
57 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_ALL, "all",
PackageItem.java 16 final class PackageItem extends Item
62 private static final Item.ItemMetadata METADATA; // set in <clinit>
66 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_PACKAGE, "package",
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 33 public class AppWidgetLoader<Item extends AppWidgetLoader.LabelledItem> {
39 ItemConstructor<Item> mItemConstructor;
46 ItemConstructor<Item> itemConstructor) {
56 void putCustomAppWidgets(List<Item> items, Intent intent) {
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
127 Item item = mItemConstructor.createItem(mContext, info, local
130 items.add(item);
134 public interface ItemConstructor<Item> {
135 Item createItem(Context context, AppWidgetProviderInfo info, Bundle extras)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
Item.java 20 * This class represents an item that has been, or will be published to a
21 * pubsub node. An <tt>Item</tt> has several properties that are dependent
24 * <h1>An Item received from a node (via {@link LeafNode#getItems()} or {@link LeafNode#addItemEventListener(org.jivesoftware.smackx.pubsub.listener.ItemEventListener)}</b>
30 * <h1>An Item created to send to a node (via {@link LeafNode#send()} or {@link LeafNode#publish()}</b>
33 * resending an item with the same id will overwrite the one that already exists if the items are persisted.
42 public class Item extends NodeExtension
47 * Create an empty <tt>Item</tt> with no id. This is a valid item for nodes which are configured
50 * set to false, no <tt>Item</tt> is sent to the node, you have to use {@link LeafNode#send()} or {@link LeafNode#publish()}
53 public Item()
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchBaseTest.java 24 ScriptField_TestScripts_s.Item[] getTests();
  /external/webkit/Source/WebCore/html/
FormDataList.h 33 class Item {
35 Item() { }
36 Item(const WTF::CString& data) : m_data(data) { }
37 Item(PassRefPtr<Blob> blob) : m_blob(blob) { }
70 const Vector<Item>& items() const { return m_items; }
79 Vector<Item> m_items;
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatusRequest.java 50 private Set<Item> agents;
53 agents = new HashSet<Item>();
60 public Set<Item> getAgents() {
76 for (Iterator<Item> i=agents.iterator(); i.hasNext(); ) {
77 Item item = (Item) i.next(); local
78 buf.append("<agent jid=\"").append(item.getJID()).append("\">");
79 if (item.getName() != null) {
81 buf.append(item.getName());
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 110 Item: String;
112 Item := 'Item 1';
113 FIStackList.Push(Item);
114 Item := 'Item 2';
115 FIStackList.Push(Item);
116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
122 FIStackList.Push('Item 1')
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverItems.java 45 private final List<Item> items = new CopyOnWriteArrayList<Item>();
49 * Adds a new item to the discovered information.
51 * @param item the discovered entity's item
53 public void addItem(Item item) {
55 items.add(item);
64 public void addItems(Collection<Item> itemsToAdd) {
66 for (Item i : itemsToAdd)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ReadContext.java 39 * Namely, it handles "pre-creating" items when an item needs to resolve some other item
100 * Gets the offsetted item of the specified type for the given offset. This method does not support retrieving an
101 * optional item where a value of 0 indicates "not present". Use getOptionalOffsettedItemByOffset instead.
103 * @param itemType The type of item to get
104 * @param offset The offset of the item
105 * @return the offsetted item of the specified type at the specified offset
107 public Item getOffsettedItemByOffset(ItemType itemType, int offset) {
110 SparseArray<Item> sa = itemsByType[itemType.SectionIndex];
111 Item item = sa.get(offset) local
132 Item item = sa.get(offset); local
181 sa.append(item.getOffset(), item); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
InnerClassList.java 38 * Gets the indicated item.
40 * @param n {@code >= 0;} which item
41 * @return {@code null-ok;} the indicated item
43 public Item get(int n) {
44 return (Item) get0(n);
48 * Sets the item at the given index.
51 * @param innerClass {@code non-null;} class this item refers to
60 set0(n, new Item(innerClass, outerClass, innerName, accessFlags));
64 * Item in an inner classes list.
66 public static class Item {
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructPadTest.java 38 ScriptField_PadMe.Item I = new ScriptField_PadMe.Item();
43 S.set(new ScriptField_PadMe.Item(), 0, true);

Completed in 1987 milliseconds

1 2 3 4 5 6 7 8 91011>>