Searched refs:items (Results 51 - 75 of 1140) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/examples/api/power/
H A Dbackground.js24 chrome.storage.local.get(STATE_KEY, function(items) {
25 var savedState = items[STATE_KEY];
64 var items = {};
65 items[STATE_KEY] = newState;
66 chrome.storage.local.set(items);
/external/chromium_org/v8/test/mjsunit/
H A Dinstanceof.js63 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/fonttools/Lib/fontTools/misc/
H A DtextTools.py38 items = []
47 items.append(binary)
50 items.append(binary)
51 items.reverse()
53 return ' '.join(items)
/external/fonttools/Tools/fontTools/misc/
H A DtextTools.py38 items = []
47 items.append(binary)
50 items.append(binary)
51 items.reverse()
53 return ' '.join(items)
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py69 for value,short in short_value.items():
121 print "}; /* Table items: %d; occupancy: %d%% */" % (offset, occupancy)
146 for value,short in short_value.items():
161 items = fields[5].split (' ')
162 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:])
168 if len (items) != 1:
170 if len (items) != 2 or items[
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java28 * ResourceLoader that pulls all items from memory. This is particularly useful for small templates
37 private ConcurrentMap<String, String> items = new ConcurrentHashMap<String, String>(); field in class:InMemoryResourceLoader
41 String content = items.get(name);
56 items.put(name, contents);
60 items.remove(name);
64 return items;
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DItemPublishEvent.java27 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/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSelectElement.cpp242 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
243 for (unsigned i = 0; i < items.size(); i++) {
244 if (isHTMLOptionElement(items[i]) && toHTMLOptionElement(items[i])->selected())
245 return toHTMLOptionElement(items[i])->value();
258 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
259 for (unsigned i = 0; i < items.size(); i++) {
260 if (isHTMLOptionElement(items[i])) {
261 if (toHTMLOptionElement(items[i])->value() == value)
266 if (optionIndex >= static_cast<int>(items
284 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
301 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
496 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
566 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
581 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
622 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
637 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
660 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
684 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
750 WillBeHeapVector<RawPtrWillBeMember<HTMLElement> > items = m_listItems; local
853 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
892 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
931 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
976 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
995 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1030 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1040 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1059 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1074 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1135 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1156 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1395 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = this->listItems(); local
1622 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1643 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1678 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
1702 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubtasks_unittest.cc27 const std::vector<buzz::PubSubItem>& items) {
28 OnItems(items);
32 const std::vector<buzz::PubSubItem>& items) {
33 OnItems(items);
36 void OnItems(const std::vector<buzz::PubSubItem>& items) { argument
37 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin();
38 item != items.end(); ++item) {
44 this->items.push_back(handled_item);
60 std::vector<HandledPubSubItem> items; member in class:TestPubSubTasksListener
96 "<pub:items nod
26 OnReceiveUpdate(buzz::PubSubReceiveTask* task, const std::vector<buzz::PubSubItem>& items) argument
31 OnRequestResult(buzz::PubSubRequestTask* task, const std::vector<buzz::PubSubItem>& items) argument
[all...]
/external/chromium_org/media/
H A DPRESUBMIT_test.py30 def __init__(self, message, items=None, long_text=''):
32 self.items = items
36 def __init__(self, message, items, long_text=''):
37 MockOutputApi.PresubmitResult.__init__(self, message, items, long_text)
41 def __init__(self, message, items, long_text=''):
42 MockOutputApi.PresubmitResult.__init__(self, message, items, long_text)
46 def __init__(self, message, items, long_text=''):
47 MockOutputApi.PresubmitResult.__init__(self, message, items, long_text)
51 def __init__(self, message, items, long_tex
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_a_s_p.py30 items = sorted(self.gaspRange.items())
31 for rangeMaxPPEM, rangeGaspBehavior in items:
39 items = sorted(self.gaspRange.items())
40 for rangeMaxPPEM, rangeGaspBehavior in items:
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_a_s_p.py30 items = sorted(self.gaspRange.items())
31 for rangeMaxPPEM, rangeGaspBehavior in items:
39 items = sorted(self.gaspRange.items())
40 for rangeMaxPPEM, rangeGaspBehavior in items:
/external/chromium_org/chrome/browser/download/
H A Ddownload_status_updater.cc69 content::DownloadManager::DownloadVector items; local
70 (*it)->GetManager()->GetAllDownloads(&items);
72 items.begin(); it != items.end(); ++it) {
94 content::DownloadManager::DownloadVector items; local
95 manager->GetAllDownloads(&items);
97 it = items.begin(); it != items.end(); ++it) {
H A Dall_download_item_notifier.cc14 content::DownloadManager::DownloadVector items; local
15 manager_->GetAllDownloads(&items);
17 items.begin();
18 it != items.end(); ++it) {
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A Darrayarray.h108 void *items = (void*) self->data.ob_item; local
109 PyMem_Resize(items, char, (size_t)(n * self->ob_descr->itemsize));
110 if (items == NULL) {
114 self->data.ob_item = (char*) items;
123 void *items = (void*) self->data.ob_item; local
132 PyMem_Resize(items, char, (size_t)(newsize * self->ob_descr->itemsize));
133 if (items == NULL) {
137 self->data.ob_item = (char*) items;
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dfocus_grid.js50 for (var j = 0; j < this.rows[i].items.length; ++j) {
51 if (target == this.rows[i].items[j])
77 var colIndex = keyRow.items.indexOf(e.target);
78 var col = Math.min(colIndex, this.rows[row].items.length - 1);
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp22 constexpr Item items[] = { member in namespace:Test1
27 constexpr auto &x = items[0].ti;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMUCAdmin.java39 private List<Item> items = new ArrayList<Item>(); field in class:MUCAdmin
49 synchronized (items) {
50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator();
60 synchronized (items) {
61 items.add(item);
68 synchronized (items) {
69 for (int i = 0; i < items.size(); i++) {
70 Item item = items.get(i);
/external/chromium_org/chrome/browser/extensions/
H A Dcontext_menu_matcher.cc65 MenuItem::List items; local
68 extension_key, &extension, &can_cross_incognito, &items))
71 if (items.empty())
75 // items in the menu, and the last item is not a separator add a separator.
83 // items from one extension, so they are not placed within a submenu.
87 RecursivelyAppendExtensionItems(items,
99 if (items.size() > 1 || items[0]->type() != MenuItem::NORMAL) {
101 submenu_items = items;
103 MenuItem* item = items[
139 MenuItem::List items; local
183 GetRelevantExtensionTopLevelItems( const MenuItem::ExtensionKey& extension_key, const Extension** extension, bool* can_cross_incognito, MenuItem::List* items) argument
206 GetRelevantExtensionItems( const MenuItem::List& items, bool can_cross_incognito) argument
224 RecursivelyAppendExtensionItems( const MenuItem::List& items, bool can_cross_incognito, const base::string16& selection_text, ui::SimpleMenuModel* menu_model, int* index, bool is_action_menu_top_level) argument
[all...]
/external/chromium_org/components/renderer_context_menu/
H A Drender_view_context_menu_base.cc35 bool IsCustomItemEnabledInternal(const std::vector<content::MenuItem>& items, argument
38 for (size_t i = 0; i < items.size(); ++i) {
40 items[i].action);
42 return items[i].enabled;
43 if (items[i].type == content::MenuItem::SUBMENU) {
44 if (IsCustomItemEnabledInternal(items[i].submenu, id))
51 bool IsCustomItemCheckedInternal(const std::vector<content::MenuItem>& items, argument
54 for (size_t i = 0; i < items.size(); ++i) {
56 items[i].action);
58 return items[
70 AddCustomItemsToMenu(const std::vector<content::MenuItem>& items, size_t depth, size_t* total_items, ui::SimpleMenuModel::Delegate* delegate, ui::SimpleMenuModel* menu_model) argument
[all...]
/external/chromium_org/third_party/markdown/
H A Dpreprocessors.py178 items = []
241 items.append(block.strip())
252 items.append(block)
261 items[-1] = block[:data_index]
267 '', items[0][:left_index])
268 items[0] = items[0][left_index:]
269 end = items[-1][-len(right_tag)-2:]
270 items[-1] = items[
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
H A Dutil.js15 var items = {};
16 items[key] = value;
18 Constants.WallpaperSyncStorage.set(items, opt_callback);
20 Constants.WallpaperLocalStorage.set(items, opt_callback);
/external/chromium_org/chrome/utility/importer/
H A Dbookmarks_file_importer.h18 uint16 items,
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorFrontendHost.idl48 [Custom] void showContextMenu(MouseEvent event, any items);
49 [Custom] void showContextMenuAtPoint(float x, float y, any items);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContextMenu.h41 const Vector<ContextMenuItem>& items() const { return m_items; } function in class:blink::ContextMenu

Completed in 811 milliseconds

1234567891011>>