HomeSort by relevance Sort by last modified time
    Searched full:static_cast (Results 201 - 225 of 12557) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/browser/managed_mode/
managed_user_sync_service_factory.cc 14 return static_cast<ManagedUserSyncService*>(
34 return new ManagedUserSyncService(static_cast<Profile*>(profile)->GetPrefs());
  /external/chromium_org/chrome/browser/media/
chrome_midi_permission_context_factory.cc 15 return static_cast<ChromeMIDIPermissionContext*>(
39 return new ChromeMIDIPermissionContext(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/network_time/
network_time_service_factory.cc 28 return static_cast<NetworkTimeService*>(
40 return new NetworkTimeService(static_cast<Profile*>(context));
  /external/chromium_org/chrome/browser/predictors/
predictor_database_factory.cc 16 return static_cast<PredictorDatabase*>(
35 return new PredictorDatabase(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_proxy_service_factory.cc 14 return static_cast<CloudPrintProxyService*>(
35 new CloudPrintProxyService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/profiles/
startup_task_runner_service_factory.cc 22 return static_cast<StartupTaskRunnerService*>(
35 return new StartupTaskRunnerService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_factory.cc 13 return static_cast<TabRestoreService*>(
20 return static_cast<TabRestoreService*>(
  /external/chromium_org/chrome/browser/signin/
account_reconcilor_factory.cc 25 return static_cast<AccountReconcilor*>(
36 return new AccountReconcilor(static_cast<Profile*>(context));
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_factory.cc 27 return static_cast<ThumbnailService*>(
40 new ThumbnailServiceImpl(static_cast<Profile*>(profile)));
  /external/chromium_org/chrome/browser/ui/ash/
app_sync_ui_state_factory.cc 17 return static_cast<AppSyncUIState*>(
38 Profile* profile = static_cast<Profile*>(context);
  /external/chromium_org/chrome/browser/ui/
browser_iterator.cc 13 static_cast<HostDesktopType>(HOST_DESKTOP_TYPE_FIRST + 1)) {
31 next_desktop_type_ = static_cast<HostDesktopType>(next_desktop_type_ + 1);
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_container_cocoa.mm 22 InfoBarCocoa* infobar_cocoa = static_cast<InfoBarCocoa*>(infobar);
27 InfoBarCocoa* infobar_cocoa = static_cast<InfoBarCocoa*>(infobar);
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service_factory.cc 14 return static_cast<GlobalErrorService*>(
34 return new GlobalErrorService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_service_factory.cc 14 return static_cast<PinnedTabService*>(
33 return new PinnedTabService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/ui/webui/signin/
login_ui_service_factory.cc 23 return static_cast<LoginUIService*>(
34 return new LoginUIService(static_cast<Profile*>(profile));
  /external/chromium_org/chrome/browser/undo/
bookmark_undo_service_factory.cc 15 return static_cast<BookmarkUndoService*>(
36 Profile* profile = static_cast<Profile*>(context);
  /external/chromium_org/content/browser/device_orientation/
data_fetcher_shared_memory_android.cc 27 static_cast<DeviceMotionHardwareBuffer*>(buffer));
31 static_cast<DeviceOrientationHardwareBuffer*>(buffer));
  /external/chromium_org/content/public/renderer/
media_stream_video_sink.cc 18 static_cast<MediaStreamVideoTrack*>(track.extraData());
27 static_cast<MediaStreamVideoTrack*>(track.extraData());
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntoa.cc 12 const char* buf = static_cast<const char*>(addr);
13 return static_cast<uint8_t>(buf[byte]);
  /external/chromium_org/net/quic/
quic_clock_test.cc 32 EXPECT_LE(static_cast<uint64>(start.ToTimeT()), now.ToUNIXSeconds());
33 EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64>(end.ToTimeT()));
  /external/chromium_org/ppapi/shared_impl/
array_writer.cc 38 static_cast<uint32_t>(input.size()),
51 PP_Resource* dest_resources = static_cast<PP_Resource*>(dest);
61 static_cast<uint32_t>(input.size()),
77 std::copy(input.begin(), input.end(), static_cast<PP_Resource*>(dest));
86 static_cast<uint32_t>(input.size()),
99 PP_Var* dest_vars = static_cast<PP_Var*>(dest);
109 static_cast<uint32_t>(input.size()),
125 std::copy(input.begin(), input.end(), static_cast<PP_Var*>(dest));
  /external/chromium_org/ppapi/tests/
test_video_decoder.cc 15 video_decoder_interface_ = static_cast<const PPB_VideoDecoder_Dev*>(
30 instance_->pp_instance(), 0, static_cast<PP_VideoDecoder_Profile>(-1));
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Screen.cpp 56 return static_cast<unsigned>(screenRect(m_frame->view()).height());
66 return static_cast<unsigned>(screenRect(m_frame->view()).width());
73 return static_cast<unsigned>(screenDepth(m_frame->view()));
80 return static_cast<unsigned>(screenDepth(m_frame->view()));
90 return static_cast<int>(screenAvailableRect(m_frame->view()).x());
100 return static_cast<int>(screenAvailableRect(m_frame->view()).y());
110 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).height());
120 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).width());
  /external/chromium_org/third_party/leveldatabase/src/util/
coding.h 65 return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0])))
66 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8)
67 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16)
68 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24));
  /external/chromium_org/third_party/skia/src/gpu/
GrPath.cpp 23 keyData[2] = static_cast<uint32_t>(stroke.getMiter());
24 keyData[3] = static_cast<uint32_t>(stroke.getWidth());

Completed in 896 milliseconds

1 2 3 4 5 6 7 891011>>