Searched refs:Item (Results 1 - 25 of 288) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Ditem.cc9 Item::Item(const Settings* settings, const Label& label) function in class:Item
15 Item::~Item() {
18 Config* Item::AsConfig() { return NULL; }
19 const Config* Item::AsConfig() const { return NULL; }
20 Target* Item::AsTarget() { return NULL; }
21 const Target* Item::AsTarget() const { return NULL; }
22 Toolchain* Item::AsToolchain() { return NULL; }
23 const Toolchain* Item
[all...]
H A Dconfig.cc12 : Item(settings, label) {
H A Dvisibility.h16 class Item;
49 static bool CheckItemVisibility(const Item* from, const Item* to, Err* err);
53 static bool FillItemVisibility(Item* item, Scope* scope, Err* err);
H A Dbuilder_record.h51 static bool IsItemOfType(const Item* item, ItemType type);
54 static ItemType TypeOfItem(const Item* item);
56 Item* item() { return item_.get(); }
57 const Item* item() const { return item_.get(); }
58 void set_item(scoped_ptr<Item> item) { item_ = item.Pass(); }
100 scoped_ptr<Item> item_;
/external/robolectric/src/main/java/com/google/android/maps/
H A DShadowItemizedOverlayBridge.java6 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/
H A DRosterStorage.java19 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);
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Drecently_used_folders_combo_model.cc21 struct RecentlyUsedFoldersComboModel::Item { struct in class:RecentlyUsedFoldersComboModel
28 Item(const BookmarkNode* node, Type type);
29 ~Item();
31 bool operator==(const Item& item) const;
37 RecentlyUsedFoldersComboModel::Item::Item(const BookmarkNode* node, function in class:RecentlyUsedFoldersComboModel::Item
43 RecentlyUsedFoldersComboModel::Item::~Item() {}
45 bool RecentlyUsedFoldersComboModel::Item::operator==(const Item
[all...]
/external/deqp/executor/
H A DxeTestCaseResult.hpp61 class Item;
92 const Item& getItem (int ndx) const { return *m_items[ndx]; }
93 Item& getItem (int ndx) { return *m_items[ndx]; }
99 std::vector<Item*> m_items;
107 m_items.push_back(static_cast<ri::Item*>(item));
191 class Item class in namespace:xe::ri
195 virtual ~Item (void) {}
200 Item (Type type) : m_type(type) {} function in class:xe::ri::Item
203 Item (const Item
[all...]
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DPrototype.js41 function Item(name){ class
46 this.base = Item; // set Item constructor as method of Book object
50 Book.prototype = new Item;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h27 template<class Item>
39 void push_back(Item *x) {
52 void push_front(Item *x) {
72 Item *front() { return first_; }
73 Item *back() { return last_; }
75 void append_front(IntrusiveList<Item> *l) {
89 void append_back(IntrusiveList<Item> *l) {
109 for (Item *i = first_; ; i = i->next) {
120 explicit Iterator(IntrusiveList<Item> *list)
122 Item *nex
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-swapelements.js31 function Item(val) { class
48 array1[i] = new Item(i);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DItem.java25 public abstract class Item { class
29 public Item() { method in class:Item
/external/smack/src/org/jivesoftware/smackx/pubsub/listener/
H A DItemEventListener.java16 import org.jivesoftware.smackx.pubsub.Item;
27 public interface ItemEventListener <T extends Item>
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.h19 class Item { class in class:blink::CallbackStack
21 Item() { } function in class:blink::CallbackStack::Item
22 Item(void* object, VisitorCallback callback) function in class:blink::CallbackStack::Item
41 Item* allocateEntry();
42 Item* pop();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowItemizedOverlay.java19 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) {
89 private ShadowItemizedOverlayBridge<Item> getBridge() {
90 return new ShadowItemizedOverlayBridge<Item>(realObject);
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp6 struct Item { struct in namespace:Test1
13 template<typename T> constexpr Item item(const char *name) {
22 constexpr Item items[] = {
/external/emma/core/java12/com/vladium/emma/report/
H A DAllItem.java16 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",
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DItem.java21 * 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>
42 public class Item extends NodeExtension class in inherits: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() method in class:Item
59 * Create an <tt>Item</tt> with an id but no payload. This is a valid item for nodes which are configured
63 * Passing null is the equivalent of calling {@link #Item()}.
65 public Item(Strin method in class:Item
83 public Item(String itemId, String nodeId) method in class:Item
[all...]
/external/chromium_org/storage/common/blob/
H A Dblob_data.cc23 items_.push_back(Item());
31 items_.push_back(Item());
39 items_.push_back(Item());
48 items_.push_back(Item());
55 for (std::vector<Item>::const_iterator iter = items_.begin();
57 if (iter->type() == Item::TYPE_BYTES)
/external/chromium_org/ui/file_manager/gallery/js/
H A Dgallery_item.js17 Gallery.Item = function(
79 Gallery.Item.prototype.getEntry = function() { return this.entry_; };
84 Gallery.Item.prototype.getLocationInfo = function() {
91 Gallery.Item.prototype.getMetadata = function() { return this.metadata_; };
100 Gallery.Item.prototype.getFetchedMedia = function() {
118 Gallery.Item.prototype.setMetadata = function(metadata) {
125 Gallery.Item.prototype.getFileName = function() {
132 Gallery.Item.prototype.isOriginal = function() { return this.original_; };
138 Gallery.Item.prototype.getLastAccessedDate = function() {
145 Gallery.Item
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentStatusRequest.java50 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();
91 public static class Item { class in class:AgentStatusRequest
97 public Item(String jid, String type, String name) { method in class:AgentStatusRequest.Item
143 private Item parseAgent(XmlPullParser parser) throws Exception {
160 return new Item(ji
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java214 * Normal type Item stored in the ClassWriter {@link ClassWriter#typeTable},
221 * Uninitialized type Item stored in the ClassWriter
229 * Merged type Item stored in the ClassWriter {@link ClassWriter#typeTable},
258 Item[] items;
268 final Item key;
273 final Item key2;
278 final Item key3;
285 * the Item whose index is <tt>i</tt>. All Item objects stored in this
287 * allow to retrieve an Item fro
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDragData.cpp84 WebVector<WebDragData::Item> WebDragData::items() const
86 Vector<Item> itemList;
89 WebDragData::Item item;
91 item.storageType = Item::StorageTypeString;
96 item.storageType = Item::StorageTypeBinaryData;
104 item.storageType = Item::StorageTypeFilename;
108 item.storageType = Item::StorageTypeFileSystemFile;
114 item.storageType = Item::StorageTypeString;
134 void WebDragData::setItems(const WebVector<Item>& itemList)
141 void WebDragData::addItem(const Item
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DImmutableConverter.java44 public abstract class ImmutableConverter<ImmutableItem, Item> {
45 protected abstract boolean isImmutable(@Nonnull Item item);
46 @Nonnull protected abstract ImmutableItem makeImmutable(@Nonnull Item item);
49 public ImmutableList<ImmutableItem> toList(@Nullable final Iterable<? extends Item> iterable) {
56 for (Item element: iterable) {
70 final Iterator<? extends Item> iter = iterable.iterator();
80 public ImmutableSet<ImmutableItem> toSet(@Nullable final Iterable<? extends Item> iterable) {
87 for (Item element: iterable) {
101 final Iterator<? extends Item> iter = iterable.iterator();
112 @Nullable final Iterable<? extends Item> iterabl
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas110 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
[all...]

Completed in 778 milliseconds

1234567891011>>