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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/history/android/
urls_sql_handler.cc 33 URLID id = history_db_->GetRowForURL(row->url(), &url_row); local
34 if (id) {
  /external/chromium_org/chrome/browser/invalidation/
invalidation_controller_android.cc 35 syncer::ObjectIdSet::const_iterator id; local
36 for (id = ids.begin(); id != ids.end(); ++id) {
37 sources.push_back(id->source());
38 names.push_back(id->name());
57 // Ask the Java code to for the invalidator ID it's currently using.
66 std::string id(id_bytes.begin(), id_bytes.end());
68 return id;
  /external/chromium_org/chrome/browser/media/
desktop_streams_registry.cc 40 std::string id = GenerateRandomStreamId(); local
41 ApprovedDesktopMediaStream& stream = approved_streams_[id];
50 base::Unretained(this), id),
53 return id;
57 const std::string& id,
63 StreamsMap::iterator it = approved_streams_.find(id);
65 // Verify that if there is a request with the specified ID it was created for
79 void DesktopStreamsRegistry::CleanupStream(const std::string& id) {
81 approved_streams_.erase(id);
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_delegate.cc 25 std::string ChromeNotifierDelegate::id() const { function in class:notifier::ChromeNotifierDelegate
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table.h 21 // id A unique id.
39 // requires some investigation into how to make sure the id is unique for
42 typedef std::string Id;
47 Row(const Id& id,
55 Id id; member in struct:predictors::AutocompleteActionPredictorTable::Row
65 void GetRow(const Row::Id& id, Row* row)
    [all...]
  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
background.js 16 id: key,
  /external/chromium_org/chrome/browser/sync/test/integration/
extension_settings_helper.cc 48 Profile* profile, const std::string& id) {
52 id,
71 const std::string& id = (*it)->id(); local
72 scoped_ptr<DictionaryValue> expected(GetAllSettings(expected_profile, id));
73 scoped_ptr<DictionaryValue> actual(GetAllSettings(actual_profile, id));
95 Profile* profile, const std::string& id, const DictionaryValue& settings) {
98 id,
105 const std::string& id, const DictionaryValue& settings) {
107 SetExtensionSettings(test()->GetProfile(i), id, settings) local
    [all...]
  /external/chromium_org/chrome/browser/themes/
theme_service_factory.cc 35 std::string id = GetForProfile(profile)->GetThemeID(); local
36 if (id == ThemeService::kDefaultThemeID)
39 return profile->GetExtensionService()->GetExtensionById(id, false);
  /external/chromium_org/chrome/browser/ui/gtk/
view_id_util.cc 20 ViewID id; // Input: the ID we are searching for. member in struct:__anon6125::ViewIDSearchStruct
24 // Recursively search for the given view ID among the children of |widget|.
33 // Check if the widget defines its own ID function.
37 search_struct->widget = delegate->GetWidgetForViewID(search_struct->id);
47 if (search_struct->id == widget_id) {
60 const char* GetNameFromID(ViewID id) {
61 switch (id) {
120 // set its ID.
131 void ViewIDUtil::SetID(GtkWidget* widget, ViewID id) {
    [all...]
  /external/chromium_org/chrome/browser/ui/views/toolbar/
browser_actions_container_browsertest.cc 74 std::string id = browser_actions_bar()->GetExtensionId(0); local
75 UnloadExtension(id);
  /external/chromium_org/chrome/browser/
upload_list.h 17 // time,id
18 // time,id
29 std::string id; member in struct:UploadList::UploadInfo
  /external/chromium_org/chrome/common/extensions/api/extension_action/
action_info.h 73 // action id -- only used with legacy page actions API.
74 std::string id; member in struct:extensions::ActionInfo
  /external/chromium_org/chrome/common/extensions/permissions/
socket_permission.cc 61 int id = (domains.size() == 1) ? local
67 id,
83 int id = (hostnames.size() == 1) ? local
89 id,
  /external/chromium_org/chrome/common/media_galleries/
iphoto_library.h 21 Photo(uint64 id,
26 uint64 id; member in struct:iphoto::parser::Photo
  /external/chromium_org/chrome/common/metrics/variations/
experiment_labels.cc 25 base::string16 CreateSingleExperimentLabel(int count, VariationID id,
31 const base::string16 value = base::IntToString16(id);
53 const VariationID id = GetGoogleVariationID(GOOGLE_UPDATE_SERVICE, local
56 if (id == EMPTY_ID)
61 experiment_labels += CreateSingleExperimentLabel(++counter, id,
  /external/chromium_org/chrome/common/
tts_utterance_request.h 17 int id; member in struct:TtsUtteranceRequest
41 int id; member in struct:TtsUtteranceResponse
  /external/chromium_org/chrome_frame/crash_reporting/
veh_test.cc 80 void* id = ::AddVectoredExceptionHandler(FALSE, VEH); local
100 ::RemoveVectoredExceptionHandler(id);
  /external/chromium_org/chromeos/dbus/
audio_node.h 19 uint64 id; member in struct:chromeos::AudioNode
29 uint64 id,
  /external/chromium_org/content/browser/dom_storage/
session_storage_namespace_impl.cc 35 int64 SessionStorageNamespaceImpl::id() const { function in class:content::SessionStorageNamespaceImpl
  /external/chromium_org/content/common/gpu/media/
h264_parser_unittest.cc 48 int id; local
56 ASSERT_EQ(parser.ParseSPS(&id), H264Parser::kOk);
60 ASSERT_EQ(parser.ParsePPS(&id), H264Parser::kOk);
  /external/chromium_org/content/public/browser/
desktop_media_id.h 31 typedef intptr_t Id;
40 static aura::Window* GetAuraWindowById(const DesktopMediaID& id);
47 id(0) {
49 DesktopMediaID(Type type, Id id)
51 id(id) {
56 return type < other.type || (type == other.type && id < other.id);
59 return type == other.type && id == other.id
67 Id id; member in struct:content::DesktopMediaID
    [all...]
  /external/chromium_org/content/renderer/
active_notification_tracker.cc 22 const WebNotification& notification, int& id) {
26 id = iter->second;
31 int id, WebNotification* notification) {
32 WebNotification* lookup = notification_table_.Lookup(id);
47 int id = notification_table_.Add(notification); local
48 reverse_notification_table_[proxy] = id;
49 return id;
53 void ActiveNotificationTracker::UnregisterNotification(int id) {
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
56 notification_table_.Remove(id);
    [all...]
  /external/chromium_org/content/renderer/fetchers/
image_resource_fetcher.h 35 int id,
46 int id() const { return id_; } function in class:content::ImageResourceFetcher
multi_resolution_image_resource_fetcher.h 38 int id,
48 int id() const { return id_; } function in class:content::MultiResolutionImageResourceFetcher
  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 66 blink::WebString id = blink::WebString::fromUTF8(web_session_id); local
67 DCHECK(web_session_id_.isEmpty() || web_session_id_ == id)
68 << "Session ID may not be changed once set.";
69 web_session_id_ = id;

Completed in 295 milliseconds

<<11121314151617181920>>