/external/webkit/Source/WebCore/inspector/ |
InspectorFrontendHost.cpp | 61 static PassRefPtr<FrontendMenuProvider> create(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items) 63 return adoptRef(new FrontendMenuProvider(frontendHost, webInspector, items)); 73 FrontendMenuProvider(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items) 76 , m_items(items) 244 void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem*>& items) 253 RefPtr<FrontendMenuProvider> menuProvider = FrontendMenuProvider::create(this, webInspectorObj, items);
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebHistory.idl | 30 items added. The key for the array is WebHistoryItemsKey. 33 items removed. The key for the array is WebHistoryItemsKey. 108 HRESULT addItems([in] int itemCount, [in] IWebHistoryItem** items); 112 @param items An array of WebHistoryItems to remove from the WebHistory. 113 - (void)removeItems:(NSArray *)items; 115 HRESULT removeItems([in] int itemCount, [in] IWebHistoryItem** items); 126 or more history items, ordered from most recent to oldest. 127 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory. 144 HRESULT orderedItemsLastVisitedOnDay([in, out] int* count, [in] IWebHistoryItem** items, [in] DATE calendarDate); 157 @discussion Limits the number of items that will be stored by the WebHistory [all...] |
/frameworks/base/core/java/android/animation/ |
AnimatorSet.java | 127 * @param items The animations that will be started simultaneously. 129 public void playTogether(Animator... items) { 130 if (items != null) { 132 Builder builder = play(items[0]); 133 for (int i = 1; i < items.length; ++i) { 134 builder.with(items[i]); 142 * @param items The animations that will be started simultaneously. 144 public void playTogether(Collection<Animator> items) { 145 if (items != null && items.size() > 0) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebBlobData.cpp | 57 return m_private->items().size(); 64 if (index >= m_private->items().size()) 67 const BlobDataItem& item = m_private->items()[index];
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_history.cpp | 277 WebCore::HistoryItemVector items; local 279 core->forwardListWithLimit(limit, items); 280 return _ewk_history_item_list_get(items); 287 * @param limit the maximum number of items to return. 301 WebCore::HistoryItemVector items; local 302 core->forwardListWithLimit(limit, items); 303 return _ewk_history_item_list_get(items); 337 WebCore::HistoryItemVector items; local 339 core->backListWithLimit(limit, items); 340 return _ewk_history_item_list_get(items); 361 WebCore::HistoryItemVector items; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboAlbum.java | 23 // ComboAlbum combines multiple media sets into one. It lists all media items 42 ArrayList<MediaItem> items = new ArrayList<MediaItem>(); local 49 items.addAll(fetchItems); 56 return items;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/dalvik/dx/src/com/android/dx/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/external/chromium/chrome/browser/importer/ |
external_process_importer_host.h | 35 uint16 items, 47 // Bitmask of items to be imported (see importer::ImportItem enum).
|
importer.h | 28 uint16 items,
|
profile_import_process_host.h | 41 // |source_profile|, |items|, and |import_to_bookmark_bar| are all needed by 44 uint16 items,
|
/external/chromium/webkit/glue/ |
webmenurunner_mac.h | 41 // Initializes the MenuDelegate with a list of items sent from WebKit. 42 - (id)initWithItems:(const std::vector<WebMenuItem>&)items
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/external/markdown/ |
regression-tests.py | 150 """ Test output of OrderedDict.items(). """ 151 self.assertEqual(self.odict.items(), 158 self.assertEqual(self.odict.items(), 165 self.assertEqual(self.odict.items(), 172 self.assertEqual(self.odict.items(), 179 self.assertEqual(self.odict.items(), 186 self.assertEqual(self.odict.items(), 198 self.assertEqual(self.odict.items(), 204 self.assertEqual(self.odict.items(), 211 self.assertEqual(self.odict.items(), [all...] |
/external/srec/srec/crec/ |
astar_pphash.c | 39 hash->items[i] = FSH_NULL; 100 p_return = hash->items[hkey_index]; 122 p_insert = &hash->items[hkey_index]; 157 p_insert = &hash->items[hkey_index];
|
astar_pphash.h | 42 partial_path* items[FSH_HASHSIZE]; member in struct:__anon12610
|
/external/webkit/Source/WebCore/bindings/js/ |
JSInspectorFrontendHostCustom.cpp | 91 Vector<ContextMenuItem*> items; local 105 items.append(new ContextMenuItem(SeparatorType, 115 items.append(menuItem); 119 impl()->showContextMenu(event, items);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InspectorFrontendHostCustom.cpp | 79 Vector<ContextMenuItem*> items; local 92 items.append(new ContextMenuItem(SeparatorType, 102 items.append(menuItem); 107 frontendHost->showContextMenu(event, items);
|
/external/webkit/Source/WebCore/dom/ |
OptionElement.cpp | 56 const Vector<Element*>& items = selectElement->listItems(); local 57 int length = items.size(); 60 if (!isOptionElement(items[i])) 62 if (items[i] == element)
|
/external/webkit/Source/WebKit2/UIProcess/cf/ |
WebPageProxyCF.cpp | 194 RetainPtr<CFMutableArrayRef> items; local 197 items.adoptCF(CFArrayCreateMutable(0, size, &kCFTypeArrayCallBacks)); 200 CFArrayAppendValue(items.get(), item.get()); 204 CFPreferencesSetAppValue(autosaveKey(name).get(), items.get(), kCFPreferencesCurrentApplication); 214 RetainPtr<CFArrayRef> items(AdoptCF, reinterpret_cast<CFArrayRef>(CFPreferencesCopyAppValue(autosaveKey(name).get(), kCFPreferencesCurrentApplication))); 216 if (!items || CFGetTypeID(items.get()) != CFArrayGetTypeID()) 219 size_t size = CFArrayGetCount(items.get()); 221 CFStringRef item = (CFStringRef)CFArrayGetValueAtIndex(items.get(), i);
|
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLocaleTest.java | 69 ArrayList<String> items = new ArrayList<String>(); local 71 items.add(c.getString(0)); 74 String[] result = items.toArray(new String[items.size()]);
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebbackforwardlist.cpp | 73 WebCore::HistoryItemVector items = backForwardList->entries(); local 75 for (unsigned i = 0; i < items.size(); i++) 76 g_hash_table_remove(table, items[i].get()); 199 * @limit: the number of items to retrieve 201 * Returns a list of items that succeed the current item, limited by @limit 203 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items succeeding the current item, limited by @limit 213 WebCore::HistoryItemVector items; 216 backForwardList->forwardListWithLimit(limit, items); 218 for (unsigned i = 0; i < items.size(); i++) { 219 WebKitWebHistoryItem* webHistoryItem = kit(items[i]) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_menu_manager_unittest.cc | 70 // Tests adding, getting, and removing items. 79 const ExtensionMenuItem::List* items = local 81 ASSERT_EQ(1u, items->size()); 82 ASSERT_EQ(item1, items->at(0)); 88 items = manager_.MenuItems(item2->extension_id()); 89 ASSERT_EQ(2u, items->size()); 90 ASSERT_EQ(item1, items->at(0)); 91 ASSERT_EQ(item2, items->at(1)); 109 // Test adding/removing child items. 124 // Add in the first two items 240 const ExtensionMenuItem::List* items = local [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
SetExtensions.cs | 51 public static void addAll<T>( this HashSet<T> set, IEnumerable<T> items ) 53 foreach ( T item in items )
|
/external/chromium/chrome/browser/ui/gtk/importer/ |
import_progress_dialog_gtk.cc | 37 uint16 items, 45 items, 57 source_profile, profile, items, new ProfileWriter(profile), first_run); 62 uint16 items, 68 items_(items), 221 uint16 items, 227 DCHECK_NE(0, items); 229 parent, items, importer_host, importer_observer, source_profile, profile,
|