HomeSort by relevance Sort by last modified time
    Searched defs:resolutions (Results 1 - 20 of 20) sorted by null

  /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...]
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) {
  /external/doclava/src/com/google/doclava/
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) {
TypeInfo.java 419 System.out.println("Resolutions for Type " + mSimpleTypeName + ":");
426 ArrayList<Resolution> resolutions = mResolutions; local
430 for (Resolution resolution : resolutions) {
MethodInfo.java 852 System.out.println("Resolutions for Method " + mName + mFlatSignature + ":");
868 ArrayList<Resolution> resolutions = mResolutions; local
872 for (Resolution resolution : resolutions) {
ClassInfo.java 2293 ArrayList<Resolution> resolutions = mResolutions; local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
pi.h 67 opj_pi_resolution_t *resolutions; member in struct:opj_pi_comp
tcd.h 159 OPJ_UINT32 numresolutions; /* number of resolutions level */
160 OPJ_UINT32 minimum_num_resolutions; /* number of resolutions level to decode (at max)*/
161 opj_tcd_resolution_t *resolutions; /* resolutions information */ member in struct:opj_tcd_tilecomp
162 OPJ_UINT32 resolutions_size; /* size of data for resolutions (in bytes) */
  /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...]
AddSuppressAnnotation.java 141 // and besides we don't want to keep offering marker resolutions on this
304 * Adds any applicable suppress lint fix resolutions into the given list
308 * @param resolutions a list to add the created resolutions into, if any
311 List<IMarkerResolution> resolutions) {
407 resolutions.add(new AddSuppressAnnotation(id, marker, declaration, desc, null));
418 resolutions.add(new AddSuppressAnnotation(id, marker, declaration, desc,
  /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];
  /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;
camera2.cpp 270 Vector<int32_t> *resolutions = mOutputResolutions.editValueAt(index); local
271 resolutions->add(width);
272 resolutions->add(height);
280 Vector<int32_t>* resolutions = mOutputResolutions.editValueAt(i); local
281 delete resolutions;
290 ALOGV("Getting resolutions for format %x", format);
328 Vector<int32_t>* resolutions = mOutputResolutions.valueAt(index); local
329 *list = resolutions->array();
330 *count = resolutions->size();
  /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/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;
  /packages/apps/Camera2/src/com/android/camera/settings/
CameraSettingsActivity.java 101 // Selected resolutions for the different cameras and sizes.
220 PreferenceGroup resolutions = local
223 recursiveDelete(resolutions,
225 recursiveDelete(resolutions,
229 recursiveDelete(resolutions,
231 recursiveDelete(resolutions,
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintActivity.java 744 List<Resolution> resolutions = capabilities.getResolutions(); local
745 final int resolutionCount = resolutions.size();
747 Resolution resolution = resolutions.get(i);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 529 milliseconds