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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.cc 35 bool IsFileType(BlobData::Item::Type type) {
37 case BlobData::Item::TYPE_FILE:
38 case BlobData::Item::TYPE_FILE_FILESYSTEM:
192 const BlobData::Item& item = blob_data_->items().at(i); local
193 if (IsFileType(item.type())) {
201 if (!AddItemLength(i, item.length()))
249 const BlobData::Item& item = blob_data_->items().at(index); local
250 DCHECK(IsFileType(item.type()))
295 const BlobData::Item& item = blob_data_->items().at(current_item_index_); local
324 const BlobData::Item& item = blob_data_->items().at(current_item_index_); local
535 const BlobData::Item& item = blob_data_->items().at(index); local
547 const BlobData::Item& item = blob_data_->items().at(index); local
    [all...]
  /external/chromium_org/tools/gn/
builder_unittest.cc 84 builder_->ItemDefined(scoped_ptr<Item>(tc));
119 builder_->ItemDefined(scoped_ptr<Item>(a));
125 // A should be unresolved with an item
127 EXPECT_TRUE(a_record->item());
131 // B should be unresolved, have no item, and no deps.
133 EXPECT_FALSE(b_record->item());
156 builder_->ItemDefined(scoped_ptr<Item>(c));
166 builder_->ItemDefined(scoped_ptr<Item>(b));
196 builder_->ItemDefined(scoped_ptr<Item>(tc2));
208 builder_->ItemDefined(scoped_ptr<Item>(b))
    [all...]
gyp_script_target_writer_unittest.cc 24 record.set_item(target.PassAs<Item>());
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 210 public boolean onMenuItemClick(MenuItem item) {
218 public boolean onMenuItemClick(MenuItem item) {
233 Item item = mAdapter.mItems.get(position); local
234 Uri targetUri = item.mFirstImageUri;
236 if (targetUri != null && item.mBucketId != null) {
238 .appendQueryParameter("bucketId", item.mBucketId)
337 // and generated thumbnail bitmaps for each item. We do this instead of
341 ArrayList<Item> allItems = new ArrayList<Item>();
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PopupList.java 44 public static class Item {
48 public Item(int id, String title) {
60 private final ArrayList<Item> mItems = new ArrayList<Item>();
79 mItems.add(new Item(id, title));
172 public Item findItem(int id) {
173 for (Item item : mItems) {
174 if (item.id == id) return item;
    [all...]
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_list_chromeos.cc 36 const AvatarMenu::Item& ProfileListChromeOS::GetItemAt(size_t index) const {
60 AvatarMenu::Item* item = new AvatarMenu::Item(i, i, icon); local
61 item->name = (*it)->GetDisplayName();
62 item->sync_state = profile_info_->GetUserNameOfProfileAtIndex(i);
63 item->profile_path = profile_info_->GetPathOfProfileAtIndex(i);
64 item->managed = false;
65 item->signed_in = true;
66 item->active = profile_info_->GetPathOfProfileAtIndex(i) =
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
profile_chooser_view.h 127 const AvatarMenu::Item& avatar_item,
135 const AvatarMenu::Item& avatar_item);
137 const AvatarMenu::Item& avatar_item);
  /external/smack/src/org/jivesoftware/smackx/provider/
MUCOwnerProvider.java 42 if (parser.getName().equals("item")) {
64 private MUCOwner.Item parseItem(XmlPullParser parser) throws Exception {
66 MUCOwner.Item item = new MUCOwner.Item(parser.getAttributeValue("", "affiliation")); local
67 item.setNick(parser.getAttributeValue("", "nick"));
68 item.setRole(parser.getAttributeValue("", "role"));
69 item.setJid(parser.getAttributeValue("", "jid"));
74 item.setActor(parser.getAttributeValue("", "jid"));
77 item.setReason(parser.nextText())
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction5rc.java 39 import org.jf.dexlib.Item;
52 public Instruction5rc(Opcode opcode, int regCount, int startReg, Item referencedItem) {
104 private static void checkItem(Opcode opcode, Item item, int regCount) {
107 String type = ((TypeIdItem) item).getTypeDescriptor();
117 MethodIdItem methodIdItem = (MethodIdItem) item;
Instruction20bc.java 41 public Instruction20bc(Opcode opcode, VerificationErrorType validationErrorType, Item referencedItem) {
47 private static ReferenceType getReferenceType(Item item) {
48 if (item instanceof TypeIdItem) {
51 if (item instanceof FieldIdItem) {
54 if (item instanceof MethodIdItem) {
Instruction22c.java 36 import org.jf.dexlib.Item;
46 public Instruction22c(Opcode opcode, byte regA, byte regB, Item referencedItem) {
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
RenderPass.java 44 ScriptField_RenderPass_s.Item mRsField;
86 ScriptField_RenderPass_s.Item getRsField(RenderScriptGL rs, Resources res) {
91 mRsField = new ScriptField_RenderPass_s.Item();
  /external/chromium_org/chrome/browser/ui/views/extensions/
bundle_installed_bubble.cc 70 BundleInstaller::Item::STATE_INSTALLED);
72 BundleInstaller::Item::STATE_FAILED);
80 BundleInstaller::Item::STATE_INSTALLED));
98 BundleInstaller::Item::STATE_FAILED));
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.cpp 48 m_items.append(Item(blob, filename));
72 const Vector<FormDataList::Item>& items = this->items();
76 const FormDataList::Item& key = items[i];
77 const FormDataList::Item& value = items[i + 1];
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
IndexedSection.java 34 public class IndexedSection<T extends Item> extends Section<T> {
48 T item = (T)ItemFactory.makeItem(ItemType, DexFile); local
49 items.set(i, item);
50 item.readFrom(in, i, readContext);
55 * Gets the item at the specified index in this section, or null if the index is -1
56 * @param index the index of the item to get
57 * @return the item at the specified index in this section, or null if the index is -1
68 * Gets the item at the specified index in this section
69 * @param index the index of the item to get
70 * @return the item at the specified index in this sectio
    [all...]
ItemFactory.java 32 protected static Item makeItem(ItemType itemType, DexFile dexFile) {
OffsettedSection.java 33 public class OffsettedSection<T extends Item> extends Section<T> {
45 T item = (T)ItemFactory.makeItem(ItemType, DexFile); local
47 items.set(i, item);
48 item.readFrom(in, i, readContext);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsFragment.java 157 final Object item = mAdapter.getItem(i); local
158 if (item instanceof RootItem) {
159 final RootInfo testRoot = ((RootItem) item).root;
179 final Item item = mAdapter.getItem(position);
180 if (item instanceof RootItem) {
181 activity.onRootPicked(((RootItem) item).root, true);
182 } else if (item instanceof AppItem) {
183 activity.onAppPicked(((AppItem) item).info);
185 throw new IllegalStateException("Unknown root: " + item);
361 final Item item = getItem(position); local
377 final Item item = getItem(position); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 193 * Returns the absolute file offset of the given item which must
201 * @param item {@code non-null;} the item in question
202 * @return {@code >= 0;} the item's absolute file offset
204 public abstract int getAbsoluteItemOffset(Item item);
224 public abstract Collection<? extends Item> items();
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 192 * Returns the absolute file offset of the given item which must
200 * @param item {@code non-null;} the item in question
201 * @return {@code >= 0;} the item's absolute file offset
203 public abstract int getAbsoluteItemOffset(Item item);
223 public abstract Collection<? extends Item> items();
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_models.h 28 // Called when a menu item has been activated.
35 // index and item GUID.
42 // Adds an item and its identifying key to the model. Keys needn't be unique.
69 // Returns the ID key for the item at |index|.
72 // Returns the ID key for the item at |checked_item_|, or an empty string if
76 // Sets which item is checked.
82 // Enable/disable an item by key.
98 // Represents an item in this model.
99 struct Item {
100 std::string key; // The key of the item
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Prototype.js 41 function Item(name){
46 this.base = Item; // set Item constructor as method of Book object
50 Book.prototype = new Item;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 193 * Returns the absolute file offset of the given item which must
201 * @param item {@code non-null;} the item in question
202 * @return {@code >= 0;} the item's absolute file offset
204 public abstract int getAbsoluteItemOffset(Item item);
224 public abstract Collection<? extends Item> items();
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 7 * $Id: Item.java,v 1.1.1.1.2.1 2004/06/20 20:14:39 vlad_r Exp $
22 abstract class Item implements IItem
133 protected void addChild (final IItem item)
135 if (item == null) throw new IllegalArgumentException ("null input: item");
137 m_children.add (item);
147 Item (final IItem parent)
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearchManager.java 100 Iterator<DiscoverItems.Item> iter = items.getItems();
102 DiscoverItems.Item item = iter.next(); local
106 info = discoManager.discoverInfo(item.getEntityID());
114 searchServices.add(item.getEntityID());

Completed in 665 milliseconds

1 2 3 4 5 67 8 91011>>