Home
last modified time | relevance | path

Searched refs:entry (Results 251 – 275 of 591738) sorted by last modified time

1...<<11121314151617181920>>...23670

/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/compositor/
H A Dcompositor.cc127 for (const auto& entry : entries) { in Compositor() local
138 if (border.name == entry) { in Compositor()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/json_schema_compiler/
H A Dfeature_compiler.py390 for entry in allowlist:
391 if entry not in HOSTED_APP_EXCEPTIONS:
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/leveldatabase/
H A Denv_chromium.cc815 for (const auto& entry : entries_result.value()) in GetChildren() local
816 result->push_back(entry.BaseName().AsUTF8Unsafe()); in GetChildren()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/breakpad/breakpad/src/common/
H A Dsimple_string_dictionary.h89 const Entry* entry = &map_.entries_[current_++]; in Next() local
90 if (entry->is_active()) { in Next()
91 return entry; in Next()
185 Entry* entry = &entries_[i]; in SetKeyValue() local
187 strncpy(entry->key, key, key_size); in SetKeyValue()
188 entry->key[key_size - 1] = '\0'; in SetKeyValue()
222 Entry* entry = &entries_[index]; in SetValueAtIndex() local
223 assert(entry->key[0] != '\0'); in SetValueAtIndex()
225 strncpy(entry->value, value, value_size); in SetValueAtIndex()
226 entry->value[value_size - 1] = '\0'; in SetValueAtIndex()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/
H A Dediting_behavior.cc203 for (const auto& entry : kDomKeyKeyDownEntries) { in LookupCommandNameFromDomKeyKeyDown() local
204 if (key == entry.key && modifiers == entry.modifiers) in LookupCommandNameFromDomKeyKeyDown()
205 return entry.name; in LookupCommandNameFromDomKeyKeyDown()
225 for (const auto& entry : kKeyboardCodeKeyDownEntries) { in InterpretKeyEvent() local
226 key_down_commands_map->Set(entry.modifiers << 16 | entry.virtual_key, in InterpretKeyEvent()
227 entry.name); in InterpretKeyEvent()
230 for (const auto& entry : kKeyboardCodeKeyPressEntries) { in InterpretKeyEvent() local
231 key_press_commands_map->Set(entry.modifiers << 16 | entry.char_code, in InterpretKeyEvent()
232 entry.name); in InterpretKeyEvent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/
H A DBUILD.gn71 # Prevent the GL headers from redeclaring ANGLE entry points.
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/video_capture/
H A Dbroadcasting_receiver.cc413 [buffer_context_id](const BufferContext& entry) { in OnClientFinishedConsumingFrame() argument
414 return entry.buffer_context_id() == buffer_context_id; in OnClientFinishedConsumingFrame()
434 [buffer_id](const BufferContext& entry) { in FindUnretiredBufferContextFromBufferId() argument
435 return !entry.is_retired() && in FindUnretiredBufferContextFromBufferId()
436 entry.buffer_id() == buffer_id; in FindUnretiredBufferContextFromBufferId()
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/service_manager/public/cpp/service_executable/
H A DBUILD.gn41 # Service executable targets should link against this to get a boilerplate entry
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/resource_coordinator/memory_instrumentation/
H A Dqueued_request_dispatcher.cc115 const auto& entry = name_to_entry.second; in NodeAsValueIntoRecursively() local
117 switch (entry.type) { in NodeAsValueIntoRecursively()
120 entry.value_uint64); in NodeAsValueIntoRecursively()
126 value->SetString("value", entry.value_string); in NodeAsValueIntoRecursively()
129 switch (entry.units) { in NodeAsValueIntoRecursively()
509 const auto& entry = in Finalize() local
511 if (entry != node->entries()->end()) in Finalize()
512 shared_resident_kb = entry->second.value_uint64 / 1024; in Finalize()
573 for (const auto& entry : *node->entries()) { in Finalize()
574 if (entry.second.type == Node::Entry::Type::kUInt64) in Finalize()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/network/
H A Dnetwork_context.cc1750 net::HttpAuthCache::Entry* entry = in LookupServerBasicAuthCredentials() local
1753 if (entry && entry->scheme() == net::HttpAuth::AUTH_SCHEME_BASIC) in LookupServerBasicAuthCredentials()
1754 std::move(callback).Run(entry->credentials()); in LookupServerBasicAuthCredentials()
1787 net::HttpAuthCache::Entry* entry = in LookupProxyAuthCredentials() local
1790 if (entry) in LookupProxyAuthCredentials()
1791 std::move(callback).Run(entry->credentials()); in LookupProxyAuthCredentials()
H A Dnetwork_service.cc844 auto& entry = data_pipe_use_[user]; in OnDataPipeCreated() local
845 ++entry.current; in OnDataPipeCreated()
846 entry.max = std::max(entry.max, entry.current); in OnDataPipeCreated()
850 auto& entry = data_pipe_use_[user]; in OnDataPipeDropped() local
851 DCHECK_GT(entry.current, 0); in OnDataPipeDropped()
852 --entry.current; in OnDataPipeDropped()
853 entry.min = std::min(entry.min, entry.current); in OnDataPipeDropped()
968 DataPipeUsage& entry = pair.second; in ReportMetrics() local
969 entry.max = entry.current; in ReportMetrics()
970 entry.min = entry.current; in ReportMetrics()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/dns/
H A Daddress_sorter_posix.cc68 const AddressSorterPosix::PolicyEntry& entry = table[i]; in GetPolicyValue() local
69 IPAddress prefix(entry.prefix); in GetPolicyValue()
70 if (IPAddressMatchesPrefix(address, prefix, entry.prefix_length)) in GetPolicyValue()
71 return entry.value; in GetPolicyValue()
H A Ddns_util.cc114 for (const auto* entry : providers) { in GetDohProviderEntriesFromNameservers() local
115 if (base::Contains(excluded_providers, entry->provider)) in GetDohProviderEntriesFromNameservers()
119 if (base::Contains(entry->ip_addresses, server.address()) && in GetDohProviderEntriesFromNameservers()
120 !base::Contains(entries, entry)) { in GetDohProviderEntriesFromNameservers()
121 entries.push_back(entry); in GetDohProviderEntriesFromNameservers()
337 for (const auto* entry : DohProviderEntry::GetList()) { in GetDohUpgradeServersFromDotHostname() local
338 if (base::Contains(excluded_providers, entry->provider)) in GetDohUpgradeServersFromDotHostname()
341 if (base::Contains(entry->dns_over_tls_hostnames, dot_server)) { in GetDohUpgradeServersFromDotHostname()
343 CHECK(dns_util::IsValidDohTemplate(entry->dns_over_https_template, in GetDohUpgradeServersFromDotHostname()
345 doh_servers.emplace_back(entry->dns_over_https_template, in GetDohUpgradeServersFromDotHostname()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/capture/video/
H A Dvideo_capture_buffer_pool_impl.cc209 for (const auto& entry : trackers_) { in GetBufferPoolUtilization() local
210 VideoCaptureBufferTracker* const tracker = entry.second.get(); in GetBufferPoolUtilization()
H A Dfake_video_capture_device_factory.cc123 for (const auto& entry : settings.supported_formats) { in CreateDeviceWithSettings() local
126 if (entry.pixel_format == supported_pixel_format) { in CreateDeviceWithSettings()
194 for (const auto& entry : devices_config_) { in CreateDevice() local
195 if (device_descriptor.device_id != entry.device_id) in CreateDevice()
197 return CreateDeviceWithSettings(entry); in CreateDevice()
209 for (const auto& entry : devices_config_) { in GetDevicesInfo() local
227 entry.photo_device_config.control_support, in GetDevicesInfo()
231 GetSupportedFormats(entry.device_id); in GetDevicesInfo()
243 for (const auto& entry : devices_config_) { in GetSupportedFormats() local
244 if (device_id != entry.device_id) in GetSupportedFormats()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ipc/
H A Dipc_message_utils.cc147 for (const auto& entry : *list) { in WriteValue()
148 WriteValue(m, &entry, recursion + 1); in WriteValue()
172 for (auto& entry : entries) { in ReadDictionaryValue() local
173 entry.second = std::make_unique<base::Value>(); in ReadDictionaryValue()
174 if (!ReadParam(m, iter, &entry.first) || in ReadDictionaryValue()
175 !ReadValue(m, iter, entry.second.get(), recursion + 1)) in ReadDictionaryValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/gpu/config/
H A Dgpu_control_list.cc668 const Entry& entry = entries_[ii]; in MakeDecision() local
669 DCHECK_NE(0u, entry.id); in MakeDecision()
670 if (!entry.AppliesToTestGroup(target_test_group)) in MakeDecision()
682 int32_t feature = entry.features[jj]; in MakeDecision()
722 const Entry& entry = entries_[index]; in GetDisabledExtensions() local
735 const Entry& entry = entries_[index]; in GetDisabledWebGLExtensions() local
750 const Entry& entry = entries_[index]; in GetReasons() local
753 problem->SetString("description", entry.description); in GetReasons()
756 for (size_t jj = 0; jj < entry.cr_bug_size; ++jj) in GetReasons()
757 cr_bugs->AppendInteger(entry.cr_bugs[jj]); in GetReasons()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/common/
H A Dcommon_sandbox_support_linux.cc58 uint8_t* entry = table_entries.get() + i * kTableEntrySize; in GetFontTable() local
59 uint32_t tag = *reinterpret_cast<uint32_t*>(entry); in GetFontTable()
63 base::NetToHost32(*reinterpret_cast<uint32_t*>(entry + 8)); in GetFontTable()
65 base::NetToHost32(*reinterpret_cast<uint32_t*>(entry + 12)); in GetFontTable()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/renderer_host/
H A Drender_view_host_impl.cc568 for (auto& entry : entries) { in OnBackForwardCacheTimeout() local
569 for (auto* const rvh : entry->render_view_hosts) { in OnBackForwardCacheTimeout()
571 RenderFrameHostImpl* rfh = entry->render_frame_host.get(); in OnBackForwardCacheTimeout()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/browser/download/
H A Ddownload_manager_impl.cc1228 NavigationEntry* entry = web_contents->GetController().GetVisibleEntry(); in InterceptNavigationOnChecksComplete() local
1229 if (entry) { in InterceptNavigationOnChecksComplete()
1230 tab_url = entry->GetURL(); in InterceptNavigationOnChecksComplete()
1231 tab_referrer_url = entry->GetReferrer().url; in InterceptNavigationOnChecksComplete()
1265 NavigationEntry* entry = web_contents->GetController().GetVisibleEntry(); in BeginResourceDownloadOnChecksComplete() local
1266 if (entry) { in BeginResourceDownloadOnChecksComplete()
1267 tab_url = entry->GetURL(); in BeginResourceDownloadOnChecksComplete()
1268 tab_referrer_url = entry->GetReferrer().url; in BeginResourceDownloadOnChecksComplete()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/url_matcher/
H A Durl_matcher_factory.cc255 for (const auto& entry : *value_list) { in CreateURLMatcherPorts()
258 if (entry.GetAsInteger(&port)) { in CreateURLMatcherPorts()
260 } else if (entry.GetAsList(&range)) { in CreateURLMatcherPorts()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/policy/resources/
H A Dpolicy_templates.json73 # from caption is that label always appears next to the entry field
259 # case no entry in the UserPolicy Protobuf is generated and it is assumed that
9843 …Each list entry contains a dictionary that must include the extension ID in the 'extension-id' fie…
16089entry with lower <ph name="WARNING_PERIOD_PROPERTY_NAME">warning_period</ph> or <ph name="AUE_WARN…
16215 'caption': '''Password entry is required every six hours''',
16220 'caption': '''Password entry is required every twelve hours''',
16225 'caption': '''Password entry is required every two days (48 hours)''',
16230 'caption': '''Password entry is required every week (168 hours)''',
18564 … Multiple overrides may be sent, the newest valid entry is the one that is going to be applied.'''
21990 …'description': '''UTC timestamp for the last time this entry was updated. Sent as a string because…
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/content_settings/core/browser/
H A Dwebsite_settings_registry.cc49 for (const auto& entry : website_settings_info_) { in GetByName() local
50 if (entry.second->name() == name) in GetByName()
51 return entry.second.get(); in GetByName()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/frame/
H A Dbrowser_view.cc3300 for (const auto& entry : accelerator_list) { in LoadAccelerators() local
3304 entry.command_id, browser()->is_type_popup())) in LoadAccelerators()
3307 ui::Accelerator accelerator(entry.keycode, entry.modifiers); in LoadAccelerators()
3308 accelerator_table_[accelerator] = entry.command_id; in LoadAccelerators()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/task_manager/sampling/
H A Dtask_manager_impl.cc535 for (const auto& entry : total_network_usages) { in OnTotalNetworkUsages() local
536 BytesTransferredKey process_info = {entry->process_id, entry->routing_id}; in OnTotalNetworkUsages()
538 entry->total_bytes_received, entry->total_bytes_sent}; in OnTotalNetworkUsages()

1...<<11121314151617181920>>...23670