HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 76 - 100 of 475) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/profiles/
avatar_menu.cc 70 AvatarMenu::Item::Item(size_t menu_index,
81 AvatarMenu::Item::~Item() {
112 bool AvatarMenu::CompareItems(const Item* item1, const Item* item2) {
120 const Item& item = GetItemAt(index); local
124 if (item.signin_required) {
125 chrome::ShowUserManager(item.profile_path)
    [all...]
  /external/chromium_org/content/common/fileapi/
webblob_messages.h 23 webkit_blob::BlobData::Item)
52 webkit_blob::BlobData::Item)
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobData.h 49 struct Item {
68 // Retrieves the values of the item at the given index. Returns false if
70 BLINK_PLATFORM_EXPORT bool itemAt(size_t index, Item& result) const;
  /external/chromium_org/tools/gn/
builder_record.cc 7 #include "tools/gn/item.h"
36 bool BuilderRecord::IsItemOfType(const Item* item, ItemType type) {
39 return !!item->AsTarget();
41 return !!item->AsConfig();
43 return !!item->AsToolchain();
51 BuilderRecord::ItemType BuilderRecord::TypeOfItem(const Item* item) {
52 if (item->AsTarget())
54 if (item->AsConfig()
    [all...]
build_settings.h 19 class Item;
26 typedef base::Callback<void(scoped_ptr<Item>)> ItemDefinedCallback;
80 // Called when an item is defined from a background thread.
81 void ItemDefined(scoped_ptr<Item> item) const;
  /external/smack/src/org/jivesoftware/smack/packet/
RosterPacket.java 35 private final List<Item> rosterItems = new ArrayList<Item>();
42 * Adds a roster item to the packet.
44 * @param item a roster item.
46 public void addRosterItem(Item item) {
48 rosterItems.add(item);
76 public Collection<Item> getRosterItems() {
78 return Collections.unmodifiableList(new ArrayList<Item>(rosterItems))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/muc/
Affiliate.java 42 Affiliate(MUCOwner.Item item) {
44 this.jid = item.getJid();
45 this.affiliation = item.getAffiliation();
46 this.role = item.getRole();
47 this.nick = item.getNick();
50 Affiliate(MUCAdmin.Item item) {
52 this.jid = item.getJid();
53 this.affiliation = item.getAffiliation()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PublishItem.java 20 * Represents a request to publish an item(s) to a specific node.
24 public class PublishItem <T extends Item> extends NodeExtension
29 * Construct a request to publish an item to a node.
32 * @param toPublish The {@link Item} to publish
45 * @param toPublish The list of {@link Item} to publish
62 for (Item item : items)
64 builder.append(item.toXML());
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureBase.java 42 ScriptField_Texture_s.Item mData;
45 mData = new ScriptField_Texture_s.Item();
  /external/chromium_org/chrome/browser/extensions/
bundle_installer.cc 44 // Creates a dummy extension and sets the manifest's name to the item's
46 scoped_refptr<Extension> CreateDummyExtension(const BundleInstaller::Item& item,
50 CHECK(!item.localized_name.empty());
57 item.id,
97 BundleInstaller::Item::Item() : state(STATE_PENDING) {}
99 base::string16 BundleInstaller::Item::GetNameForDisplay() {
115 items_[items[i].id].state = Item::STATE_PENDING;
120 Item::State state) const
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.h 35 struct Item {
56 * The header and item name strings are swapped into this object,
64 * The item names are swapped and sorted in the outCharset rather than the local one.
74 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
103 /* The extractItem() functions accept outputType=0 to mean "don't swap the item". */
108 /* This variant extracts an item to a specific filename. */
112 const Item *getItem(int32_t idx) const;
127 void enumDependencies(Item *pItem, void *context, CheckDependency check);
153 Item *items;
  /external/smack/src/org/jivesoftware/smackx/
NodeInformationProvider.java 32 * and hosted items (i.e. DiscoverItems.Item) about a given node. This information will be
42 * Returns a list of the Items {@link org.jivesoftware.smackx.packet.DiscoverItems.Item}
44 * answer an Item for each joined room when asked for the rooms where the use has joined.
48 List<DiscoverItems.Item> getNodeItems();
OfflineMessageHeader.java 50 public OfflineMessageHeader(DiscoverItems.Item item) {
52 user = item.getEntityID();
53 jid = item.getName();
54 stamp = item.getNode();
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
InstructionWithReference.java 35 private Item referencedItem;
38 protected InstructionWithReference(Opcode opcode, Item referencedItem) {
45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
68 public Item getReferencedItem() {
98 " is the wrong item type for opcode " + opcode.name + ". Expecting FieldIdItem.");
104 " is the wrong item type for opcode " + opcode.name + ". Expecting MethodIdItem.");
110 " is the wrong item type for opcode " + opcode.name + ". Expecting TypeIdItem.");
116 " is the wrong item type for opcode " + opcode.name + ". Expecting StringIdItem.");
122 " is invalid for opcode " + opcode.name + ". This opcode does not reference an item");
  /external/smack/src/org/jivesoftware/smackx/provider/
MUCAdminProvider.java 41 if (parser.getName().equals("item")) {
55 private MUCAdmin.Item parseItem(XmlPullParser parser) throws Exception {
57 MUCAdmin.Item item = local
58 new MUCAdmin.Item(
61 item.setNick(parser.getAttributeValue("", "nick"));
62 item.setJid(parser.getAttributeValue("", "jid"));
67 item.setActor(parser.getAttributeValue("", "jid"));
70 item.setReason(parser.nextText());
74 if (parser.getName().equals("item")) {
    [all...]
  /frameworks/base/core/java/android/content/
ClipData.java 42 * <p>ClippedData is a complex type containing one or Item instances,
43 * each of which can hold one or more representations of an item of data.
55 * <p>Each Item instance can be one of three main classes of data: a simple
56 * CharSequence of text, a single Intent object, or a Uri. See {@link Item}
70 * the application must correctly interpret the data for its use. If the {@link Item}
77 * can use the convenience method {@link Item#coerceToText Item.coerceToText}.
80 * since any clip item an always be converted to a string.
83 * "content:" URIs. A content URI allows the recipient of a ClippedData item
106 * <p>For example, the implementation of {@link Item#coerceToText Item.coerceToText
667 Item item = new Item(text); local
683 Item item = new Item(text, htmlText); local
696 Item item = new Item(intent); local
713 Item item = new Item(uri); local
752 Item item = new Item(uri); local
802 final Item item = mItems.get(i); local
869 Item item = mItems.get(i); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 29 /** {@code non-null;} data about each type of item */
40 * Adds the given item to the statistics.
42 * @param item {@code non-null;} the item to add
44 public void add(Item item) {
45 String typeName = item.typeName();
49 dataMap.put(typeName, new Data(item, typeName));
51 data.add(item);
61 Collection<? extends Item> items = list.items()
    [all...]
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/
Statistics.java 28 /** {@code non-null;} data about each type of item */
39 * Adds the given item to the statistics.
41 * @param item {@code non-null;} the item to add
43 public void add(Item item) {
44 String typeName = item.typeName();
48 dataMap.put(typeName, new Data(item, typeName));
50 data.add(item);
60 Collection<? extends Item> items = list.items()
    [all...]
MapItem.java 24 * Class that represents a map item.
33 /** {@code non-null;} item type this instance covers */
40 * {@code null-ok;} first item covered or {@code null} if this is
43 private final Item firstItem;
46 * {@code null-ok;} last item covered or {@code null} if this is
49 private final Item lastItem;
58 * Constructs a list item with instances of this class representing
81 Item firstItem = null;
82 Item lastItem = null;
85 for (Item item : section.items())
    [all...]
  /external/chromium_org/ui/base/models/
button_menu_item_model.cc 30 struct ButtonMenuItemModel::Item {
50 Item item = { command_id, TYPE_BUTTON, l10n_util::GetStringUTF16(string_id), local
52 items_.push_back(item);
57 Item item = { command_id, TYPE_BUTTON, base::string16(), icon_idr, false }; local
58 items_.push_back(item);
62 Item item = { command_id, TYPE_BUTTON_LABEL, local
64 items_.push_back(item);
68 Item item = { 0, TYPE_SPACE, base::string16(), -1, false }; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Statistics.java 29 /** {@code non-null;} data about each type of item */
40 * Adds the given item to the statistics.
42 * @param item {@code non-null;} the item to add
44 public void add(Item item) {
45 String typeName = item.typeName();
49 dataMap.put(typeName, new Data(item, typeName));
51 data.add(item);
61 Collection<? extends Item> items = list.items()
    [all...]
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/chromium_org/content/child/
webblobregistry_impl.cc 48 WebBlobData::Item data_item;
51 case WebBlobData::Item::TypeData: {
57 case WebBlobData::Item::TypeFile:
59 webkit_blob::BlobData::Item item; local
60 item.SetToFilePathRange(
66 new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
69 case WebBlobData::Item::TypeBlob:
71 webkit_blob::BlobData::Item item; local
84 webkit_blob::BlobData::Item item; local
125 webkit_blob::BlobData::Item item; local
171 webkit_blob::BlobData::Item item; local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DebugInfoBuilder.java 155 ArrayList<Item> referencedItems = new ArrayList<Item>();
177 Item[] referencedItemsArray = new Item[referencedItems.size()];
190 void emit(DexFile dexFile, Output out, List<Item> referencedItems);
268 public void emit(DexFile dexFile, Output out, List<Item> referencedItems) {
307 public void emit(DexFile dexFile, Output out, List<Item> referencedItems) {
337 public void emit(DexFile dexFile, Output out, List<Item> referencedItems) {
367 public void emit(DexFile dexFile, Output out, List<Item> referencedItems) {
387 public void emit(DexFile dexFile, Output out, List<Item> referencedItems)
    [all...]

Completed in 601 milliseconds

1 2 34 5 6 7 8 91011>>