/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
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-swapelements.js | 31 function Item(val) { 48 array1[i] = new Item(i);
|
/external/v8/test/mjsunit/regress/ |
regress-swapelements.js | 31 function Item(val) { 48 array1[i] = new Item(i);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_list.h | 34 void * Item; 39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_list.h | 34 void * Item; 39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
|
/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/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/ |
gallery_item.js | 8 * Object representing an image item (a photo or a video). 13 Gallery.Item = function(entry) { 21 Gallery.Item.prototype.getEntry = function() { return this.entry_ }; 26 Gallery.Item.prototype.getFileName = function() { 33 Gallery.Item.prototype.isOriginal = function() { return this.original_ }; 39 Gallery.Item.COPY_SIGNATURE = ' - Edited'; 45 Gallery.Item.REGEXP_COPY_0 = 46 new RegExp('^(.+)' + Gallery.Item.COPY_SIGNATURE + '$'); 52 Gallery.Item.REGEXP_COPY_N = 53 new RegExp('^(.+)' + Gallery.Item.COPY_SIGNATURE + ' \\((\\d+)\\)$') [all...] |
/external/chromium_org/extensions/browser/ |
process_map.cc | 9 // Item 10 struct ProcessMap::Item { 11 Item() : process_id(0), site_instance_id(0) { 16 explicit Item(const ProcessMap::Item& other) 22 Item(const std::string& extension_id, int process_id, 29 ~Item() { 32 bool operator<(const ProcessMap::Item& other) const { 65 return items_.insert(Item(extension_id, process_id, site_instance_id)).second; 70 return items_.erase(Item(extension_id, process_id, site_instance_id)) > 0 [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_grid.js | 49 var item = self.ownerDocument.createElement('LI'); 50 FileGrid.Item.decorate(item, entry, self); 51 return item; 67 var entry = this.dataModel.item(this.getListItemAncestor(box)); 100 * @param {HTMLElement} li List item. 105 li.className = 'thumbnail-item'; 190 * Item for the Grid View. 193 FileGrid.Item = function() { 200 FileGrid.Item.prototype.__proto__ = cr.ui.ListItem.prototype [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/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/chrome/common/ |
automation_messages.h | 158 // items that go in the menu. An item may be a submenu, so the data 164 // This struct describes one item in the menu. 165 struct Item { 166 Item(); 168 // This is the type of the menu item, using values from the enum 172 // This is the command id of the menu item, which will be passed by 173 // Chrome Frame to Chrome if the item is selected. 179 // These are states of the menu item. 189 std::vector<Item> items;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
FormDataList.h | 34 class Item { 36 Item() { } 37 Item(const WTF::CString& data) : m_data(data) { } 38 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { } 73 const Vector<Item>& items() const { return m_items; } 87 Vector<Item> m_items;
|
/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/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/ |
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/av/media/libstagefright/httplive/ |
M3UParser.h | 56 struct Item { 70 Vector<Item> mItems;
|
/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...] |
/packages/apps/UnifiedEmail/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 {
|
/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/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...] |
/external/chromium_org/third_party/skia/include/views/ |
SkOSMenu.h | 23 * the event payload for the item. 50 class Item { 53 * Auto increments a global to generate an unique ID for each new item 56 Item(const char label[], SkOSMenu::Type type, const char slotName[], 58 ~Item() { delete fEvent; } 78 * Post event associated with the menu item to target, any changes to 96 const Item* getItemByID(int itemID) const; 97 void getItems(const Item* items[]) const; 100 * Assign key to the menu item with itemID, will do nothing if there's no 101 * item with the id give [all...] |
/external/skia/include/views/ |
SkOSMenu.h | 23 * the event payload for the item. 50 class Item { 53 * Auto increments a global to generate an unique ID for each new item 56 Item(const char label[], SkOSMenu::Type type, const char slotName[], 58 ~Item() { delete fEvent; } 78 * Post event associated with the menu item to target, any changes to 96 const Item* getItemByID(int itemID) const; 97 void getItems(const Item* items[]) const; 100 * Assign key to the menu item with itemID, will do nothing if there's no 101 * item with the id give [all...] |