HomeSort by relevance Sort by last modified time
    Searched full:items (Results 51 - 75 of 3729) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/shareables/
README.txt 6 This directory was originally created for downloadable items such as ZIP files,
  /packages/apps/Launcher2/res/values-sw600dp-land/
config.xml 3 <!-- Folder max bounds and max number of items. Note: folder_max_count_x * folder_max_count_y
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 81 // items is the list of items to display in the list.
82 List<Map<String, String>> items = new ArrayList<Map<String, String>>(); local
89 addItem(items, mActivity.getString(R.string.calendar_info_error), "");
131 addItem(items, displayName, text);
137 addItem(items, mActivity.getString(R.string.calendar_info_error), e.toString());
144 if (items.size() == 0) {
145 addItem(items, mActivity.getString(R.string.calendar_info_no_calendars), "");
147 return items;
153 * @param items The info items to display
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
SearchPopupMenuMac.mm 57 NSMutableArray* items = [[NSMutableArray alloc] initWithCapacity:size];
59 [items addObject:searchItems[i]];
60 [[NSUserDefaults standardUserDefaults] setObject:items forKey:autosaveKey(name)];
61 [items release];
71 NSArray* items = [[NSUserDefaults standardUserDefaults] arrayForKey:autosaveKey(name)];
72 size_t size = [items count];
74 NSString* item = [items objectAtIndex:i];
  /external/bison/src/
closure.h 34 ITEMS, of length N), set up RULESET and ITEMSET to indicate what
35 rules could be run and which items could be accepted when those
36 items are the active ones.
44 significant). CLOSURE places there the indices of all items which
47 void closure (item_number *items, size_t n);
  /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/smack/src/org/jivesoftware/smackx/pubsub/
ItemDeleteEvent.java 20 * Represents an event in which items have been deleted from the node.
30 * items (by id) have been deleted, and that the event matches the listed
35 * @param deletedItemIds The item ids of the items that were deleted.
48 * Get the item id's of the items that have been deleted.
60 return getClass().getName() + " [subscriptions: " + getSubscriptions() + "], [Deleted Items: " + itemIds + ']';
ItemPublishEvent.java 27 private List<T> items; field in class:ItemPublishEvent
40 items = eventItems;
56 items = eventItems;
74 items = eventItems;
87 return Collections.unmodifiableList(items);
91 * Indicates whether this event was delayed. That is, the items
98 * @return true if the items are delayed, false otherwise.
106 * Gets the original date the items were published. This is only
109 * @return Date items were published if {@link #isDelayed()} is true, null otherwise.
  /external/webkit/Tools/QueueStatusServer/model/
workitems_unittest.py 37 items = WorkItems()
38 items.item_ids = [0, 1, 2]
39 self.assertEquals(items.display_position_for_attachment(0), 1)
40 self.assertEquals(items.display_position_for_attachment(1), 2)
41 self.assertEquals(items.display_position_for_attachment(3), None)
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 56 void putCustomAppWidgets(List<Item> items, Intent intent) {
105 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items");
106 putAppWidgetItems(customInfo, customExtras, items, 0, true);
115 List<Bundle> customExtras, List<Item> items, int categoryFilter,
130 items.add(item);
140 * Build and return list of items to be shown in dialog. This will mix both
148 List<Item> items = new ArrayList<Item>(); local
154 putInstalledAppWidgets(items, categoryFilter);
156 // Sort all items together by label
158 putCustomAppWidgets(items, intent)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_editor_unittest.mm 146 NSArray* items = [contextMenu itemArray];
147 ASSERT_GT([items count], 0U);
148 EXPECT_EQ(@selector(cut:), [[items objectAtIndex:0] action])
149 << "action is: " << sel_getName([[items objectAtIndex:0] action]);
241 NSArray* items = [menu itemArray];
242 ASSERT_EQ([items count], 6U);
245 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(cut:));
246 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(copy:));
247 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(paste:));
248 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(pasteAndGo:))
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlertDialog.java 30 private CharSequence[] items; field in class:ShadowAlertDialog
79 * Simulates a click on the {@code Dialog} item indicated by {@code index}. Handles both multi- and single-choice dialogs, tracks which items are currently
161 * @return the items that are available to be clicked on
164 return items;
188 * @return an array indicating which items are and are not clicked on a multi-choice dialog
206 if (items != null) {
207 adapter = new ArrayAdapter<CharSequence>(context, R.layout.simple_list_item_checked, R.id.text1, items);
244 private CharSequence[] items; field in class:ShadowAlertDialog.ShadowBuilder
276 * Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. This should be
285 this.items = context.getResources().getTextArray(itemsId)
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 22 def parse_items(items, has_dependencies = True):
24 kwargs['name'] = items.get_string('name')
25 kwargs['parent'] = items.get_optional_string('parent')
27 kwargs['dependencies'] = items.get_list('dependencies')
61 this object. Items are of the form (reference-type, component-name).
95 def parse(subpath, items):
96 kwargs = ComponentInfo.parse_items(items, has_dependencies = False)
113 def parse_items(items):
114 kwargs = ComponentInfo.parse_items(items)
115 kwargs['library_name'] = items.get_optional_string('library_name'
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubsetMapping.h 12 /// Items in A is subsets of integers,
13 /// Items in B some pointers (Successors).
76 CaseItems Items;
86 "Intersected items with different successors!");
98 clustersVector.reserve(Items.size());
99 clustersVector.insert(clustersVector.begin(), Items.begin(), Items.end());
101 Items.clear();
102 Items.insert(Items.begin(), clustersVector.begin(), clustersVector.end())
    [all...]