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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/fast/js/
Promise-resolve-chain-expected.txt 1 Test chained Promise 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
154 // If the implementation returns any resolutions, pick the best one according
156 std::list<ScreenResolution> resolutions = local
158 if (resolutions.empty())
160 CandidateResolution best_candidate(resolutions.front(), resolution);
161 for (std::list<ScreenResolution>::const_iterator i = ++resolutions.begin();
162 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 95 System.out.println("Resolutions for Annotation:");
102 ArrayList<Resolution> resolutions = mResolutions; local
106 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) {
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 178 Vector<int32_t> *resolutions = mOutputResolutions.editValueAt(index); local
179 resolutions->add(width);
180 resolutions->add(height);
190 ALOGV("Getting resolutions for format %x", format);
196 Vector<int32_t>* resolutions = mOutputResolutions.valueAt(index); local
197 *list = resolutions->array();
198 *count = resolutions->size();
203 Vector<int32_t>* resolutions = mOutputResolutions.editValueAt(i); local
204 delete resolutions;
  /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...]
  /external/chromium_org/third_party/webrtc/modules/video_capture/android/
device_info_android.cc 28 // Helper for storing lists of pairs of ints. Used e.g. for resolutions & FPS
47 IntPairs resolutions; // Pairs are: (width,height). member in struct:webrtc::videocapturemodule::AndroidCameraInfo
56 << ", orientation: " << orientation << ", resolutions: ["
57 << IntPairsToString(resolutions, 'x') << "]";
132 info.resolutions.push_back(std::make_pair(
204 for (size_t i = 0; i < info->resolutions.size(); ++i) {
206 const IntPair& size = info->resolutions[i];
  /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.
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
IPControlsJB.java 70 public enum Resolutions {
80 private Resolutions(int w, int h, String s) {
91 private Resolutions mRes;
103 mResSpinner.setAdapter(new ArrayAdapter<Resolutions>(
104 this, R.layout.spinner_layout, Resolutions.values()));
111 for (int ct=0; ct < Resolutions.values().length; ct++) {
112 if (Resolutions.values()[ct].width <= (int)(md * 1.2)) {
125 mRes = Resolutions.values()[pos];
  /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 36 // 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.
synced_notification_app_info_specifics.proto 54 // A repeated set of icons of different resolutions and types.
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsUtil.java 66 * SIZE_SMALL as well as resolutions separated by an x i.e. "1024x576" <br/>
156 * @param supported The list of supported resolutions.
176 * @param supported The list of supported resolutions.
190 * supported resolutions, this method selects and returns the best matching
195 * @param supported The list of supported resolutions.
207 * Based on the list of supported resolutions, this method selects the ones
262 // If we have at least two more resolutions that match the 'large'
268 // Edge cases: If there are no further supported resolutions, use the
279 Log.w(TAG, "Only two supported resolutions.");
283 Log.w(TAG, "Exactly three supported resolutions.")
    [all...]
  /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/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
pi.c 88 * @param p_max_res the maximum number of resolutions for all the poc inside the tile.
89 * @param p_dx_min the minimum dx of all the components of all the resolutions for the tile.
90 * @param p_dy_min the minimum dy of all the components of all the resolutions for the tile.
114 * @param p_max_res the maximum number of resolutions for all the poc inside the tile.
115 * @param p_dx_min the minimum dx of all the components of all the resolutions for the tile.
116 * @param p_dy_min the minimum dy of all the components of all the resolutions for the tile.
140 * @param p_max_res pointer that will hold the the maximum number of resolutions for all the poc inside the tile.
141 * @param p_dx_min pointer that will hold the the minimum dx of all the components of all the resolutions for the tile.
142 * @param p_dy_min pointer that will hold the the minimum dy of all the components of all the resolutions for the tile.
171 * @param p_max_res pointer that will hold the the maximum number of resolutions for all the poc inside the tile
    [all...]
  /external/chromium_org/chrome/browser/net/
predictor.h 90 // 8 paralell resolutions, we will avoid any chance of starving navigational
91 // resolutions by limiting the number of paralell speculative resolutions.
102 // mistakenly assuming that the resolutions took too long.
106 // "too large," and indicative of problems with resolutions (perhaps due to
332 // them sooner (relative to some low priority background resolutions).
353 // is only used to identify startup time resolutions (for re-resolution
377 // List of the first N URL resolutions observed in this run.
468 // without bounds, we abandon our queued efforts at pre-resolutions in such a
472 // the resolutions we've already sent off for processing on another thread, s
    [all...]

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 91011>>