HomeSort by relevance Sort by last modified time
    Searched refs:resolution (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/remoting/host/
ipc_screen_controls.cc 21 const ScreenResolution& resolution) {
22 desktop_session_proxy_->SetScreenResolution(resolution);
screen_controls.h 14 // Used to change the screen resolution (both dimensions and DPI).
19 // Attempts to set new screen resolution in the session.
20 virtual void SetScreenResolution(const ScreenResolution& resolution) = 0;
desktop_session_connector.h 30 const ScreenResolution& resolution,
38 // Changes the screen resolution of the desktop session.
41 const ScreenResolution& resolution) = 0;
screen_resolution_unittest.cc 29 ScreenResolution resolution(
33 resolution.ScaleDimensionsToDpi(webrtc::DesktopVector(5, 5))));
36 resolution.ScaleDimensionsToDpi(webrtc::DesktopVector(20, 20))));
40 ScreenResolution resolution(
45 resolution.ScaleDimensionsToDpi(
desktop_session.h 22 // Changes the screen resolution of the desktop session.
23 virtual void SetScreenResolution(const ScreenResolution& resolution) = 0;
ipc_screen_controls.h 24 virtual void SetScreenResolution(const ScreenResolution& resolution) OVERRIDE;
daemon_process_unittest.cc 46 const ScreenResolution& resolution) OVERRIDE {}
62 const ScreenResolution& resolution,
101 const ScreenResolution& resolution,
233 ScreenResolution resolution; local
236 ChromotingNetworkHostMsg_ConnectTerminal(id, resolution, false)));
254 ScreenResolution resolution; local
257 ChromotingNetworkHostMsg_ConnectTerminal(id, resolution, false)));
278 ScreenResolution resolution; local
281 ChromotingNetworkHostMsg_ConnectTerminal(id, resolution, false)));
330 ScreenResolution resolution; local
    [all...]
