Searched defs:items (Results 1 - 25 of 366) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBitSet.cs76 public BitSet(IEnumerable<int> items) argument
78 foreach (int i in items)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java61 public BitSet(List items) { argument
63 for (int i = 0; i < items.size(); i++) {
64 Integer v = (Integer) items.get(i);
/external/bison/src/
H A DAnnotationList.c72 * that state has \c nitems kernel items.
198 Sbitset *items,
205 *items = Sbitset__new_on_obstack (s->nitems, annotations_obstackp);
212 Sbitset__set (*items, item);
270 aver (s->items[self_item] > 1);
274 if (item_number_is_rule_number (ritem[s->items[self_item]
277 Sbitset items; local
279 for (rulei = s->items[self_item];
288 item_lookahead_sets, &items, annotations_obstackp))
299 items, (*predecesso
192 AnnotationList__compute_lhs_contributions(state *s, rule *the_rule, symbol_number conflicted_token, bitsetv follow_kernel_items, bitsetv always_follows, state ***predecessors, bitset **item_lookahead_sets, Sbitset *items, struct obstack *annotations_obstackp) argument
[all...]
H A Dielr.c186 * is \c ngotos and the number of columns is maximum number of kernel items
212 item_number *items = states[from_state[i]]->items; local
218 if (item_number_is_symbol_number (ritem[items[j]])
219 && item_number_as_symbol_number (ritem[items[j]])
221 && bitset_test (ritem_sees_lookahead_set, items[j]))
409 if (s->items[item] > 1)
416 for (i = s->items[item];
424 if (item_number_is_rule_number (ritem[s->items[item] - 2]))
437 predecessor items' lookahea
[all...]
H A Dstate.h27 Each state of the machine is described by a set of items --
30 state. These symbols at these items are the allowable inputs that
44 Each core contains a vector of NITEMS items which are the indices
45 in the RITEM vector of the items that are selected in this state.
220 /* Its items. Must be last, since ITEMS can be arbitrarily large. Sorted
223 item_number items[1]; member in struct:state
229 /* Create a new state with ACCESSING_SYMBOL for those items. */
/external/bzip2/
H A Dbzlib.c102 void* default_bzalloc ( void* opaque, Int32 items, Int32 size ) argument
104 void* v = malloc ( items * size );
/external/chromium_org/ash/shelf/
H A Dshelf.cc108 const ShelfItem& item = shelf_view_->model()->items()[index];
156 const ShelfItems& items = shelf_model->items(); local
164 if (items[i].type != TYPE_APP_LIST) {
H A Dshelf_model.h70 // Returns an iterator into items() for the item with the specified id, or
71 // items().end() if there is no item with the specified id.
74 const ShelfItems& items() const { return items_; } function in class:ash::ShelfModel
84 // Makes sure |index| is in line with the type-based order of items. If that
H A Dshelf_navigator.cc26 const ShelfItems& items = model.items(); local
32 const ShelfItem& item = items[i];
58 const ShelfItem& item = items[i];
H A Dshelf_view_unittest.cc399 ShelfItems::const_iterator items = model_->ItemByID(id); local
400 return *items;
407 model_index < model_->items().size();
409 ShelfItem item = model_->items()[model_index];
489 for (size_t i = 0; i < model_->items().size(); ++i) {
491 id_map->push_back(std::make_pair(model_->items()[i].id, button));
584 // Compare pre-stored items' id with newly positioned items' after dragging
612 return model_->items()[index].id;
696 // Check that items i
[all...]
/external/chromium_org/ash/system/tray/
H A Dsystem_tray.cc155 // Create user items for each possible user.
257 std::vector<SystemTrayItem*> items; local
263 items.push_back(item);
265 items, true, activate, creation_type, GetTrayXOffset(item), persistent);
447 void SystemTray::ShowItems(const std::vector<SystemTrayItem*>& items, argument
465 // while we add items to the main bubble_ (e.g. in HideNotificationView).
468 system_bubble_->bubble()->UpdateView(items, bubble_type);
480 full_system_tray_menu_ = items.size() > 1;
505 if (items.size() == 1 && items[
[all...]
H A Dsystem_tray.h43 // Calls TrayBackgroundView::Initialize(), creates the tray items, and
53 // Returns all tray items that has been added to system tray.
56 // Shows the default view of all items.
82 // Updates the items when the login status of the system changes.
85 // Updates the items when the shelf alignment changes.
159 // Creates the default set of items for the sytem tray.
181 // Constructs or re-constructs |system_bubble_| and populates it with |items|.
184 void ShowItems(const std::vector<SystemTrayItem*>& items,
192 // |notification_items_|, or destroys it if there are no notification items.
202 const ScopedVector<SystemTrayItem>& items() cons function in class:ash::SystemTray
[all...]
H A Dsystem_tray_bubble.cc40 // A view with some special behaviour for tray items in the popup:
134 const std::vector<ash::SystemTrayItem*>& items,
138 items_(items),
151 const std::vector<ash::SystemTrayItem*>& items,
206 items_ = items;
383 // 2 items, which are the bottom header row and the one just above it.
132 SystemTrayBubble( ash::SystemTray* tray, const std::vector<ash::SystemTrayItem*>& items, BubbleType bubble_type) argument
150 UpdateView( const std::vector<ash::SystemTrayItem*>& items, BubbleType bubble_type) argument
H A Dsystem_tray_unittest.cc224 // Check items have been added
225 const std::vector<SystemTrayItem*>& items = tray->GetTrayItems(); local
227 std::find(items.begin(), items.end(), test_item) != items.end());
229 std::find(items.begin(), items.end(), detailed_item) != items.end());
257 // Verify that no crashes occur on items lacking some views.
442 // Accessibility/Settings tray items ar
[all...]
/external/chromium_org/ash/wm/overview/
H A Dwindow_selector_unittest.cc1084 std::vector<WindowSelectorItem*> items = GetWindowItemsForRoot(0); local
1085 EXPECT_TRUE(items[0]->dimmed());
1086 EXPECT_FALSE(items[1]->dimmed());
1087 EXPECT_FALSE(items[2]->dimmed());
1089 // No items match the search.
1091 EXPECT_TRUE(items[0]->dimmed());
1092 EXPECT_TRUE(items[1]->dimmed());
1093 EXPECT_TRUE(items[2]->dimmed());
1095 // All the items should match the empty string. The filter widget should also
1099 EXPECT_FALSE(items[
1122 std::vector<WindowSelectorItem*> items = GetWindowItemsForRoot(0); local
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_unittest.cc183 // Move items into our aggregate collection
239 // Scan all items
342 // Scan all items
1533 std::vector<const DictionaryValue*> items = local
1535 for (int i = 0; i < static_cast<int>(items.size()); i++) {
1536 item = items[i];
1578 std::vector<const DictionaryValue*> items = local
1580 EXPECT_EQ(1u, items.size());
1581 ASSERT_GT(items.size(), 0u);
1582 const DictionaryValue* item = items[
[all...]
/external/chromium_org/cc/resources/
H A Drasterizer.h130 Item::Vector items; member in struct:cc::RasterTaskQueue
/external/chromium_org/chrome/browser/apps/
H A Dweb_view_browsertest.cc509 // This gets all the items that any extension has registered for possible
1820 MenuItem::List items = GetItems(); local
1821 ASSERT_EQ(1u, items.size());
1822 MenuItem* item = items.at(0);
1830 // 6. Add some more items.
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.cc79 const ScopedVector<google_apis::ChangeResource>& items = change_list.items(); local
80 entries_.resize(items.size());
81 parent_resource_ids_.resize(items.size());
83 for (size_t i = 0; i < items.size(); ++i) {
85 *items[i],
98 const ScopedVector<google_apis::FileResource>& items = file_list.items(); local
99 entries_.resize(items.size());
100 parent_resource_ids_.resize(items
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_system_provider/
H A Dfile_system_provider_api.cc105 std::vector<linked_ptr<FileSystemInfo> > items; local
112 items.push_back(item);
115 SetResultList(api::file_system_provider::GetAll::Results::Create(items));
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine.cc434 bool InputMethodEngine::SetMenuItems(const std::vector<MenuItem>& items) { argument
435 return UpdateMenuItems(items);
439 const std::vector<MenuItem>& items) {
444 for (std::vector<MenuItem>::const_iterator item = items.begin();
445 item != items.end(); ++item) {
438 UpdateMenuItems( const std::vector<MenuItem>& items) argument
H A Dmock_input_method_engine.cc74 bool MockInputMethodEngine::SetMenuItems(const std::vector<MenuItem>& items) { argument
79 const std::vector<MenuItem>& items) {
78 UpdateMenuItems( const std::vector<MenuItem>& items) argument
/external/chromium_org/chrome/browser/download/
H A Dall_download_item_notifier.cc14 content::DownloadManager::DownloadVector items; local
15 manager_->GetAllDownloads(&items);
17 items.begin();
18 it != items.end(); ++it) {
H A Dall_download_item_notifier_unittest.cc84 content::DownloadManager::DownloadVector items; local
85 items.push_back(&item());
87 .WillOnce(SetArgPointee<0>(items));

Completed in 5985 milliseconds

1234567891011>>