HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 501 - 525 of 4561) sorted by null

<<21222324252627282930>>

  /external/chromium_org/ash/test/
display_manager_test_api.cc 33 int64 id = index < display_manager->GetNumDisplays() ? local
34 display_manager->GetDisplayAt(index).id() :
37 DisplayInfo::CreateFromSpecWithID(*iter, id));
87 gfx::Display::SetInternalDisplayId(internal.id());
  /external/chromium_org/chrome/browser/android/bookmarks/
managed_bookmarks_shim.cc 56 const BookmarkNode* ManagedBookmarksShim::GetNodeByID(int64 id) const {
57 if (root_->id() == id)
61 if (child->id() == id)
85 int64 id = 1; local
103 BookmarkNode* node = new BookmarkNode(id++, GURL(url));
  /external/chromium_org/chrome/browser/automation/
automation_event_queue.cc 15 AutomationEventQueue::CompareObserverId::CompareObserverId(int id) : id_(id) {}
78 VLOG(2) << "AutomationEventQueue::NotifyEvent id=" << event->GetId();
84 int id = observer_id_count_++; local
85 observer->Init(id);
86 observers_[id] = observer;
87 return id;
92 VLOG(2) << "AutomationEventQueue::RemoveObserver id=" << observer_id;
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data.h 71 int64 id() const { return id_; } function in struct:BookmarkNodeData::Element
80 // ID of the node.
  /external/chromium_org/chrome/browser/extensions/
extension_message_bubble_controller.cc 141 std::string id = (*it)->id(); local
142 if (!delegate_->ShouldIncludeExtension(id))
144 extension_list_.push_back(id);
extension_sync_data.h 51 const std::string& id() const { return id_; } function in class:extensions::ExtensionSyncData
  /external/chromium_org/chrome/browser/history/android/
urls_sql_handler_unittest.cc 66 // The new row's id was set in url_row correctly.
67 EXPECT_EQ(row.url_id(), url_row.id());
81 EXPECT_EQ(row.url_id(), url_row.id());
100 EXPECT_EQ(row.url_id(), url_row.id());
119 EXPECT_EQ(row.url_id(), url_row.id());
139 EXPECT_EQ(row.url_id(), url_row.id());
158 EXPECT_EQ(row.url_id(), url_row.id());
186 TableIDRow id; local
187 id.url_id = url_row.id();
219 TableIDRow id; local
255 TableIDRow id; local
285 TableIDRow id; local
310 TableIDRow id; local
335 TableIDRow id; local
    [all...]
visit_sql_handler_unittest.cc 174 TableIDRow id; local
175 id.url_id = url_row.id();
177 ids.push_back(id);
204 TableIDRow id; local
205 id.url_id = url_row.id();
207 ids.push_back(id);
237 TableIDRow id; local
238 id.url_id = url_row.id()
270 TableIDRow id; local
295 TableIDRow id; local
    [all...]
  /external/chromium_org/chrome/browser/history/
download_row.h 38 uint32 id,
89 // The id of the download in the database. Is not changed by UpdateDownload().
90 uint32 id; member in struct:history::DownloadRow
95 // The id and name of the extension that created this download.
in_memory_history_backend.cc 119 // have Sync(), which would take the ID if it's given and add it.
124 URLID id = db_->GetRowForURL(i->url(), NULL); local
125 if (id)
126 db_->UpdateURLRow(id, *i);
150 db_->DeleteURLRow(row->id());
171 url_id = url_row.id();
185 URLID id = db_->GetRowForURL(url, NULL); local
186 if (!id)
189 return db_->GetKeywordSearchTermRow(id, NULL);
  /external/chromium_org/chrome/browser/media/
native_desktop_media_list.h 40 content::DesktopMediaID::Id dialog_id) OVERRIDE;
48 SourceDescription(content::DesktopMediaID id, const base::string16& name);
50 content::DesktopMediaID id; member in struct:NativeDesktopMediaList::SourceDescription
79 // ID of the hosting dialog.
80 content::DesktopMediaID::Id view_dialog_id_;
  /external/chromium_org/chrome/browser/ui/app_list/search/
chrome_search_result.h 51 const std::string& id() const { return id_; } function in class:app_list::ChromeSearchResult
55 void set_id(const std::string& id) { id_ = id; }
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 30 // Creates a new column set with the specified id and returns it.
31 // The id is later used when starting a new row.
34 ColumnSet* AddColumnSet(int id);
36 // Returns the column set for the specified id, or NULL if one doesn't exist.
37 ColumnSet* GetColumnSet(int id);
107 explicit ColumnSet(int id);
116 // ID of this ColumnSet.
117 int id() const { return id_; } function in class:ColumnSet
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.h 28 // extension id
34 // action id
35 const std::string& id() const { return id_; } function in class:FileBrowserHandler
36 void set_id(const std::string& id) { id_ = id; }
75 // The id for the extension this action belongs to (as defined in the
80 // The id for the FileBrowserHandler, for example: "PdfFileAction".
  /external/chromium_org/chrome/common/extensions/api/media_galleries_private/
