HomeSort by relevance Sort by last modified time
    Searched full:resolutions (Results 1 - 25 of 260) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/ash/display/
display_change_observer_chromeos_unittest.cc 43 std::vector<Resolution> resolutions = local
45 ASSERT_EQ(6u, resolutions.size());
46 EXPECT_EQ("1920x1200", resolutions[0].size.ToString());
47 EXPECT_FALSE(resolutions[0].interlaced);
49 EXPECT_EQ("1920x1080", resolutions[1].size.ToString());
50 EXPECT_FALSE(resolutions[1].interlaced);
52 EXPECT_EQ("1280x720", resolutions[2].size.ToString());
53 EXPECT_FALSE(resolutions[2].interlaced);
55 EXPECT_EQ("1024x768", resolutions[3].size.ToString());
56 EXPECT_TRUE(resolutions[3].interlaced)
    [all...]
display_info_unittest.cc 50 EXPECT_EQ(3u, info.resolutions().size());
51 EXPECT_EQ("300x200", info.resolutions()[0].size.ToString());
52 EXPECT_EQ("200x200", info.resolutions()[1].size.ToString());
53 EXPECT_EQ("100x100", info.resolutions()[2].size.ToString());
display_info.h 38 // [origin-]widthxheight[*device_scale_factor][#resolutions list]
67 // 200x100 window at 0,0 origin, with 3 possible resolutions,
145 const std::vector<Resolution>& resolutions() const { function in class:ash::internal::DisplayInfo
153 // excluding resolutions.
157 // including resolutions.
191 // The list of resolutions supported by this display.
display_change_observer_chromeos.cc 64 // resolutions with non-interlaced ones.
148 std::vector<Resolution> resolutions; local
150 resolutions = GetResolutionList(output);
170 displays.back().set_resolutions(resolutions);
  /external/chromium_org/remoting/host/
desktop_resizer_mac.cc 40 std::list<ScreenResolution>* resolutions);
61 std::list<ScreenResolution> resolutions; local
62 GetSupportedModesAndResolutions(&modes, &resolutions);
63 return resolutions;
73 std::list<ScreenResolution> resolutions; local
74 GetSupportedModesAndResolutions(&modes, &resolutions);
79 for (std::list<ScreenResolution>::const_iterator i = resolutions.begin();
80 i != resolutions.end(); ++i, ++index) {
122 std::list<ScreenResolution>* resolutions) {
146 resolutions->push_back(resolution)
    [all...]
desktop_resizer.h 25 // Get the list of supported resolutions, which should ideally include
27 // 1. Return the list of resolutions supported by the underlying video
37 // resolutions previously returned by |GetSupportedResolutions|. Note that
resizing_host_observer.cc 79 // this does not differentiate between resolutions that don't require
155 // If the implementation returns any resolutions, pick the best one according
157 std::list<ScreenResolution> resolutions = local
159 if (resolutions.empty())
161 CandidateResolution best_candidate(resolutions.front(), resolution);
162 for (std::list<ScreenResolution>::const_iterator i = ++resolutions.begin();
163 i != resolutions.end(); ++i) {
desktop_resizer_win.cc 83 // Enumerate the resolutions to return, and where there are multiple modes of
91 std::list<ScreenResolution> resolutions;
129 resolutions.push_back(candidate_resolution);
135 return resolutions;
screen_resolution.h 35 // Returns true if the dimensions and DPI of the two resolutions match.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CtsTestHelper.java 49 public static String getTestDetails(List<SelectableResolution> resolutions) {
51 for (int i = 0; i < resolutions.size(); i++) {
52 SelectableResolution res = resolutions.get(i);
  /external/doclava/src/com/google/doclava/
Resolvable.java 27 * <p>Additionally, This interface provides a standard means of resolving all resolutions
39 * @return <tt>true</tt> if all resolutions were resolved.
40 * <tt>false</tt> if there are still remaining resolutions.
AnnotationInstanceInfo.java 93 System.out.println("Resolutions for Annotation:");
100 ArrayList<Resolution> resolutions = mResolutions; local
104 for (Resolution resolution : resolutions) {
AnnotationValueInfo.java 99 System.out.println("Resolutions for Annotation Value:");
106 ArrayList<Resolution> resolutions = mResolutions; local
110 for (Resolution resolution : resolutions) {
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc 191 std::vector<ash::internal::Resolution> resolutions; local
206 resolutions.push_back(ash::internal::Resolution(
210 for (size_t i = 0; i < display_info.resolutions().size(); ++i)
211 resolutions.push_back(display_info.resolutions()[i]);
213 std::sort(resolutions.begin(), resolutions.end(), CompareResolution);
218 for (size_t i = 0; i < resolutions.size(); ++i) {
220 gfx::Size resolution = resolutions[i].size;
229 // because |resolutions| is sorted by its area
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
MediaProperties.java 61 * Supported resolutions for specific aspect ratios
338 * Get the supported resolutions for the specified aspect ratio.
340 * @param aspectRatio The aspect ratio for which the resolutions are
345 final Pair<Integer, Integer>[] resolutions; local
348 resolutions = ASPECT_RATIO_3_2_RESOLUTIONS;
353 resolutions = ASPECT_RATIO_4_3_RESOLUTIONS;
358 resolutions = ASPECT_RATIO_5_3_RESOLUTIONS;
363 resolutions = ASPECT_RATIO_11_9_RESOLUTIONS;
368 resolutions = ASPECT_RATIO_16_9_RESOLUTIONS;
384 Pair<Integer, Integer>[] tmpResolutions = new Pair[resolutions.length]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 127 List<IMarkerResolution> resolutions = new ArrayList<IMarkerResolution>(); local
130 AddSuppressAnnotation.createFixes(marker, id, resolutions);
133 resolutions.add(new MoreInfoProposal(id, marker.getAttribute(IMarker.MESSAGE, null)));
134 resolutions.add(new SuppressProposal(resource, id, false));
135 resolutions.add(new SuppressProposal(resource.getProject(), id, true /* all */));
136 resolutions.add(new SuppressProposal(resource, id, true /* all */));
137 resolutions.add(new ClearMarkersProposal(resource, true /* all */));
139 if (resolutions.size() > 0) {
140 return resolutions.toArray(new IMarkerResolution[resolutions.size()])
287 List<IMarkerResolution> resolutions = new ArrayList<IMarkerResolution>(); local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
VideoFormats.h 30 // or sink as outlined in the wfd specs. Currently three sets of resolutions
31 // are specified, each of which supports up to 32 resolutions.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 131 IMarkerResolution[] resolutions = aaptQuickFix.getResolutions(marker); local
132 assertNotNull(resolutions);
133 assertEquals(1, resolutions.length);
134 IMarkerResolution resolution = resolutions[0];
239 IMarkerResolution[] resolutions = aaptQuickFix.getResolutions(marker); local
240 assertNotNull(resolutions);
241 assertEquals(1, resolutions.length);
242 IMarkerResolution resolution = resolutions[0];
  /external/chromium_org/chrome/common/extensions/api/
system_indicator.idl 19 // objects. These objects should have multiple resolutions so that an
  /external/chromium_org/sync/engine/
conflict_resolver.h 35 // Enumeration of different conflict resolutions. Used for histogramming.
  /external/chromium_org/sync/internal_api/public/
configure_reason.h 33 // cryptographer errors/resolutions.
  /external/chromium_org/sync/protocol/
favicon_image_specifics.proto 22 // Image data for favicons. Multiple resolutions are supported.
  /external/chromium_org/chrome/test/functional/
youtube.py 237 """Test various video resolutions."""
239 resolutions = self.ExecuteJavascript("""
243 resolutions = resolutions.split(',')
244 for res in resolutions:
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/XME/
xme.c 312 XiGMiscResolutionInfo *resolutions; local
333 resolutions = (XiGMiscResolutionInfo*)Xmalloc(size);
334 if (!resolutions) {
341 _XReadPad(dpy, (void*)resolutions, size);
343 *presolutions = resolutions;
  /external/chromium_org/chrome/browser/net/
predictor.h 75 // 8 paralell resolutions, we will avoid any chance of starving navigational
76 // resolutions by limiting the number of paralell speculative resolutions.
87 // mistakenly assuming that the resolutions took too long.
91 // "too large," and indicative of problems with resolutions (perhaps due to
317 // them sooner (relative to some low priority background resolutions).
338 // is only used to identify startup time resolutions (for re-resolution
362 // List of the first N URL resolutions observed in this run.
448 // without bounds, we abandon our queued efforts at pre-resolutions in such a
452 // the resolutions we've already sent off for processing on another thread, s
    [all...]

Completed in 844 milliseconds

1 2 3 4 5 6 7 8 91011