/external/chromium_org/tools/gn/ |
item.cc | 5 #include "tools/gn/item.h" 9 Item::Item(const Settings* settings, const Label& label) 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; [all...] |
item.h | 18 // A named item (target, config, etc.) that participates in the dependency 20 class Item { 22 Item(const Settings* settings, const Label& label); 23 virtual ~Item(); 28 // accessed from any thread with no locking once the item is constructed. 42 // Returns a name like "target" or "config" for the type of item this is, to 46 // Called when this item is resolved, meaning it and all of its dependents
|
config.cc | 12 : Item(settings, label) {
|
builder_record.h | 12 #include "tools/gn/item.h" 18 // tree. It holds a reference to an item and links to other records that the 19 // item depends on, both resolved ones, and unresolved ones. 22 // a placeholder BuilderRecord with no item, and try to load the buildfile 23 // associated with the new item. The item will get filled in when we encounter 24 // the declaration for the item (or when we're done and realize there are 27 // You can also have null item pointers when the target is not required for 50 // Returns true if the given item is of the given type. 51 static bool IsItemOfType(const Item* item, ItemType type) 56 Item* item() { return item_.get(); } function in class:BuilderRecord 57 const Item* item() const { return item_.get(); } function in class:BuilderRecord [all...] |
/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);
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
recently_used_folders_combo_model.cc | 21 struct RecentlyUsedFoldersComboModel::Item { 28 Item(const BookmarkNode* node, Type type); 29 ~Item(); 31 bool operator==(const Item& item) const; 37 RecentlyUsedFoldersComboModel::Item::Item(const BookmarkNode* node, 43 RecentlyUsedFoldersComboModel::Item::~Item() {} 45 bool RecentlyUsedFoldersComboModel::Item::operator==(const Item& item) const [all...] |
/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",
|
/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/chromium_org/chrome/browser/profiles/ |
avatar_menu.h | 36 // Represents an item in the menu. 37 struct Item { 38 Item(size_t menu_index, size_t profile_index, const gfx::Image& icon); 39 ~Item(); 41 // The icon to be displayed next to the item. 92 static bool CompareItems(const Item* item1, const Item* item2); 95 // selecting an item. If |always_create| is true then a new window is created 103 // an item. 112 // Gets the Item at the specified index [all...] |
/external/chromium_org/webkit/common/blob/ |
blob_data.cc | 23 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/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...] |