/external/chromium_org/android_webview/native/ |
aw_contents_io_thread_client_impl.cc | 219 const content::ResourceRequestInfo* info = local 221 bool is_main_frame = info && 222 info->GetResourceType() == ResourceType::MAIN_FRAME;
|
/external/chromium_org/ash/system/ime/ |
tray_ime.cc | 59 IMEInfo info; local 60 Shell::GetInstance()->system_tray_delegate()->GetCurrentIME(&info); 61 UpdateLabel(info); 66 void UpdateLabel(const IMEInfo& info) { 67 SetLabel(info.name); 68 SetAccessibleName(info.name);
|
/external/chromium_org/base/files/ |
file_util_proxy_unittest.cc | 344 PlatformFileInfo info; local 345 GetFileInfo(test_path(), &info); local 350 static_cast<int>(info.last_modified.ToDoubleT())); 352 static_cast<int>(info.last_accessed.ToDoubleT())); 359 PlatformFileInfo info; local 360 GetFileInfo(test_path(), &info); local 361 ASSERT_EQ(10, info.size); 372 GetFileInfo(test_path(), &info); local 373 ASSERT_EQ(7, info.size); 386 PlatformFileInfo info; local 387 GetFileInfo(test_path(), &info); local 399 GetFileInfo(test_path(), &info); local [all...] |
/external/chromium_org/base/message_loop/ |
message_pump_win.cc | 482 JOBOBJECT_ASSOCIATE_COMPLETION_PORT info; local 483 info.CompletionKey = reinterpret_cast<void*>(key); 484 info.CompletionPort = port_; 487 &info, 488 sizeof(info)) != FALSE;
|
/external/chromium_org/base/process/ |
process_metrics_mac.cc | 136 vm_region_top_info_data_t info; local 143 (vm_region_info_t)&info, 156 info.share_mode != SM_PRIVATE) 159 if (info.share_mode == SM_COW && info.ref_count == 1) 160 info.share_mode = SM_PRIVATE; 162 switch (info.share_mode) { 164 private_pages_count += info.private_pages_resident; 165 private_pages_count += info.shared_pages_resident; 168 private_pages_count += info.private_pages_resident [all...] |
process_metrics_win.cc | 248 MEMORY_BASIC_INFORMATION info; local 250 &info, sizeof(info))) 252 if (info.State == MEM_FREE) { 253 accumulated += info.RegionSize; 254 if (info.RegionSize > largest.RegionSize) 255 largest = info; 257 scan += info.RegionSize; 307 PERFORMANCE_INFORMATION info; local 308 if (!InternalGetPerformanceInfo(&info, sizeof(info))) [all...] |
/external/chromium_org/cc/resources/ |
picture_pile.cc | 196 PictureInfo& info = picture_map_[key]; local 202 if (info.NeedsRecording(frame_number, distance_to_visible)) { 205 } else if (!info.GetPicture() && recorded_viewport_.Intersects(rect)) { 255 PictureInfo& info = picture_map_[key]; local 256 info.SetPicture(picture);
|
picture_pile_base.cc | 152 SkTileGridPicture::TileGridInfo* info) { 153 DCHECK(info); 154 info->fTileInterval.set(tile_grid_size.width() - 2 * kTileGridBorderPixels, 156 DCHECK_GT(info->fTileInterval.width(), 0); 157 DCHECK_GT(info->fTileInterval.height(), 0); 158 info->fMargin.set(kTileGridBorderPixels, kTileGridBorderPixels); 162 info->fOffset.set(-kTileGridBorderPixels, -kTileGridBorderPixels); 300 PictureInfo info = *this; local 302 info.picture_ = picture_->GetCloneForDrawingOnThread(thread_index); 303 return info; [all...] |
picture_pile_impl.cc | 178 PictureInfo& info = map_iter->second; local 179 Picture* picture = info.GetPicture();
|
/external/chromium_org/chrome/browser/automation/ |
url_request_automation_job.cc | 147 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 148 if (info) { 149 int child_id = info->GetChildID(); 150 int route_id = info->GetRouteID(); 159 info->GetRequestID(), 243 void URLRequestAutomationJob::GetResponseInfo(net::HttpResponseInfo* info) { 245 info->headers = headers_; 248 // access to the real SSL info. 252 info->ssl_info.cert = 258 info->ssl_info.cert_status = 0 506 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request_); local [all...] |
/external/chromium_org/chrome/browser/chromeos/display/ |
display_preferences.cc | 192 ash::internal::DisplayInfo info = display_manager->GetDisplayInfo(id); local 196 property_value->SetInteger("rotation", static_cast<int>(info.rotation())); 199 static_cast<int>(info.configured_ui_scale() * 1000)); 207 if (!info.overscan_insets_in_dip().empty()) 208 InsetsToValue(info.overscan_insets_in_dip(), property_value.get());
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_scheduler_unittest.cc | 49 JobInfo info; member in struct:drive::__anon4204::JobListLogger::EventLog 51 EventLog(EventType type, const JobInfo& info) : type(type), info(info) { 58 if (events[i].type == type && events[i].info.job_type == job_type) 67 if (events[i].type == UPDATED && events[i].info.job_type == job_type) 68 progress->push_back(events[i].info.num_completed_bytes); 73 virtual void OnJobAdded(const JobInfo& info) OVERRIDE { 74 events.push_back(EventLog(ADDED, info)); 77 virtual void OnJobUpdated(const JobInfo& info) OVERRIDE [all...] |
/external/chromium_org/chrome/browser/chromeos/extensions/ |
external_cache.cc | 309 base::FileEnumerator::FileInfo info = enumerator.GetInfo(); local 312 if (info.IsDirectory() || base::IsLink(info.GetName())) {
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_drive.cc | 101 // Start getting the file info. 406 fileapi::FileSystemInfo info = local 410 entry->SetString("fileSystemName", info.name); 411 entry->SetString("fileSystemRoot", info.root_url.spec()); 490 fileapi::FileSystemInfo info = local 497 entry->SetString("fileSystemName", info.name); 498 entry->SetString("fileSystemRoot", info.root_url.spec());
|
private_api_file_system.cc | 320 fileapi::FileSystemInfo info = local 325 dict->SetString("name", info.name); 326 dict->SetString("root_url", info.root_url.spec());
|
/external/chromium_org/chrome/browser/download/ |
download_history.cc | 81 history::DownloadRow* info() { return info_.get(); } function in class:__anon4572::DownloadHistoryData 166 const history::DownloadRow& info, 168 history_->CreateDownload(info, callback); 276 if (data->info() == NULL) { 277 // Keep the info here regardless of whether the item is in progress so that, 279 // Update the db and/or clear the info. 283 history_->CreateDownload(*data->info(), base::Bind( 287 item, *data->info())); 370 bool should_update = ShouldUpdateHistory(data->info(), current_info);
|
/external/chromium_org/chrome/browser/extensions/ |
PRESUBMIT_test.py | 17 def info(self, message): member in class:MockLogging
|
/external/chromium_org/chrome/browser/extensions/api/runtime/ |
runtime_api.cc | 281 base::DictionaryValue* info = new base::DictionaryValue(); local 282 event_args->Append(info); 284 info->SetString(kInstallReason, kInstallReasonUpdate); 285 info->SetString(kInstallPreviousVersion, old_version.GetString()); 287 info->SetString(kInstallReason, kInstallReasonChromeUpdate); 289 info->SetString(kInstallReason, kInstallReasonInstall); 513 GetPlatformInfo::Results::PlatformInfo info; local 517 info.os = GetPlatformInfo::Results::PlatformInfo::OS_MAC_; 519 info.os = GetPlatformInfo::Results::PlatformInfo::OS_WIN_; 521 info.os = GetPlatformInfo::Results::PlatformInfo::OS_ANDROID_ [all...] |
/external/chromium_org/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 310 MONITORINFO info = {sizeof(info)}; local 311 if (!GetMonitorInfoW(monitor, &info)) { 317 int left = is_RTL ? info.rcWork.left : info.rcWork.right - width; 318 int top = info.rcWork.bottom - height;
|
/external/chromium_org/chrome/browser/history/ |
url_database.cc | 75 bool URLDatabase::GetURLRow(URLID url_id, URLRow* info) { 85 FillURLRow(statement, info); 96 URLRow info; local 97 FillURLRow(statement, &info); 98 urls->push_back(info); 103 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) { 112 if (info) 113 FillURLRow(statement, info); 118 const history::URLRow& info) { 123 statement.BindString16(0, info.title()) 277 history::URLRow info; local 361 history::URLResult info; local [all...] |
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
native_media_file_util.cc | 558 base::FileEnumerator::FileInfo info = file_enum.GetInfo(); local 563 if (!info.IsDirectory() && !media_path_filter_->Match(enum_path)) 567 entry.is_directory = info.IsDirectory(); 569 entry.size = info.GetSize(); 570 entry.last_modified_time = info.GetLastModifiedTime();
|
/external/chromium_org/chrome/browser/ |
memory_details.cc | 184 ProcessMemoryInformation info; local 187 info.pid = base::GetProcId(iter.GetData().handle); 188 if (!info.pid) 191 info.process_type = iter.GetData().process_type; 192 info.renderer_type = ProcessMemoryInformation::RENDERER_UNKNOWN; 193 info.titles.push_back(iter.GetData().name); 194 child_info.push_back(info); 504 // Only record swap info when any swaps have happened, to give us more
|
/external/chromium_org/chrome/browser/net/ |
http_pipelining_compatibility_client_unittest.cc | 252 RequestInfo info; local 253 info.filename = "files/alphabet.txt"; 254 info.expected_response = "abcdefghijklmnopqrstuvwxyz"; 256 requests.push_back(info); 270 RequestInfo info; local 271 info.filename = "files/alphabet.txt"; 272 info.expected_response = "abcdefghijklmnopqrstuvwxyz26"; 274 requests.push_back(info); 286 RequestInfo info; local 287 info.filename = "files/alphabet.txt" 302 RequestInfo info; local 319 RequestInfo info; local 335 RequestInfo info; local 352 RequestInfo info; local 369 RequestInfo info; local 386 RequestInfo info; local [all...] |
/external/chromium_org/chrome/browser/prerender/ |
prerender_util.cc | 237 const content::ResourceRequestInfo* info = local 239 GatherPagespeedData(info->GetResourceType(),
|
/external/chromium_org/chrome/browser/renderer_host/ |
chrome_resource_dispatcher_host_delegate.cc | 303 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 306 io_data, info->GetChildID(), info->GetRouteID()); 440 ExtensionRendererState::WebViewInfo info; 443 &info)) { 487 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 488 if (prerender_tracker_->IsPrerenderingOnIOThread(info->GetChildID(), 489 info->GetRouteID())) { 494 info->GetChildID(), info->GetRouteID(), request->url())) 586 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local 635 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request); local [all...] |