HomeSort by relevance Sort by last modified time
    Searched full:items (Results 426 - 450 of 6602) sorted by null

<<11121314151617181920>>

  /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_org/chrome/browser/resources/google_now/
background.js 521 }).then(function(items) {
522 console.log('processServerResponse-get ' + JSON.stringify(items));
529 for (var serverNotificationId in items.recentDismissals) {
530 var dismissalAge = now - items.recentDismissals[serverNotificationId];
533 items.recentDismissals[serverNotificationId];
555 var storedGroup = items.notificationGroups[groupName] || {
699 }).then(function(items) {
700 console.log('getGroupsToRequest-storage-get ' + JSON.stringify(items));
704 for (var groupName in items.notificationGroups) {
705 var group = items.notificationGroups[groupName]
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_tree.js 31 var currentElement = this.items[index];
34 if (index >= this.items.length) {
54 while (removedChild = this.items[index]) {
75 for (var i = 0; i < this.items.length; i++) {
76 var item = this.items[i];
235 if (this.items.length == 0)
326 for (var i = 0; i < this.items.length; i++) {
327 var item = this.items[i];
350 * Redraw subitems with the latest information. The items are sorted in
407 * A TreeItem which represents a volume. Volume items are displayed a
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
ServiceDiscoveryManager.java 45 * <li>Ability to discover items and information of remote XMPP entities.
46 * <li>Ability to publish publicly available items.
212 // Listen for disco#items requests and answer with an empty result
217 // Send back the items defined in the client if the request is of type GET
225 // Add the defined items related to the requested node. Look for
230 // Specified node was found, add node items
314 * (ie items) related to a given node or <tt>null</null> if none.<p>
319 * @param node the node that contains items associated with an entity not addressable as a JID.
332 * (ie items) related to a given node. Every time this client receives a disco request
333 * regarding the items of a given node, the provider associated to that node will be the
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
AlertDialog_BuilderTest.java 388 final CharSequence[] items = mContext.getResources().getTextArray( local
404 assertEquals(items[0], mSelectedItem);
406 assertEquals(items[0], mListView.getItemAtPosition(0));
411 final CharSequence[] items = mContext.getResources().getTextArray( local
417 mBuilder.setMultiChoiceItems(items, null, mOnMultiChoiceClickListener);
426 assertEquals(items[0], mSelectedItem);
428 assertEquals(items[0], mListView.getItemAtPosition(0));
456 final CharSequence[] items = mContext.getResources().getTextArray( local
471 assertEquals(items[0], mSelectedItem);
472 assertEquals(items[0], mListView.getItemAtPosition(0))
509 final CharSequence[] items = mContext.getResources().getTextArray( local
529 final CharSequence[] items = mContext.getResources().getTextArray( local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
app_shortcut_launcher_item_controller.cc 46 // items and not the ones from other users through activation.
141 ChromeLauncherAppMenuItems items; local
143 items.push_back(new ChromeLauncherAppMenuItem(GetTitle(), NULL, false));
152 items.push_back(new ChromeLauncherAppMenuItemTab(
155 return items.Pass();
160 std::vector<content::WebContents*> items; local
175 return items;
189 items.push_back(web_contents);
192 return items;
327 std::vector<content::WebContents*> items = GetRunningApplications() local
    [all...]
  /external/chromium_org/chrome/browser/importer/
external_process_importer_host.cc 47 uint16 items,
56 items_ = items;
63 CheckForLoadedModels(items);
187 void ExternalProcessImporterHost::CheckForLoadedModels(uint16 items) {
193 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
202 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_sub_menu_model.h 45 // Command Id for recently closed items header or disabled item to which the
51 // recently closed window items list.
81 // Build the menu items by populating the menumodel.
84 // Build the recently closed tabs and windows items.
87 // Build the tabs items from other devices.
144 // Navigation items for local recently closed tabs. The |command_id| for
155 // Window items for local recently closed windows. The |command_id| for
  /external/chromium_org/chrome/common/extensions/api/
history.json 60 { "name": "results", "type": "array", "items": { "$ref": "HistoryItem"} }
81 { "name": "results", "type": "array", "items": { "$ref": "VisitItem"} }
129 "description": "Removes all items within the specified date range from the history. Pages will not be removed from the history unless all visits fall within the range.",
135 "startTime": { "type": "number", "description": "Items added to history after this date, represented in milliseconds since the epoch." },
136 "endTime": { "type": "number", "description": "Items added to history before this date, represented in milliseconds since the epoch." }
147 "description": "Deletes all items from the history.",
174 "urls": { "type": "array", "items": { "type": "string" }, "optional": true}
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
ast_unittest.py 88 self.assertEquals(nodelist1.items, [])
94 self.assertEquals(nodelist2.items, [node1])
100 self.assertEquals(nodelist3.items, [node2])
107 self.assertEquals(nodelist1.items, [node1])
114 self.assertEquals(nodelist1.items, [node1, node2])
120 self.assertEquals(nodelist2.items, [node1, node2])
126 self.assertEquals(nodelist3.items, [node1, node2])
  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.h 71 * but the items are left unswapped.
75 * Write a .dat package file with the items in this object.
79 * Also, the items themselves are swapped in-place
88 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
93 * indexes for items whose names match the pattern.
136 * @param check will be called with context and any missing items
170 Item *items; member in class:Package
  /external/chromium_org/third_party/skia/include/views/
SkOSMenu.h 97 void getItems(const Item* items[]) const;
105 * Call this in a SkView's onHandleChar to trigger any menu items with the
115 * The following functions append new items to the menu and returns their
125 * Create predefined items with the given parameters. To be used with the
128 * menu items of the same type since it's used to identify the event
150 * Ensure that the items array can store n SkStrings where n is the count
153 static bool FindListItems(const SkEvent& evt, SkString items[]);
  /external/chromium_org/tools/usb_gadget/
hid_descriptors.py 14 def ReportDescriptor(*items):
15 return ''.join(items)
42 raise NotImplementedError('Long items are not implemented.')
122 def Collection(typ, *items):
125 return start + ''.join(items) + end
127 # Global Items
144 # Local Items
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_list_test.cc 64 ListItem items[6]; local
70 ListItem *x = &items[0];
71 ListItem *y = &items[1];
72 ListItem *z = &items[2];
73 ListItem *a = &items[3];
74 ListItem *b = &items[4];
75 ListItem *c = &items[5];
  /external/elfutils/0.153/libebl/
eblcorenote.c 65 regs_offset, nregloc, reglocs, nitems, items)
73 const Ebl_Core_Item **items;
76 regs_offset, nregloc, reglocs, nitems, items);
86 #define ITEMS(type, table) \
88 *items = table; \
100 ITEMS (NT_PLATFORM, platform);
102 #undef ITEMS
  /external/icu/icu4c/source/tools/toolutil/
package.h 71 * but the items are left unswapped.
75 * Write a .dat package file with the items in this object.
79 * Also, the items themselves are swapped in-place
88 // find the item in items[], return the non-negative index if found, else the binary-not of the insertion point
93 * indexes for items whose names match the pattern.
136 * @param check will be called with context and any missing items
170 Item *items; member in class:Package
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
DrawableResourceLoader.java 137 NodeList items = document.getElementsByTagName("item"); local
138 int[] drawableIds = new int[items.getLength()];
140 for (int i = 0; i < items.getLength(); i++) {
144 Node item = items.item(i);
163 NodeList items = d.getElementsByTagName("item"); local
164 for (int i = 0; i < items.getLength(); i++) {
165 Node node = items.item(i);
  /external/skia/include/views/
SkOSMenu.h 97 void getItems(const Item* items[]) const;
105 * Call this in a SkView's onHandleChar to trigger any menu items with the
115 * The following functions append new items to the menu and returns their
125 * Create predefined items with the given parameters. To be used with the
128 * menu items of the same type since it's used to identify the event
150 * Ensure that the items array can store n SkStrings where n is the count
153 static bool FindListItems(const SkEvent& evt, SkString items[]);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ConfigureNodeFields.java 30 * Determines who may subscribe and retrieve items
70 * Whether owners or publisher should receive replies to items
107 * The maximum number of items to persist
142 * Whether to notify subscribers when items are removed from the node
149 * Whether to persist items to storage. This is required to have multiple
150 * items in the node.
185 * The roster group(s) allowed to subscribe and retrieve items
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 39 * The icon menu view is an icon-based menu usually with a subset of all the menu items.
40 * It is opened as the default menu, and shows either the first five or all six of the menu items
41 * with text and icon. In the situation of there being more than six items, the first five items
43 * all the menu items.
60 /** Maximum number of items to show in the icon menu. */
62 /** Maximum number of items per row */
64 /** Actual number of items (the 'More' view does not count as an item) shown */
112 * The layout to use for menu items. Each index is the row number (0 is the
113 * top-most). Each value contains the number of items in that row
    [all...]
  /frameworks/base/docs/html/design/patterns/
selection.jd 51 <li>Select additional data items by touching them.</li>
52 <li>Trigger an action from the CAB that applies to all highlighted data items. The CAB then
71 pattern</a> to decide which items to surface at the top level and which to move to the
74 <p>In most cases you need to adjust the actions in the CAB dynamically as the user adds more items to
76 selected data items of the same kind.</p>
83 Adjusting actions in the CAB as additional items are selected.
100 <p>Whenever your app supports the selection of multiple data items, make use of the contextual action
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
MenuDescriptors.java 65 // A top menu can contain items or group:
66 // - top groups can contain top items
67 // - top items can contain sub-menus
68 // A sub menu can contains sub items or sub groups:
69 // - sub groups can contain sub items
70 // - sub items cannot contain anything
108 // -- top menu can have all top groups and top items (which can have sub menus)
  /external/chromium_org/chrome/browser/extensions/
extension_context_menu_model_unittest.cc 83 // Returns the number of extension menu items that show up in |model|.
124 // Tests that applicable menu items are disabled when a ManagementPolicy
164 // Create a MenuManager for adding context items.
174 // There should be no extension items yet.
193 // Create more page action items to test top level menu item limitations.
198 // The menu should only have a limited number of extension items, since they
199 // are all top level items, and we limit the number of top level extension
200 // items.
212 // Test that the "show" and "hide" menu items appear correctly in the extension
  /external/chromium_org/chrome/utility/importer/
safari_importer_unittest.mm 59 // Should be 2 history items.
258 uint16 items = importer::NONE;
260 GetTestSafariLibraryPath("default"), &items));
261 EXPECT_EQ(items, importer::HISTORY | importer::FAVORITES);
262 EXPECT_EQ(items & importer::COOKIES, importer::NONE);
263 EXPECT_EQ(items & importer::PASSWORDS, importer::NONE);
264 EXPECT_EQ(items & importer::SEARCH_ENGINES, importer::NONE);
265 EXPECT_EQ(items & importer::HOME_PAGE, importer::NONE);
270 EXPECT_FALSE(SafariImporterCanImport(fake_library_dir.path(), &items));
  /external/chromium_org/third_party/polymer/components/core-layout/
core-layout.css 197 -moz-align-items: flex-start;
198 -webkit-align-items: flex-start;
199 align-items: flex-start;
205 -moz-align-items: center;
206 -webkit-align-items: center;
207 align-items: center;
213 -moz-align-items: flex-end;
214 -webkit-align-items: flex-end;
215 align-items: flex-end;

Completed in 3100 milliseconds

<<11121314151617181920>>