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

<<31323334353637383940>>

  /external/chromium_org/chrome/browser/local_discovery/
cloud_print_printer_list.h 30 std::string id; member in struct:local_discovery::CloudPrintPrinterList::PrinterDetails
56 const PrinterDetails* GetDetailsFor(const std::string& id);
66 typedef std::map<std::string /*ID*/, int /* index in printer_list_ */>
privet_device_lister.h 35 std::string id; member in struct:local_discovery::DeviceDescription
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_permissions_unittest.cc 115 std::string* id; member in struct:MediaGalleriesPermissionsTest::TestData
125 gallery_prefs_->GetGalleryPermissionsFromPrefs(*test_data[i].id);
  /external/chromium_org/chrome/browser/metrics/variations/
variations_http_header_provider.cc 115 const VariationID id = local
118 if (id != EMPTY_ID)
119 variation_ids_set_.insert(id);
144 // here. Force a hard maximum on the ID count in case the Variations server
  /external/chromium_org/chrome/browser/password_manager/
password_store_factory.cc 77 LocalProfileId id = prefs->GetInteger(prefs::kLocalProfileId); local
78 if (id == kInvalidLocalProfileId) {
80 // not a unique id. However, it is large enough that it is very unlikely
87 id = rand() & kLocalProfileIdMask;
88 // TODO(mdm): scan other profiles to make sure they are not using this id?
89 } while (id == kInvalidLocalProfileId);
90 prefs->SetInteger(prefs::kLocalProfileId, id);
92 return id;
153 LocalProfileId id = GetLocalProfileId(prefs); local
159 backend.reset(new NativeBackendKWallet(id, prefs))
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/pepper/
device_id_fetcher.cc 36 const char kDRMIdentifierFile[] = "Pepper DRM ID.0";
129 // in case the legacy id doesn't exist.
136 // Get the machine ID and call ComputeOnUIThread with salt + machine_id.
147 LOG(ERROR) << "Empty machine id";
153 // SHA256(machine-id||service||SHA256(machine-id||service||salt))
168 std::string id = StringToLowerASCII( local
172 input.append(id);
174 id = StringToLowerASCII(base::HexEncode(
178 RunCallbackOnIOThread(id, PP_OK)
187 std::string id; local
    [all...]
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service.h 61 // Unique id for this entry. The id is guaranteed to be unique for a
63 SessionID::id_type id; member in struct:TabRestoreService::Entry
90 // The ID of the browser to which this tab belonged, so it can be restored
100 // If non-empty gives the id of the extension for the tab.
164 // Removes the Tab with id |id| from the list and returns it; ownership is
166 virtual Tab* RemoveTabEntryById(SessionID::id_type id) = 0;
168 // Restores an entry by id. If there is no entry with an id matching |id|
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
autofill_sync_perf_test.cc 162 static int id = 0; local
163 ++id;
166 bookmarks_helper::IndexedURLTitle(id),
167 GURL(bookmarks_helper::IndexedURL(id))) != NULL);
173 // TCM ID - 7557873.
180 // TCM ID - 7549835.
186 // TCM ID - 7553678.
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_context_menu.h 41 // ID of the item we're showing the context menu for.
42 ash::LauncherID id() const { return item_.id; } function in class:LauncherContextMenu
81 bool is_valid_item() const { return item_.id != 0; }
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_image_model.cc 66 int id; member in struct:__anon5995::ContentSettingsTypeIdEntry
74 return entries[i].id;
  /external/chromium_org/chrome/browser/ui/views/message_center/
web_notification_tray_browsertest.cc 48 explicit TestNotificationDelegate(std::string id) : id_(id) {}
53 virtual std::string id() const OVERRIDE { return id_; }
64 void AddNotification(const std::string& id, const std::string& replace_id) {
72 new TestNotificationDelegate(id));
93 void RemoveNotification(const std::string& id) {
94 g_browser_process->notification_ui_manager()->CancelById(id);
176 std::string id = base::StringPrintf("test_id%d", static_cast<int>(i)); local
179 AddNotification(id, replace_id);
204 std::string id = base::StringPrintf("test_id%d", static_cast<int>(i)) local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
context_menu_handler.cc 73 // Where the first value in the sub-array is the item id and the second its
86 int id; local
87 if (!ExtractIntegerValue(item_list_value, &id)) {
97 menu_item.action = id;
  /external/chromium_org/chrome/browser/ui/webui/options/
media_galleries_handler.cc 98 dict->SetString("id", base::Uint64ToString(gallery.pref_id));
133 uint64 id = 0; local
135 !base::StringToUint64(string_id, &id)) {
145 preferences->ForgetGalleryById(id);
options_ui.h 82 // The .grd ID for the resource (IDS_*).
83 int id; member in struct:options::OptionsPageUIHandler::OptionsStringResource
84 // The .grd ID of the string to replace $1 in |id|'s string. If zero or
  /external/chromium_org/chrome/common/
cancelable_task_tracker.cc 92 TaskId id = next_id_; local
96 &CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id);
106 Track(id, flag);
107 return id;
115 TaskId id = next_id_; local
123 Bind(&CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id),
136 Track(id, flag);
137 return id;
140 void CancelableTaskTracker::TryCancel(TaskId id) {
143 hash_map<TaskId, CancellationFlag*>::const_iterator it = task_flags_.find(id);
    [all...]
  /external/chromium_org/chrome/common/extensions/api/input_ime/
input_components_handler.h 33 std::string id; member in struct:extensions::InputComponentInfo
  /external/chromium_org/chrome/common/extensions/
extension_messages.cc 42 id(extension->id()),
130 void ParamTraits<APIPermission::ID>::Write(
135 bool ParamTraits<APIPermission::ID>::Read(
141 *p = static_cast<APIPermission::ID>(api_id);
145 void ParamTraits<APIPermission::ID>::Log(
161 WriteParam(m, it->id());
172 APIPermission::ID id; local
173 if (!ReadParam(m, iter, &id))
    [all...]
  /external/chromium_org/chrome/renderer/
tts_dispatcher.cc 61 int id = next_utterance_id_++; local
63 utterance_id_map_[id] = web_utterance;
66 utterance.id = id;
  /external/chromium_org/chrome/test/chromedriver/chrome/
devtools_http_client.h 33 WebViewInfo(const std::string& id,
41 std::string id; member in struct:WebViewInfo
55 const WebViewInfo* GetForId(const std::string& id) const;
73 scoped_ptr<DevToolsClient> CreateClient(const std::string& id);
75 Status CloseWebView(const std::string& id);
77 Status ActivateWebView(const std::string& id);
  /external/chromium_org/chrome/test/chromedriver/
session.h 41 explicit Session(const std::string& id);
42 Session(const std::string& id, scoped_ptr<Chrome> chrome);
53 const std::string id; member in struct:Session
  /external/chromium_org/chrome/tools/ipclist/
ipclist.cc 18 int id; member in struct:msginfo
23 return id < other.id;
53 int class_id = IPC_MESSAGE_ID_CLASS(msgtable[i].id);
99 std::cout << msgtable[i].id;
102 std::cout << msgtable[i].id << " " <<
103 IPC_MESSAGE_ID_CLASS(msgtable[i].id) << "," <<
104 IPC_MESSAGE_ID_LINE(msgtable[i].id) << " ";
  /external/chromium_org/chrome/utility/media_galleries/
itunes_library_parser.cc 24 uint64 id; member in struct:itunes::__anon7087::TrackInfo
31 // true if at least the id and location where found (artist and album may be
57 if (found_key == "Track ID") {
60 if (!iapps::ReadInteger(reader, &result->id))
141 // Once inside the Tracks dict, we expect track dictionaries keyed by id. i.e.
146 // <key>Track ID</key><integer>160</integer>
160 std::string key; // Should match track id below.
163 uint64 id;
164 bool id_valid = base::StringToUint64(key, &id);
171 id == track_info.id)
    [all...]
  /external/chromium_org/chrome_frame/crash_reporting/
crash_report.cc 92 void* id = ::AddVectoredExceptionHandler(FALSE, &VectoredHandlerEntryPoint); local
93 if (id != NULL) {
94 veh_id_ = id;
vectored_handler_unittest.cc 141 void* id = ::AddVectoredExceptionHandler(FALSE, VEH); local
171 ::RemoveVectoredExceptionHandler(id);
218 void* id = ::AddVectoredExceptionHandler(FALSE, VEH); local
226 ::RemoveVectoredExceptionHandler(id);
  /external/chromium_org/chromeos/audio/
audio_device.h 32 uint64 id; member in struct:chromeos::AudioDevice

Completed in 621 milliseconds

<<31323334353637383940>>