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

1 2 3 4 5

  /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) {
Resolution.java 24 * <p>Resolutions contain a Variable and a Value, both of which are set in the Resolution constructor.
TypeInfo.java 373 System.out.println("Resolutions for Type " + mSimpleTypeName + ":");
380 ArrayList<Resolution> resolutions = mResolutions; local
384 for (Resolution resolution : resolutions) {
  /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...]
OverlayFrame.java 210 final Pair<Integer, Integer>[] resolutions; local
211 resolutions = MediaProperties.getSupportedResolutions(nativeHelper.nativeHelperGetAspectRatio());
214 maxResolution = resolutions[resolutions.length - 1];
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/XME/
xme.c 307 XiGMiscResolutionInfo *resolutions; local
328 resolutions = (XiGMiscResolutionInfo*)Xmalloc(size);
329 if (!resolutions) {
336 _XReadPad(dpy, (void*)resolutions, size);
338 *presolutions = 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];
236 IMarkerResolution[] resolutions = aaptQuickFix.getResolutions(marker); local
237 assertNotNull(resolutions);
238 assertEquals(1, resolutions.length);
239 IMarkerResolution resolution = resolutions[0];
  /external/qemu-pc-bios/
README 32 - added HDTV resolutions (patch by Tristan Schmelcher)
  /external/chromium/chrome/browser/net/
predictor_api.cc 47 // 8 paralell resolutions, we will avoid any chance of starving navigational
48 // resolutions by limiting the number of paralell speculative resolutions.
54 // resolutions are "taking too long," we need an expected resolution time.
64 // assuming that the resolutions took too long.
68 // and indicative of problems with resolutions (perhaps due to an overloaded
82 // the network stack. This is only used to identify startup time resolutions
104 // List of the first N URL resolutions observed in this run.
218 // well as recording what prefetched hostname resolutions might be potentially
244 // resolutions. We use the following type for that map
    [all...]
predictor.h 159 // them sooner (relative to some low priority background resolutions).
248 // without bounds, we abandon our queued efforts at pre-resolutions in such a
252 // the resolutions we've already sent off for processing on another thread, so
254 // will greatly reduce the number of resolutions done, but it will assure that
255 // any resolutions that are done, are in a timely and hence potentially
295 // sub-resource speculation, and retard resolutions suggested by page scans.
299 // reduction mode, and discard all queued (but not yet assigned) resolutions.
url_info_unittest.cc 86 // DNS resolutions, and bogging down the system. When we detect such a
  /frameworks/base/docs/html/guide/practices/design/
seamlessness.jd 15 <li><a href="#flexui">Design Your UI to Work with Multiple Screen Resolutions</a></li>
176 <h2 id="flexui">Design Your UI to Work with Multiple Screen Resolutions</h2>
178 <p>Different Android-powered devices will support different screen resolutions.
179 Some will even be able to change resolutions on the fly, such as by switching
185 resolutions, and then design your layout to accommodate various dimensions.
  /external/chromium/net/base/
host_resolver_proc.h 19 // to control the underlying resolutions in HostResolverImpl. HostResolverProcs
mock_host_resolver.h 46 // Controls whether resolutions complete synchronously or asynchronously.
  /external/freetype/include/freetype/
ftpfr.h 58 * Return the outline and metrics resolutions of a given PFR face.
  /external/webkit/Source/WebCore/manual-tests/
window-sizing.html 100 <p style="color:red">NOTE: Make sure to test at magnified resolutions.</p>
  /external/quake/quake/src/QW/client/
gl_vidlinux.c 475 static resolutions[NUM_RESOLUTIONS][3]={ variable
486 if((*width<=resolutions[i][0]) && (*height<=resolutions[i][1])) {
487 *width = resolutions[i][0];
488 *height = resolutions[i][1];
489 return resolutions[i][2];
gl_vidlinux_svga.c 513 static resolutions[NUM_RESOLUTIONS][3]={ variable
524 if((*width<=resolutions[i][0]) && (*height<=resolutions[i][1])) {
525 *width = resolutions[i][0];
526 *height = resolutions[i][1];
527 return resolutions[i][2];
  /external/quake/quake/src/WinQuake/
gl_vidlinux.cpp 484 static int resolutions[NUM_RESOLUTIONS][3]={ variable
508 if((*width<=resolutions[i][0]) && (*height<=resolutions[i][1])) {
509 *width = resolutions[i][0];
510 *height = resolutions[i][1];
511 return resolutions[i][2];
  /external/quake/quake/src/WinQuake/docs/
readme.glquake 50 Only highend VooDoo cards support such high resolutions (most
65 resolutions to become unreadable. If do you wish to have a higher resolution
  /frameworks/base/docs/html/sdk/
android-1.6-highlights.jd 181 <h3 id="Screens">Expanded support for screen densities and resolutions</h3>
184 display resolutions and densities. Developers can also specify the types of screens supported by their
  /external/chromium/net/spdy/
spdy_session_pool.h 116 // which share IP address resolutions.
  /frameworks/base/docs/html/guide/practices/ui_guidelines/
icon_design.jd 134 screen sizes and resolutions. When you design the icons for your application,
268 boundaries at smaller resolutions.</li>

Completed in 319 milliseconds

1 2 3 4 5