HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 126 - 150 of 692) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/ui/gtk/importer/
import_progress_dialog_gtk.h 27 uint16 items,
36 uint16 items,
73 // Items to import from the other browser.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringArrayPropertyEditor.java 45 String[] items = getItems(property); local
46 return "[" + Joiner.on(", ").join(items) + "]";
50 * @return the items specified in value of given {@link Property}.
57 // no items
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
StringsDialog.java 47 // Items
51 * Sets the items to edit.
53 public void setItems(String[] items) {
54 setText(Joiner.on('\n').join(items));
58 * @return the edited items.
  /external/quake/quake/src/WinQuake/
sbar.cpp 61 //MED 01/04/97 added hipnotic items array
568 if (cl.items & (IT_SHOTGUN<<i) )
596 if (cl.items & (1<<hipweapons[i]) )
613 if (cl.items & HIT_PROXIMITY_GUN)
624 if (cl.items & (IT_SHOTGUN<<4))
674 // items
676 if (cl.items & (1<<(17+i)))
694 //MED 01/04/97 added hipnotic items
695 // hipnotic items
699 if (cl.items & (1<<(24+i))
    [all...]
  /external/webkit/LayoutTests/fast/dom/NodeList/script-tests/
nodelist-item-call-as-function.js 1 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
  /external/webkit/Source/WebCore/dom/
Clipboard.idl 46 readonly attribute [Conditional=DATA_TRANSFER_ITEMS, EnabledAtRuntime=DataTransferItems] DataTransferItems items;
  /external/webkit/Source/WebCore/platform/network/
BlobData.cpp 93 void BlobData::swapItems(BlobDataItemList& items)
95 m_items.swap(items);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests_unittest.py 87 for input, output in styles.items():
90 for input, output in scripts.items():
  /gdk/samples/quake/jni/
sbar.cpp 61 //MED 01/04/97 added hipnotic items array
568 if (cl.items & (IT_SHOTGUN<<i) )
596 if (cl.items & (1<<hipweapons[i]) )
613 if (cl.items & HIT_PROXIMITY_GUN)
624 if (cl.items & (IT_SHOTGUN<<4))
674 // items
676 if (cl.items & (1<<(17+i)))
694 //MED 01/04/97 added hipnotic items
695 // hipnotic items
699 if (cl.items & (1<<(24+i))
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSet.java 32 int items, int item_id_start) {
34 for (int i = 0; i < items; i++) {
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportAdapter.java 35 public DeliveryReportAdapter(Context context, List<DeliveryReportItem> items) {
36 super(context, R.layout.delivery_report_list_item, R.id.recipient, items);
IconListAdapter.java 40 List<IconListItem> items) {
41 super(context, mResource, items);
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 32 * Icon list view adapter to show the list of STK items.
38 public StkMenuAdapter(Context context, List<Item> items,
40 super(context, 0, items);
  /external/chromium/chrome/browser/first_run/
first_run.cc 523 int items = 0; local
527 items = items | importer::HISTORY;
532 items = items | importer::HOME_PAGE;
535 items = items | importer::HOME_PAGE;
543 items = items | importer::SEARCH_ENGINES;
546 items = items | importer::SEARCH_ENGINES
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiChatFragment.java 29 private List<String> items = new ArrayList<String>(); field in class:WiFiChatFragment
38 items);
78 List<String> items) {
79 super(context, textViewResourceId, items);
90 String message = items.get(position);
  /frameworks/base/core/tests/coretests/src/android/widget/
ListViewTest.java 44 List<String> items = Lists.newArrayList("hello"); local
45 Adapter<String> adapter = new Adapter<String>(context, 0, items);
74 List<String> items = Lists.newArrayList("hello"); local
75 Adapter<String> adapter = new Adapter<String>(context, 0, items);
86 items.remove(0);
  /external/markdown/markdown/
html4.py 144 items = elem.items()
145 if items or namespaces:
146 items.sort() # lexical order
147 for k, v in items:
157 items = namespaces.items()
158 items.sort(key=lambda x: x[1]) # sort on prefix
159 for v, k in items:
255 for key, value in elem.items()
    [all...]
preprocessors.py 112 items = []
161 items.append(block.strip())
172 items.append(block.strip())
180 self.markdown.htmlStash.store('\n\n'.join(items)))
181 items = []
183 if items:
184 new_blocks.append(self.markdown.htmlStash.store('\n\n'.join(items)))
  /external/v8/test/mjsunit/
instanceof.js 63 var items = [ 1, new Number(42),
73 for (var i = 0; i < items.length; i++) {
74 for (var j = 0; j < items.length; j++) {
76 if (items[i] instanceof items[j]) instanceofs++;
  /external/quake/quake/src/QW/progs/
weapons.qc 873 self.items = self.items - ( self.items & (IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS) );
886 self.items = self.items | IT_SHELLS;
893 self.items = self.items | IT_SHELLS;
900 self.items = self.items | IT_NAILS;
907 self.items = self.items | IT_NAILS;
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_state.java 19 * by several items). In our example above, the state would also include
20 * items such as: <pre>
31 * This corresponds to "moving the dot past" a terminal in one or more items
32 * in the state (these new shifted items will then be found in the state at
57 /** Constructor for building a state from a set of items.
58 * @param itms the set of items that makes up this state.
74 /* store the items */
99 * unclosed, set of items -- which uniquely define the state). This table
107 * found). The kernel item set is the subset of items that were used to
108 * originally create the state. These items are formed by "shifting th
134 public lalr_item_set items() {return _items;} method in class:lalr_state
    [all...]
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu.cc 72 bool IsCustomItemEnabled(const std::vector<WebMenuItem>& items, int id) {
75 for (size_t i = 0; i < items.size(); ++i) {
76 int action_id = IDC_CONTENT_CONTEXT_CUSTOM_FIRST + items[i].action;
78 return items[i].enabled;
79 if (items[i].type == WebMenuItem::SUBMENU) {
80 if (IsCustomItemEnabled(items[i].submenu, id))
87 bool IsCustomItemChecked(const std::vector<WebMenuItem>& items, int id) {
90 for (size_t i = 0; i < items.size(); ++i) {
91 int action_id = IDC_CONTENT_CONTEXT_CUSTOM_FIRST + items[i].action;
93 return items[i].checked
302 ExtensionMenuItem::List items = local
    [all...]
  /external/bison/src/
state.c 127 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
140 res = xmalloc (offsetof (state, items) + items_size);
150 memcpy (res->items, core, items_size);
259 /* Two states are equal if they have the same core items. */
269 if (s1->items[i] != s2->items[i])
288 key += s->items[i];
345 state *probe = xmalloc (offsetof (state, items) + items_size);
349 memcpy (probe->items, core, items_size);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_contextmenu.cpp 45 Eina_List* items; /**< the list of items */ member in struct:_Ewk_Context_Menu
77 * When the reference count it's reached 0, the menu with all items are freed.
89 EINA_LIST_FREE(menu->items, item)
116 * Gets the list of items.
118 * @param o the context menu object to get list of the items
119 * @return the list of the items on success or @c 0 on failure
125 return o->items;
362 menu->items = 0;
410 o->items = eina_list_append(o->items, menu_item)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuPresenter.java 115 * @return A ListAdapter containing the items in the menu.
230 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
231 int count = items.size() - mItemIndexOffset;
239 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
244 return items.get(position);
266 final ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local
267 final int count = items.size();
269 final MenuItemImpl item = items.get(i);

Completed in 405 milliseconds

1 2 3 4 56 7 8 91011>>