media_galleries_handler.h 31 const std::string& id() const { return id_; } function in class:MediaGalleriesHandler
32 void set_id(const std::string& id) { id_ = id; }
48 // The id for the extension this action belongs to (as defined in the
53 // The id for the MediaGalleriesHandler, for example: "ImportToDrive".
  /external/chromium_org/chrome/common/extensions/
extension_messages.h 74 // Extension ID this request was sent from. This can be empty, in the case
81 // in which case extension_id will indicate the ID of the associated
85 // Unique request id to match requests and responses.
97 // The extension API request id, for responding.
100 // The ID of the requesting extension. To know which isolated world to
135 // The ID of the extension that is the target of the request.
138 // The ID of the extension that initiated the request. May be empty if it
241 // to generate the extension ID for extensions that are loaded unpacked.
251 std::string id; member in struct:ExtensionMsg_Loaded_Params
276 struct ParamTraits<extensions::APIPermission::ID> {
    [all...]
  /external/chromium_org/chrome/common/extensions/permissions/
chrome_api_permissions.cc 34 APIPermission::ID id; member in struct:extensions::PermissionRegistration
38 PermissionMessage::ID message_id;
284 // permissions parameters, no message ID or message text is specified here.
285 // The message ID and text used will be determined at run-time in the
323 // on the permissions parameters, no message ID or message text is
325 // The message ID and text used will be determined at run-time in the
334 // the permissions parameters, no message ID or message text is specified
335 // here. The message ID and text used will be determined at run-time in the
384 pr.id, pr.name, pr.l10n_message_id
    [all...]
  /external/chromium_org/chrome/common/
instant_restricted_id_cache.h 18 // referenced by the Instant page using an ID (restricted ID). These IDs need to
20 // object info based on the ID when required by the Instant page. The reason to
33 // items are inserted with the same ID, the cache will return the last
106 InstantRestrictedID id = ++last_restricted_id_; local
107 cache_.Put(id, items[i]);
spellcheck_common.cc 46 {"id", "id-ID"},
161 char id[ULOC_LANG_CAPACITY + ULOC_SCRIPT_CAPACITY + ULOC_COUNTRY_CAPACITY]; local
162 uloc_addLikelySubtags(locale.c_str(), id, arraysize(id), &error);
164 uloc_getLanguage(id, language, arraysize(language), &error);
165 country = uloc_getISO3Country(id);
  /external/chromium_org/chrome/renderer/
chrome_render_view_observer.h 54 int id; member in struct:ChromeRenderViewObserver::WebUIJavaScript
74 int id,
98 // ID. Kicks off analysis of the captured text.
127 // page id to decide whether to reindex in certain cases like history
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_desktop_impl.cc 97 std::string id; local
106 id = views_info.Get(i).id;
110 if (!id.empty())
114 if (id.empty())
118 id, GetBuildNo(), devtools_http_client_->CreateClient(id)));
  /external/chromium_org/chrome_frame/test/
proxy_factory_mock.cc 56 void* id = NULL; local
57 proxy_factory_.GetAutomationServer(&launch_delegate_mock_, params, &id);
58 proxy_factory_.ReleaseAutomationServer(id, &launch_delegate_mock_);
105 // http://code.google.com/p/chromium/issues/detail?id=81039
  /external/chromium_org/chromeos/ime/
input_method_descriptor.h 22 InputMethodDescriptor(const std::string& id,
32 const std::string& id() const { return id_; } function in class:chromeos::input_method::InputMethodDescriptor
49 // An ID that identifies an input method engine (e.g., "t:latn-post",
  /external/chromium_org/components/url_matcher/
regex_set_matcher.cc 27 regexes_[regex_list[i]->id()] = regex_list[i];
39 std::set<StringPattern::ID>* matches) const {
57 StringPattern::ID id = re2_id_map_[re2_ids[i]]; local
58 matches->insert(id);
90 LOG(ERROR) << "Could not parse regex (id=" << it->first << ", "
  /external/chromium_org/content/browser/fileapi/
file_system_operation_runner_unittest.cc 107 FileSystemOperationRunner::OperationID id = local
110 operation_runner()->Cancel(id, base::Bind(&GetCancelStatus,
132 FileSystemOperationRunner::OperationID id = local
135 operation_runner()->Cancel(id, base::Bind(&GetCancelStatus,

Completed in 567 milliseconds

<<21222324252627282930>>