Searched defs:item (Results 276 - 300 of 815) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/content/shell/browser/
H A Dshell_download_manager_delegate.cc99 DownloadItem* item,
102 WebKitTestController::Get()->IsMainWindow(item->GetWebContents()) &&
103 item->GetMimeType() == "text/html") {
105 net::FilePathToFileURL(item->GetFullPath()));
161 DownloadItem* item = download_manager_->GetDownload(download_id); local
162 if (!item || (item->GetState() != DownloadItem::IN_PROGRESS))
173 save_as.hwndOwner = item->GetWebContents()->GetNativeView()->
98 ShouldOpenDownload( DownloadItem* item, const DownloadOpenDelayedCallback& callback) argument
/external/chromium_org/content/test/
H A Dmock_webclipboard_impl.cc175 const WebDragData::Item& item = itemList[i]; local
176 switch (item.storageType) {
179 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) {
180 m_plainText = item.stringData;
183 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeHTML)) {
184 m_htmlText = item.stringData;
187 m_customData.insert(std::make_pair(item.stringType, item.stringData));
/external/chromium_org/extensions/common/manifest_handlers/
H A Dwebview_info.cc83 const PartitionItem* const item = info->partition_items_[i]; local
84 if (item->Matches(partition_id) &&
85 extension->ResourceMatches(item->accessible_resources(),
94 void WebviewInfo::AddPartitionItem(scoped_ptr<PartitionItem> item) { argument
95 partition_items_.push_back(item.release());
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DDesktop.java181 public boolean onOptionsItemSelected(MenuItem item) { argument
182 int id = item.getItemId();
184 mActivityLifecycleListener.onActivityOptionsItemSelected(this, item);
216 return super.onOptionsItemSelected(item);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp66 v8::Local<v8::Object> item = v8::Local<v8::Object>::Cast(itemArray->Get(i)); local
67 v8::Local<v8::Value> type = item->Get(v8AtomicString(isolate, "type"));
68 v8::Local<v8::Value> id = item->Get(v8AtomicString(isolate, "id"));
69 v8::Local<v8::Value> label = item->Get(v8AtomicString(isolate, "label"));
70 v8::Local<v8::Value> enabled = item->Get(v8AtomicString(isolate, "enabled"));
71 v8::Local<v8::Value> checked = item->Get(v8AtomicString(isolate, "checked"));
72 v8::Local<v8::Value> subItems = item->Get(v8AtomicString(isolate, "subItems"));
77 ContextMenuItem item(ContextMenuItem(SeparatorType,
80 menu.appendItem(item);
87 ContextMenuItem item(SubmenuTyp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectItem.cpp44 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, type)); local
45 item->m_data = data;
46 return item.release();
51 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, file->type())); local
52 item->m_file = file;
53 return item.release();
58 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextURIList)); local
59 item->m_data = url;
60 item->m_title = title;
61 return item
66 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextHTML)); local
74 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, String())); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSKeyframesRule.cpp158 return (i >= 0) ? item(i) : 0;
186 CSSKeyframeRule* CSSKeyframesRule::item(unsigned index) const function in class:blink::CSSKeyframesRule
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDatasetDOMStringMap.cpp165 String DatasetDOMStringMap::item(const String& name) function in class:blink::DatasetDOMStringMap
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLFormattingElementList.h53 explicit Entry(PassRefPtrWillBeRawPtr<HTMLStackItem> item) argument
54 : m_item(item)
74 void replaceElement(PassRefPtrWillBeRawPtr<HTMLStackItem> item) { m_item = item; } argument
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.cpp56 item(i)->setTrackList(0);
119 TextTrack* TextTrackList::item(unsigned index) function in class:TextTrackList
149 TextTrack* track = item(i);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorResourceContentLoader.cpp99 HistoryItem* item = document->frame() ? document->frame()->loader().currentItem() : 0; local
100 if (item) {
101 resourceRequest = FrameLoader::requestFromHistoryItem(item, ReturnCacheDataDontLoad);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DProgressTracker.cpp152 if (ProgressItem* item = m_progressItems.get(identifier)) {
153 item->bytesReceived = 0;
154 item->estimatedLength = estimatedLength;
161 ProgressItem* item = m_progressItems.get(identifier); local
164 if (!item)
171 item->bytesReceived += bytesReceived;
172 if (item->bytesReceived > item->estimatedLength) {
173 m_totalPageAndResourceBytesToLoad += ((item->bytesReceived * 2) - item
214 ProgressItem* item = m_progressItems.get(identifier); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStringList.cpp39 void SVGStringList::initialize(const String& item) argument
42 m_values.append(item);
55 // Spec: If the index is greater than or equal to numberOfItems, then the new item is appended to the end of the list.
59 // Spec: Inserts a new item into the list at the specified position. The index of the item before which the new item is to be
60 // inserted. The first item is number 0. If the index is equal to 0, then the new item is inserted at the front of the list.
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyTearOffHelper.h102 RefPtr<ItemTearOffType> item = passItem; local
109 if (!item) {
110 exceptionState.throwTypeError("Lists must be initialized with a valid item.");
114 RefPtr<ItemPropertyType> value = toDerived()->target()->initialize(getValueForInsertionFromTearOff(item));
128 RefPtr<ItemTearOffType> item = passItem; local
135 if (!item) {
136 exceptionState.throwTypeError("An invalid item cannot be inserted to a list.");
140 RefPtr<ItemPropertyType> value = toDerived()->target()->insertItemBefore(getValueForInsertionFromTearOff(item), index);
148 RefPtr<ItemTearOffType> item = passItem; local
155 if (!item) {
182 RefPtr<ItemTearOffType> item = passItem; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/blob/
H A DBlobData.cpp145 const BlobDataItem& item = *it; local
146 if (item.length != BlobDataItem::toEndOfFile) {
147 ASSERT(item.length >= 0);
148 length += item.length;
152 switch (item.type) {
154 length += item.data->length();
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.cpp66 Item& item = m_buffer[i]; local
84 item.call(visitor);
92 Item* item = &m_buffer[i]; local
93 if (item->object() == object)
166 if (Item* item = m_first->allocateEntry())
167 return item;
174 Item* item = m_first->pop(); local
175 while (!item) {
185 item = m_first->pop();
187 return item;
[all...]
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtga_utils.cpp38 void readBinary(std::ifstream &stream, dataType &item) argument
40 stream.read(reinterpret_cast<char *>(&item), sizeof(dataType));
/external/chromium_org/third_party/bintrees/bintrees/
H A Dwalker.py33 def item(self): member in class:Walker
168 for item in self._iteritems(
172 yield item
175 for item in self._iteritems(
179 yield item
/external/chromium_org/third_party/boringssl/src/crypto/lhash/
H A Dlhash.c122 * item equal to |data|. In other words, it searches for an item equal to |data|
125 * element of the previous item in the chain. If an element equal to |data| is
225 LHASH_ITEM **next_ptr, *item; local
240 item = OPENSSL_malloc(sizeof(LHASH_ITEM));
241 if (item == NULL) {
245 item->data = data;
246 item->hash = hash;
247 item->next = NULL;
248 *next_ptr = item;
256 LHASH_ITEM **next_ptr, *item, *ret; local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duarrsort.c64 uprv_stableBinarySearch(char *array, int32_t limit, void *item, int32_t itemSize, argument
72 int32_t diff=cmp(context, item, array+i*itemSize);
75 * Found the item. We look for the *last* occurrence of such
76 * an item, for stable sorting.
96 int32_t diff=cmp(context, item, array+start*itemSize);
113 char *item=array+j*itemSize; local
114 int32_t insertionPoint=uprv_stableBinarySearch(array, j, item, itemSize, cmp, context);
118 ++insertionPoint; /* one past the last equal item */
122 uprv_memcpy(pv, item, itemSize); /* v=array[j] */
135 /* allocate an intermediate item variabl
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubclient.cc114 const XmlElement* item = GetItemFromStanza(task->stanza()); local
115 SignalPublishResult(this, task->task_id(), item);
122 const XmlElement* item = GetItemFromStanza(publish_task->stanza()); local
123 SignalPublishError(this, publish_task->task_id(), item, error_stanza);
H A Dpubsubclient_unittest.cc27 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin();
28 item != items.end(); ++item) {
30 handled_item.itemid = item->itemid;
31 if (item->elem->FirstElement() != NULL) {
32 handled_item.payload = item->elem->FirstElement()->Str();
45 const buzz::XmlElement* item) {
51 const buzz::XmlElement* item,
127 " <item id='key0'>"
129 " </item>"
43 OnPublishResult(buzz::PubSubClient* client, const std::string& task_id, const buzz::XmlElement* item) argument
49 OnPublishError(buzz::PubSubClient* client, const std::string& task_id, const buzz::XmlElement* item, const buzz::XmlElement* stanza) argument
[all...]
H A Dpubsubtasks.cc73 // Creates <pubsub node="node"><publish><item id="itemid">payload</item>...
93 // Creates <pubsub node="node"><publish><item id="itemid">payload</item>...
110 PubSubItem item; local
111 item.itemid = item_elem->Attr(QN_ID);
112 item.elem = item_elem;
113 items->push_back(item);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_keymap.c151 struct keymap_item *item; local
155 item = (struct keymap_item *) cso_hash_iter_data(iter);
156 if (!memcmp(item->key, key, map->key_size))
192 struct keymap_item *item; local
201 item = hash_table_find_item(map, key, key_hash);
202 if (item) {
203 /* call delete callback for old entry/item */
204 map->delete_func(map, item->key, item->value, user);
205 item
235 struct keymap_item *item; local
261 struct keymap_item *item; local
295 struct keymap_item *item; local
[all...]
/external/chromium_org/third_party/skia/bench/
H A DGrResourceCacheBench.cpp117 GrGpuResource* item = cache->find(key); local
118 if (NULL == item) {
122 if (static_cast<TextureResource*>(item)->fID != k) {
131 GrGpuResource* item = cache->find(key); local
132 if (NULL == item) {
136 if (static_cast<TextureResource*>(item)->fID != k) {
148 GrGpuResource* item = cache->find(key); local
149 if (item) {
159 GrGpuResource* item = cache->find(key); local
160 if (item) {
[all...]

Completed in 595 milliseconds

<<11121314151617181920>>