resizing_host_observer.h 35 virtual void SetScreenResolution(const ScreenResolution& resolution) OVERRIDE;
client_session.cc 102 const protocol::ClientResolution& resolution) {
106 if (!resolution.has_dips_width() || !resolution.has_dips_height() ||
107 resolution.dips_width() < 0 || resolution.dips_height() < 0 ||
108 resolution.width() <= 0 || resolution.height() <= 0) {
114 << resolution.dips_width() << ", dips_height="
115 << resolution.dips_height() << ")";
121 webrtc::DesktopSize(resolution.dips_width(), resolution.dips_height())
    [all...]
  /external/doclava/src/com/google/doclava/
Resolvable.java 23 * <p>This interface provides a standard means of saving {@link Resolution}s that we will
25 * {@link addResolution(Resolution)} method.
32 * Adds a {@link Resolution} that will be resolved at a later time.
33 * @param resolution The {@link Resolution} to resolve at a later time.
35 public void addResolution(Resolution resolution);
38 * Resolves the {@link Resolution}s contained in this {@link Resolvable}.
45 * Prints the list of {@link Resolution}s that will be resolved at a later time.
AnnotationInstanceInfo.java 26 private ArrayList<Resolution> mResolutions;
84 public void addResolution(Resolution resolution) {
86 mResolutions = new ArrayList<Resolution>();
89 mResolutions.add(resolution);
94 for (Resolution r : mResolutions) {
100 ArrayList<Resolution> resolutions = mResolutions;
101 mResolutions = new ArrayList<Resolution>();
104 for (Resolution resolution : resolutions)
    [all...]
AnnotationValueInfo.java 25 private ArrayList<Resolution> mResolutions;
90 public void addResolution(Resolution resolution) {
92 mResolutions = new ArrayList<Resolution>();
95 mResolutions.add(resolution);
100 for (Resolution r : mResolutions) {
106 ArrayList<Resolution> resolutions = mResolutions;
107 mResolutions = new ArrayList<Resolution>();
110 for (Resolution resolution : resolutions)
    [all...]
  /ndk/tests/device/issue39680-chrono-resolution/jni/
Android.mk 4 LOCAL_MODULE := issue39680-chrono-resolution
5 LOCAL_SRC_FILES := issue39680-chrono-resolution.cpp
  /external/chromium_org/ash/display/
resolution_notification_controller_unittest.cc 114 // Changes the resolution and apply the result.
119 gfx::Size resolution; local
121 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
122 EXPECT_EQ("200x200", resolution.ToString());
124 // Click the revert button, which reverts the resolution.
130 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
131 EXPECT_EQ("150x150", resolution.ToString());
145 // Changes the resolution and apply the result.
150 gfx::Size resolution; local
152 display_manager->GetSelectedResolutionForDisplayId(id2, &resolution));
183 gfx::Size resolution; local
218 gfx::Size resolution; local
247 gfx::Size resolution; local
272 gfx::Size resolution; local
291 gfx::Size resolution; local
    [all...]
  /external/chromium_org/cc/resources/
tile_priority.h 41 TileResolution resolution);
45 : resolution(NON_IDEAL_RESOLUTION),
50 TilePriority(TileResolution resolution,
53 : resolution(resolution),
59 if (active.resolution == HIGH_RESOLUTION ||
60 pending.resolution == HIGH_RESOLUTION)
61 resolution = HIGH_RESOLUTION;
62 else if (active.resolution == LOW_RESOLUTION ||
63 pending.resolution == LOW_RESOLUTION
118 TileResolution resolution; member in struct:cc::TilePriority
    [all...]
prioritized_tile_set.cc 27 if (ams.resolution != bms.resolution)
28 return ams.resolution < bms.resolution;
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui_util.h 29 // aggregate, and |resolution| is the time distance between aggregated points.
35 const base::TimeDelta& resolution);
44 // |time_end| represent the interval to aggregate, and |resolution| is the
52 const base::TimeDelta& resolution) = 0;
64 const base::TimeDelta& resolution) OVERRIDE;
75 const base::TimeDelta& resolution) OVERRIDE;
86 const base::TimeDelta& resolution) OVERRIDE;
105 // integer multiple of |resolution| away from |start| and data points are
117 const base::TimeDelta& resolution,
performance_monitor_ui_util.cc 43 const base::TimeDelta& resolution) {
64 resolution));
76 const base::TimeDelta& resolution) {
92 const base::TimeDelta& resolution) {
101 (*metric)->time < window_start + resolution) {
108 window_start + resolution,
111 window_start += resolution;
123 const base::TimeDelta& resolution) {
129 int64 window_offset = ((*metric)->time - time_start) / resolution;
130 base::Time window_start = time_start + (window_offset * resolution);
    [all...]
  /external/chromium_org/printing/
print_settings_initializer_mac.cc 37 // Resolution indexes are 1-based.
39 PMResolution resolution; local
40 PMPrinterGetIndexedPrinterResolution(printer, i, &resolution);
41 if (resolution.hRes > best_resolution.hRes)
42 best_resolution = resolution;
  /external/chromium_org/remoting/protocol/
host_stub.h 31 virtual void NotifyClientResolution(const ClientResolution& resolution) = 0;
  /external/sonivox/arm-wt-22k/lib_src/
eas_tcdata.h 50 EAS_I32 tick; /* tick based on current tempo and resolution */
58 EAS_I8 resolution; /* resolution from file */ member in struct:__anon28199
  /external/chromium_org/v8/test/webkit/fast/js/kde/
encode_decode_uri.js 27 var resolution = 251; // set to 1 for 100% coverage variable
79 for (var charcode = 1; charcode < 0xD7FF; charcode += resolution)
82 for (var charcode = 0xE001; charcode < 0xFFFD; charcode += resolution)
85 for (var charcode = 0xDC01; charcode < 0xDFFF; charcode += resolution)
88 for (var charcode = 0xD801; charcode < 0xDBFF; charcode += resolution)
91 for (var charcode = 0xDC01; charcode < 0xDFFF; charcode += resolution)
94 for (var charcode = 1; charcode < 0xDBFF; charcode += resolution)
97 for (var charcode = 0xE001; charcode < 0xFFFD; charcode += resolution)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
timer.h 37 #define SNDRV_TIMER_HW_SLAVE 0x00000004 /* only slave timer (variable resolution) */
58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member in struct:snd_timer_hardware
59 unsigned long resolution_min; /* minimal resolution */
60 unsigned long resolution_max; /* maximal resolution */
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member in struct:snd_timer_instance
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
timer.h 37 #define SNDRV_TIMER_HW_SLAVE 0x00000004 /* only slave timer (variable resolution) */
58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member in struct:snd_timer_hardware
59 unsigned long resolution_min; /* minimal resolution */
60 unsigned long resolution_max; /* maximal resolution */
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member in struct:snd_timer_instance
  /external/chromium_org/chrome/browser/resources/performance_monitor/
chart.js 14 // Prior 15 min, resolution of 15 seconds.
18 // Prior hour, resolution of 1 minute.
23 // Prior day, resolution of 24 min.
28 // Prior week, resolution of 2.8 hours (168 min).
33 // Prior month (30 days), resolution of 12 hours.
38 // Prior quarter (90 days), resolution of 36 hours.
88 * Number of time resolution periods to wait between automated update of
121 /** Information regarding a certain time resolution option, including an
123 * |now|, data point resolution in milliseconds, and time-label frequency
217 * resolution: PerformanceMonitor.TimeResolutio
    [all...]

Completed in 2027 milliseconds

1 2 3 4 5 6 7 8 910