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

1 2

  /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.
Resolution.java 20 * Resolution stores information about a Java type
24 * <p>Resolutions contain a Variable and a Value, both of which are set in the Resolution constructor.
25 * Public accessors {@link Resolution#getVariable()} and {@link Resolution#getValue()} exist to
31 * <p>Values are the value to which the variable contained within this {@link Resolution} refers.
33 * In this scenario, the AlertDialog class would have a {@link Resolution} that
36 public class Resolution {
42 * Creates a new resolution with variable and value.
45 * @param value The value to which the variable contained within this {@link Resolution} refers.
46 * @param builder The InfoBuilder that is building the file in which the Resolution exists
    [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...]
AnnotationInstanceInfo.java 28 private ArrayList<Resolution> mResolutions;
86 public void addResolution(Resolution resolution) {
88 mResolutions = new ArrayList<Resolution>();
91 mResolutions.add(resolution);
96 for (Resolution r : mResolutions) {
102 ArrayList<Resolution> resolutions = mResolutions;
103 mResolutions = new ArrayList<Resolution>();
106 for (Resolution resolution : resolutions)
    [all...]
TypeInfo.java 406 public void addResolution(Resolution resolution) {
408 mResolutions = new ArrayList<Resolution>();
411 mResolutions.add(resolution);
420 for (Resolution r : mResolutions) {
426 ArrayList<Resolution> resolutions = mResolutions;
427 mResolutions = new ArrayList<Resolution>();
430 for (Resolution resolution : resolutions) {
431 if ("class".equals(resolution.getVariable()))
    [all...]
MethodInfo.java 706 private ArrayList<Resolution> mResolutions;
854 for (Resolution r : mResolutions) {
859 public void addResolution(Resolution resolution) {
861 mResolutions = new ArrayList<Resolution>();
864 mResolutions.add(resolution);
868 ArrayList<Resolution> resolutions = mResolutions;
869 mResolutions = new ArrayList<Resolution>();
872 for (Resolution resolution : resolutions)
    [all...]
InfoBuilder.java 487 // if ClassInfo is null, we need to add a resolution
526 // if ClassInfo is null, we need to add a resolution
860 // can't add the resolution until the TypeInfo has been created
    [all...]
ClassInfo.java     [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/utility/
quality_scaler.h 21 struct Resolution {
33 Resolution GetScaledResolution(const I420VideoFrame& frame);
quality_scaler.cc 44 QualityScaler::Resolution QualityScaler::GetScaledResolution(
59 Resolution res;
76 Resolution res = GetScaledResolution(frame);
quality_scaler_unittest.cc 63 QualityScaler::Resolution res = qs_.GetScaledResolution(input_frame_);
82 QualityScaler::Resolution res = qs_.GetScaledResolution(input_frame_);
89 QualityScaler::Resolution res = qs_.GetScaledResolution(input_frame_);
135 QualityScaler::Resolution res = qs_.GetScaledResolution(input_frame_);
146 QualityScaler::Resolution res = qs_.GetScaledResolution(input_frame_);
  /external/aac/libAACdec/src/
aacdec_tns.h 111 SCHAR Resolution;
aacdec_tns.cpp 195 filter->Resolution = coef_res + 3;
202 coef = (UCHAR) FDKreadBits(bs,filter->Resolution - coef_compress);
362 if (filter->Resolution == 3)
  /development/samples/ApiDemos/src/com/example/android/apis/media/projection/
MediaProjectionDemo.java 49 private static final List<Resolution> RESOLUTIONS = new ArrayList<Resolution>() {{
50 add(new Resolution(640,360));
51 add(new Resolution(960,540));
52 add(new Resolution(1366,768));
53 add(new Resolution(1600,900));
83 ArrayAdapter<Resolution> arrayAdapter = new ArrayAdapter<Resolution>(
167 Resolution r = (Resolution) parent.getItemAtPosition(pos)
    [all...]
  /frameworks/base/core/java/android/print/
PrinterCapabilitiesInfo.java 23 import android.print.PrintAttributes.Resolution;
56 private List<Resolution> mResolutions;
102 mResolutions = new ArrayList<Resolution>(other.mResolutions);
130 public List<Resolution> getResolutions() {
329 mResolutions = new ArrayList<Resolution>();
332 mResolutions.add(Resolution.createFromParcel(parcel));
419 * Adds a supported resolution.
424 * @param resolution A resolution.
431 * @see PrintAttributes.Resolution
    [all...]
PrintAttributes.java 36 * letter size with 300 DPI (dots per inch) resolution, have a margin of
49 private Resolution mResolution;
60 mResolution = (parcel.readInt() == 1) ? Resolution.createFromParcel(parcel) : null;
86 * Gets the resolution.
88 * @return The resolution or <code>null</code> if not set.
90 public Resolution getResolution() {
95 * Sets the resolution.
97 * @param The resolution.
101 public void setResolution(Resolution resolution) {
    [all...]
  /external/smack/src/org/xbill/DNS/
ExtendedResolver.java 19 private static class Resolution implements ResolverListener {
32 Resolution(ExtendedResolver eres, Message query) {
80 /* Start a synchronous resolution */
131 /* Start an asynchronous resolution */
139 * Receive a response. If the resolution hasn't been completed,
161 * Receive an exception. If the resolution has been completed,
357 Resolution res = new Resolution(this, query);
373 Resolution res = new Resolution(this, query)
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
PrintDocumentAdapterContractTest.java 31 import android.print.PrintAttributes.Resolution;
142 .setResolution(new Resolution("PDF resolution", "PDF resolution", 300, 300))
160 .setResolution(new Resolution("300x300", "300x300", 300, 300))
255 .setResolution(new Resolution("PDF resolution", "PDF resolution", 300, 300))
376 .setResolution(new Resolution("PDF resolution", "PDF resolution", 300, 300)
    [all...]
PrinterDiscoverySessionLifecycleTest.java 26 import android.print.PrintAttributes.Resolution;
372 .addResolution(new Resolution("300x300", "300x300", 300, 300), true)
PageRangeAdjustmentTest.java 28 import android.print.PrintAttributes.Resolution;
655 .addResolution(new Resolution("300x300", "300x300", 300, 300), true)
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 11 import android.print.PrintAttributes.Resolution;
147 .addResolution(new Resolution("R1", getPackageName(),
179 .addResolution(new Resolution("R1", getPackageName(),
181 .addResolution(new Resolution("R2", getPackageName(),
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]
  /packages/experimental/PrintService/src/foo/bar/printservice/
MyPrintService.java 29 import android.print.PrintAttributes.Resolution;
387 .addResolution(new Resolution("R1", getString(
389 .addResolution(new Resolution("R2", getString(
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
PrintingControllerTest.java 101 .setResolution(new PrintAttributes.Resolution("foo", "bar", 300, 300))
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintActivity.java 44 import android.print.PrintAttributes.Resolution;
738 // Take the resolution only if the current printer supports is.
739 Resolution oldResolution = currAttributes.getResolution();
740 Resolution newResolution = newAttributes.getResolution();
744 List<Resolution> resolutions = capabilities.getResolutions();
747 Resolution resolution = resolutions.get(i); local
748 if (resolution.equals(newResolution)) {
749 currAttributes.setResolution(resolution);
989 Resolution resolution = attributes.getResolution(); local
    [all...]

Completed in 584 milliseconds

1 2