HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 1726 - 1750 of 14488) sorted by null

<<61626364656667686970>>

  /external/chromium/webkit/glue/
image_resource_fetcher.h 25 int id,
36 int id() const { return id_; } function in class:webkit_glue::ImageResourceFetcher
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JsResultHandler.java 13 JsResultHandler(AwContentsClientBridge bridge, int id) {
15 mId = id;
  /external/chromium_org/base/mac/
scoped_nsobject.h 128 // Specialization to make scoped_nsobject<id> work.
130 class scoped_nsobject<id> : public scoped_nsprotocol<id> {
132 explicit scoped_nsobject(id object = nil) : scoped_nsprotocol<id>(object) {}
134 scoped_nsobject(const scoped_nsobject<id>& that)
135 : scoped_nsprotocol<id>(that) {
138 scoped_nsobject& operator=(const scoped_nsobject<id>& that) {
139 scoped_nsprotocol<id>::operator=(that);
  /external/chromium_org/chrome/browser/chromeos/extensions/
external_cache.cc 125 const std::string& id,
130 if (!cached_extensions_->HasKey(id)) {
131 LOG(ERROR) << "ExternalCache extension " << id
135 LOG(ERROR) << "ExternalCache failed to download extension " << id
141 const std::string& id,
153 std::string(id),
167 bool ExternalCache::IsExtensionPending(const std::string& id) {
169 return extensions_->HasKey(id) && !cached_extensions_->HasKey(id);
172 bool ExternalCache::GetExtensionExistingVersion(const std::string& id,
243 std::string id; local
284 << " for extension id: " << id; local
    [all...]
  /external/chromium_org/chrome/browser/drive/
event_logger.h 30 Event(int id, logging::LogSeverity severity, const std::string& what);
31 int id; // Monotonically increasing ID starting from 0. member in struct:drive::EventLogger::Event
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table.h 27 // is fixed: it always consists of just two columns, "id" and "value".
40 // Interns a string in the database table and sets *id to the corresponding
46 int64* id);
52 bool IntToString(sql::Connection* connection, int64 id, std::string* value);
  /external/chromium_org/chrome/browser/extensions/
webstore_installer_unittest.cc 24 std::string id = extensions::id_util::GenerateId("some random string"); local
25 GURL url = WebstoreInstaller::GetWebstoreInstallURL(id, "");
window_controller_list.h 36 // Returns a window matching |id|.
37 WindowController* FindWindowById(int id) const;
42 int id) const;
  /external/chromium_org/chrome/browser/feedback/
tracing_manager.h 42 // collected, the id for that trace is returned.
45 // Get the trace data for |id|. On success, true is returned, and the data is
47 bool GetTraceData(int id, const TraceDataCallback& callback);
49 // Discard the data for trace |id|.
50 void DiscardTraceData(int id);
65 // ID of the trace that is being collected.
68 // Mapping of trace ID to trace data.
  /external/chromium_org/chrome/browser/geolocation/
geolocation_infobar_delegate_android.cc 17 const PermissionRequestID& id,
21 : GeolocationInfoBarDelegate(infobar_service, controller, id,
  /external/chromium_org/chrome/browser/history/android/
android_history_types.h 34 ID,
52 static std::string GetAndroidName(ColumnID id);
132 // The id of android url.
133 void set_id(AndroidURLID id) {
134 set_value_explicitly(ID);
135 id_ = id;
137 AndroidURLID id() const { function in class:history::HistoryAndBookmarkRow
141 // The id of the parent folder containing the bookmark, if any.
159 // Returns true if the given |id| has been set explicitly.
160 bool is_value_set_explicitly(ColumnID id) const
214 SearchTermID id() const { function in class:history::SearchRow
282 AndroidURLID id; member in struct:history::AndroidURLRow
295 SearchTermID id; member in struct:history::SearchTermRow
    [all...]
sql_handler.cc 34 bool SQLHandler::HasColumn(HistoryAndBookmarkRow::ColumnID id) {
35 return columns_.find(id) != columns_.end();
visit_sql_handler.cc 44 for (TableIDRows::const_iterator id = ids_set.begin();
45 id != ids_set.end(); ++id) {
47 if (!history_db_->GetVisitsForURL(id->url_id, &visits))
51 if (!history_db_->GetURLRow(id->url_id, &url_row))
62 if (!DeleteVisitsForURL(id->url_id))
69 if (!AddVisit(id->url_id, row.created()))
74 if (!AddVisitRows(id->url_id, visit_count_needed - visit_count_in_table,
  /external/chromium_org/chrome/browser/history/
shortcuts_backend_unittest.cc 103 EXPECT_EQ(shortcut.id, shortcuts.find(shortcut.text)->second.id);
108 EXPECT_EQ(shortcut.id, shortcuts.find(shortcut.text)->second.id);
151 EXPECT_EQ(shortcut1.id, shortcuts.find(shortcut1.text)->second.id);
152 EXPECT_EQ(shortcut2.id, shortcuts.find(shortcut2.text)->second.id);
153 EXPECT_EQ(shortcut3.id, shortcuts.find(shortcut3.text)->second.id);
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_id.cc 18 return session_tab_helper ? session_tab_helper->session_id().id() : -1;
25 return session_tab_helper ? session_tab_helper->window_id().id() : -1;
tab_restore_service.cc 15 // ID of the next Entry.
19 : id(next_entry_id++),
24 : id(next_entry_id++),
  /external/chromium_org/chrome/browser/sync/test/integration/
themes_helper.h 18 // Gets the unique ID of the custom theme with the given index.
21 // Gets the ID of |profile|'s theme.
33 // Returns true iff a theme with the given ID is pending install in
36 Profile* profile, const std::string& id) WARN_UNUSED_RESULT;
41 Profile* profile, const std::string& id) WARN_UNUSED_RESULT;
  /external/chromium_org/chrome/browser/themes/
theme_service.cc 108 gfx::Image ThemeService::GetImageNamed(int id) const {
113 image = theme_supplier_->GetImageNamed(id);
116 image = rb_.GetNativeImageNamed(id);
121 gfx::ImageSkia* ThemeService::GetImageSkiaNamed(int id) const {
122 gfx::Image image = GetImageNamed(id);
130 SkColor ThemeService::GetColor(int id) const {
133 if (theme_supplier_.get() && theme_supplier_->GetColor(id, &color))
138 switch (id) {
163 return Properties::GetDefaultColor(id);
166 bool ThemeService::GetDisplayProperty(int id, int* result) const
296 std::string id = GetThemeID(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller.h 44 // windows. Launcher items have a type, an optional app id, and a controller.
76 // Returns the app id of the specified tab, or an empty string if there is
80 // Returns true if |id| is valid. Used during restore to ignore no longer
82 virtual bool IsValidID(const std::string& id) = 0;
116 virtual void SetItemStatus(ash::LauncherID id,
119 // Updates the controller associated with id (which should be a shortcut).
121 virtual void SetItemController(ash::LauncherID id,
125 virtual void CloseLauncherItem(ash::LauncherID id) = 0;
127 // Pins the specified id. Currently only supports platform apps.
128 virtual void Pin(ash::LauncherID id) = 0
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
browsercrapplication+applescript.h 53 - (void)insertInBookmarksFolders:(id)aBookmarkFolder;
54 - (void)insertInBookmarksFolders:(id)aBookmarkFolder atIndex:(int)index;
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_notification_container.h 41 - (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate;
53 - (IBAction)checkboxClicked:(id)sender;
  /external/chromium_org/chrome/browser/ui/cocoa/
clickhold_button_cell.h 19 id clickHoldTarget_; // Weak.
41 @property(assign, nonatomic) id clickHoldTarget;
first_run_dialog.h 25 - (IBAction)ok:(id)sender;
28 - (IBAction)learnMore:(id)sender;
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_mac.h 34 id<ConstrainedWindowSheet> sheet);
53 base::scoped_nsprotocol<id<ConstrainedWindowSheet>> sheet_;
  /external/chromium_org/chrome/browser/ui/cocoa/tab_contents/
sad_tab_controller.h 46 - (id)initWithWebContents:(content::WebContents*)webContents;
50 - (IBAction)openLearnMoreAboutCrashLink:(id)sender;

Completed in 919 milliseconds

<<61626364656667686970>>