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

1 2 3 4 5 6 7

  /frameworks/base/telephony/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) {
58 public static final Parcelable.Creator<Item> CREATOR = new Parcelable.Creator<Item>() {
59 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
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
22 public abstract class IndexedItem extends Item {
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
44 * Gets the item index.
47 * @throws RuntimeException thrown if the item index is not yet assigned
58 * Sets the item index. This method may only ever be called once
62 * @param index {@code >= 0;} the item index
73 * Gets the index of this item as a string, suitable for including in
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/
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
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
22 public abstract class IndexedItem extends Item {
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
44 * Gets the item index.
47 * @throws RuntimeException thrown if the item index is not yet assigned
58 * Sets the item index. This method may only ever be called once
62 * @param index {@code >= 0;} the item index
73 * Gets the index of this item as a string, suitable for including in
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/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...]
ByteCatchList.java 54 * Gets the indicated item.
56 * @param n {@code >= 0;} which item
57 * @return {@code null-ok;} the indicated item
59 public Item get(int n) {
60 return (Item) get0(n);
64 * Sets the item at the given index.
67 * @param item {@code non-null;} the item
69 public void set(int n, Item item) {
    [all...]
  /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",
  /external/skia/include/views/
SkOSMenu.h 41 struct Item {
47 SkTDArray<Item> fItems;
  /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/llvm/lib/Support/
StringMap.cpp 46 TheTable[NumBuckets].Item = (StringMapEntryBase*)2;
51 /// up in. If it already exists as a key in the map, the Item pointer for the
68 StringMapEntryBase *BucketItem = Bucket.Item;
87 // case here is that we are only looking at the buckets (for item info
100 // Okay, we didn't find the item. Probe to the next bucket.
122 StringMapEntryBase *BucketItem = Bucket.Item;
131 // case here is that we are only looking at the buckets (for item info
144 // Okay, we didn't find the item. Probe to the next bucket.
168 StringMapEntryBase *Result = TheTable[Bucket].Item;
169 TheTable[Bucket].Item = getTombstoneVal()
    [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...]
ByteCatchList.java 54 * Gets the indicated item.
56 * @param n {@code >= 0;} which item
57 * @return {@code null-ok;} the indicated item
59 public Item get(int n) {
60 return (Item) get0(n);
64 * Sets the item at the given index.
67 * @param item {@code non-null;} the item
69 public void set(int n, Item item) {
    [all...]
  /frameworks/base/core/java/android/content/
ClipData.java 36 * <p>ClippedData is a complex type containing one or Item instances,
37 * each of which can hold one or more representations of an item of data.
49 * <p>Each Item instance can be one of three main classes of data: a simple
50 * CharSequence of text, a single Intent object, or a Uri. See {@link Item}
57 * the application must correctly interpret the data for its use. If the {@link Item}
64 * can use the convenience method {@link Item#coerceToText Item.coerceToText}.
67 * since any clip item an always be converted to a string.
70 * "content:" URIs. A content URI allows the recipient of a ClippedData item
93 * <p>For example, the implementation of {@link Item#coerceToText Item.coerceToText
359 Item item = new Item(text); local
372 Item item = new Item(intent); local
389 Item item = new Item(uri); local
428 Item item = new Item(uri); local
487 Item item = mItems.get(i); 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...]
  /external/skia/src/views/
SkOSMenu.cpp 21 Item* item = fItems.append(); local
23 item->fTitle = title;
24 item->fEventType = eventType;
25 item->fEventData = eventData;
26 item->fOSCmd = ++gOSMenuCmd;
31 const Item* iter = fItems.begin();
32 const Item* stop = fItems.end();
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructPadTest.java 33 S.set(new ScriptField_PadMe.Item(), 0, true);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
FetchProfile.java 25 * FetchProfile.Item: Described below.
27 * Synonymous with FetchProfile.Item.BODY.
36 * item fetched by using these items could potentially include all of the
39 public enum Item implements Fetchable {
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 19 import com.android.internal.telephony.cat.Item;
34 public class StkMenuAdapter extends ArrayAdapter<Item> {
38 public StkMenuAdapter(Context context, List<Item> items,
47 final Item item = getItem(position); local
54 if (!mIcosSelfExplanatory || (mIcosSelfExplanatory && item.icon == null)) {
55 ((TextView) convertView.findViewById(R.id.text)).setText(item.text);
58 if (item.icon == null) {
61 imageView.setImageBitmap(item.icon);
  /external/llvm/include/llvm/ADT/
StringMap.h 55 /// ItemBucket - The hash table consists of an array of these. If Item is
62 /// Item - This is a pointer to the actual item object.
63 StringMapEntryBase *Item;
84 /// up in. If it already exists as a key in the map, the Item pointer for the
153 // Okay, the item doesn't already exist, and 'Bucket' is the bucket to fill
154 // in. Allocate a new item with space for the string at the end and a null
221 // Free memory referenced by the item.
324 if (Bucket.Item && Bucket.Item != getTombstoneVal()
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebBlobData.h 49 struct Item {
71 // Retrieves the values of the item at the given index. Returns false if
73 WEBKIT_API bool itemAt(size_t index, Item& result) const;

Completed in 608 milliseconds

1 2 3 4 5 6 7