Searched defs:item (Results 251 - 275 of 799) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/components/dom_distiller/core/
H A Ddistiller.cc89 std::string item; local
90 (*iter)->GetAsString(&item);
96 proto_->set_title(item);
99 proto_->set_html(item);
104 FetchImage(image_id, item);
113 const std::string& item) {
117 fetcher->FetchURL(item,
112 FetchImage(const std::string& image_id, const std::string& item) argument
/external/chromium_org/components/json_schema/
H A Djson_schema_validator_unittest_base.cc110 base::DictionaryValue* item = NULL; local
111 ASSERT_TRUE(instance->GetDictionary(0, &item));
112 item->SetString("url", "xxxxxxxxxxx");
/external/chromium_org/content/browser/devtools/
H A Ddevtools_tracing_handler.cc80 std::string item; local
83 base::JSONWriter::Write(item_value, &item);
86 buffer.append(item);
/external/chromium_org/content/browser/download/
H A Ddrag_download_file.cc92 void OnDownloadStarted(DownloadItem* item, net::Error error) { argument
94 if (!item) {
100 download_item_ = item;
105 virtual void OnDownloadUpdated(DownloadItem* item) OVERRIDE {
107 DCHECK_EQ(download_item_, item);
123 virtual void OnDownloadDestroyed(DownloadItem* item) OVERRIDE {
125 DCHECK_EQ(download_item_, item);
/external/chromium_org/content/browser/
H A Drenderer_data_memoizing_store.h39 // Store adds |item| to this collection, associates it with the given render
40 // process id and returns an opaque identifier for it. If |item| is already
42 int Store(T* item, int process_id) { argument
43 DCHECK(item);
48 // Do we already know this item?
49 typename ReverseItemMap::iterator item_iter = item_to_id_.find(item);
56 id_to_item_[item_id] = item;
57 item_to_id_[item] = item_id;
96 // Retrieve fetches a previously Stored() item, identified by |item_id|.
97 // If |item_id| is recognized, |item| wil
99 Retrieve(int item_id, scoped_refptr<T>* item) argument
[all...]
/external/chromium_org/content/child/
H A Dwebblobregistry_impl.cc59 webkit_blob::BlobData::Item item; local
60 item.SetToFilePathRange(
66 new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
71 webkit_blob::BlobData::Item item; local
72 item.SetToBlobRange(
77 new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
84 webkit_blob::BlobData::Item item; local
85 item.SetToFileSystemUrlRange(
91 new BlobHostMsg_AppendBlobDataItem(uuid_str, item));
125 webkit_blob::BlobData::Item item; local
171 webkit_blob::BlobData::Item item; local
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DSelectActionModeCallback.java133 public boolean onActionItemClicked(ActionMode mode, MenuItem item) { argument
134 int id = item.getItemId();
/external/chromium_org/content/renderer/
H A Dstats_collection_controller.cc55 base::DictionaryValue item; local
58 item.Set("load_start_ms", base::Value::CreateNullValue());
60 item.SetDouble("load_start_ms", load_start_time.ToInternalValue() / 1000);
63 item.Set("load_duration_ms", base::Value::CreateNullValue());
65 item.SetDouble("load_duration_ms",
68 base::JSONWriter::Write(&item, result);
/external/chromium_org/content/shell/browser/
H A Dshell_download_manager_delegate.cc91 DownloadItem* item,
94 WebKitTestController::Get()->IsMainWindow(item->GetWebContents()) &&
95 item->GetMimeType() == "text/html") {
97 net::FilePathToFileURL(item->GetFullPath()));
147 DownloadItem* item = download_manager_->GetDownload(download_id); local
148 if (!item || (item->GetState() != DownloadItem::IN_PROGRESS))
159 save_as.hwndOwner = item->GetWebContents()->GetView()->GetNativeView();
178 parent_window = item->GetWebContents()->GetView()->GetTopLevelNativeWindow();
90 ShouldOpenDownload( DownloadItem* item, const DownloadOpenDelayedCallback& callback) argument
/external/chromium_org/content/test/
H A Dmock_webclipboard_impl.cc180 const WebDragData::Item& item = itemList[i]; local
181 switch (item.storageType) {
183 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) {
184 m_plainText = item.stringData;
187 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeHTML)) {
188 m_htmlText = item.stringData;
191 m_customData.insert(std::make_pair(item.stringType, item.stringData));
/external/chromium_org/crypto/
H A Drsa_private_key_nss.cc28 SECItem item; local
30 rv = PK11_ReadRawAttribute(PK11_TypePrivKey, key, type, &item);
36 output->assign(item.data, item.data + item.len);
37 SECITEM_FreeItem(&item, PR_FALSE);
155 for (SECMODModuleList* item = head; item != NULL; item = item
[all...]
/external/chromium_org/extensions/common/
H A Durl_pattern_set.cc224 std::string item; local
225 if (!value.GetString(i, &item))
227 patterns.push_back(item);
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DChromoting.java168 public boolean onOptionsItemSelected(MenuItem item) { argument
169 if (item == mAccountSwitcher) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp63 v8::Local<v8::Object> item = v8::Local<v8::Object>::Cast(itemArray->Get(i)); local
64 v8::Local<v8::Value> type = item->Get(v8AtomicString(isolate, "type"));
65 v8::Local<v8::Value> id = item->Get(v8AtomicString(isolate, "id"));
66 v8::Local<v8::Value> label = item->Get(v8AtomicString(isolate, "label"));
67 v8::Local<v8::Value> enabled = item->Get(v8AtomicString(isolate, "enabled"));
68 v8::Local<v8::Value> checked = item->Get(v8AtomicString(isolate, "checked"));
69 v8::Local<v8::Value> subItems = item->Get(v8AtomicString(isolate, "subItems"));
74 ContextMenuItem item(ContextMenuItem(SeparatorType,
77 menu.appendItem(item);
84 ContextMenuItem item(SubmenuTyp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSKeyframesRule.cpp150 return (i >= 0) ? item(i) : 0;
178 CSSKeyframeRule* CSSKeyframesRule::item(unsigned index) const function in class:WebCore::CSSKeyframesRule
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.cpp140 const CSSShadowValue* item = toCSSShadowValue(valueList->item(i)); local
141 int x = item->x->computeLength<int>(state.cssToLengthConversionData());
142 int y = item->y->computeLength<int>(state.cssToLengthConversionData());
143 int blur = item->blur ? item->blur->computeLength<int>(state.cssToLengthConversionData()) : 0;
144 int spread = item->spread ? item->spread->computeLength<int>(state.cssToLengthConversionData()) : 0;
145 ShadowStyle shadowStyle = item->style && item
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDatasetDOMStringMap.cpp151 String DatasetDOMStringMap::item(const String& name) function in class:WebCore::DatasetDOMStringMap
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLFormattingElementList.h51 explicit Entry(PassRefPtr<HTMLStackItem> item) argument
52 : m_item(item)
72 void replaceElement(PassRefPtr<HTMLStackItem> item) { m_item = item; } argument
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.cpp110 TextTrack* TextTrackList::item(unsigned index) function in class:TextTrackList
140 TextTrack* track = item(i);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DHistoryController.h101 void updateValue(PassRefPtr<HistoryItem> item) { m_value = item; } argument
H A DProgressTracker.cpp162 if (ProgressItem* item = m_progressItems.get(identifier)) {
163 item->bytesReceived = 0;
164 item->estimatedLength = estimatedLength;
171 ProgressItem* item = m_progressItems.get(identifier); local
174 if (!item)
183 item->bytesReceived += bytesReceived;
184 if (item->bytesReceived > item->estimatedLength) {
185 m_totalPageAndResourceBytesToLoad += ((item->bytesReceived * 2) - item
229 ProgressItem* item = m_progressItems.get(identifier); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
H A DChromiumDataObjectItem.cpp45 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, type)); local
46 item->m_data = data;
47 return item.release();
52 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(FileKind, file->type())); local
53 item->m_file = file;
54 return item.release();
59 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, mimeTypeTextURIList)); local
60 item->m_data = url;
61 item->m_title = title;
62 return item
67 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(StringKind, mimeTypeTextHTML)); local
75 RefPtr<ChromiumDataObjectItem> item = adoptRef(new ChromiumDataObjectItem(FileKind, String())); local
[all...]
/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/libjingle/source/talk/examples/plus/
H A Dpresencepushtask.cc188 const XmlElement* item = data_x->FirstNamed(QN_MUC_USER_ITEM); local
189 if (item != NULL) {
190 s.set_muc_role(item->Attr(QN_ROLE));
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
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...]

Completed in 1143 milliseconds

<<11121314151617181920>>