HomeSort by relevance Sort by last modified time
    Searched refs:Resolution (Results 1 - 25 of 32) 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...]
AnnotationInstanceInfo.java 26 private ArrayList<Resolution> mResolutions;
84 public void addResolution(Resolution resolution) {
86 mResolutions = new ArrayList<Resolution>();
89 mResolutions.add(resolution);
94 for (Resolution r : mResolutions) {
100 ArrayList<Resolution> resolutions = mResolutions;
101 mResolutions = new ArrayList<Resolution>();
104 for (Resolution resolution : resolutions)
    [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...]
TypeInfo.java 360 public void addResolution(Resolution resolution) {
362 mResolutions = new ArrayList<Resolution>();
365 mResolutions.add(resolution);
374 for (Resolution r : mResolutions) {
380 ArrayList<Resolution> resolutions = mResolutions;
381 mResolutions = new ArrayList<Resolution>();
384 for (Resolution resolution : resolutions) {
385 if ("class".equals(resolution.getVariable()))
    [all...]
MethodInfo.java 685 private ArrayList<Resolution> mResolutions;
833 for (Resolution r : mResolutions) {
838 public void addResolution(Resolution resolution) {
840 mResolutions = new ArrayList<Resolution>();
843 mResolutions.add(resolution);
847 ArrayList<Resolution> resolutions = mResolutions;
848 mResolutions = new ArrayList<Resolution>();
851 for (Resolution resolution : resolutions)
    [all...]
ClassInfo.java     [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...]
  /external/chromium_org/ash/display/
display_util_x11.h 20 struct Resolution;
28 // Returns the resolution list.
29 ASH_EXPORT std::vector<Resolution> GetResolutionList(
display_util_x11.cc 29 // Resolution list are sorted by the area in pixels and the larger
32 bool operator()(const Resolution& a, const Resolution& b) {
57 std::vector<Resolution> GetResolutionList(
60 typedef std::map<std::pair<int,int>, Resolution> ResolutionMap;
76 // Add new resolution if it's new size or override interlaced mode.
80 Resolution(gfx::Size(info->width, info->height), interlaced)));
86 std::vector<Resolution> resolution_list;
display_info.h 20 // A struct that represents the display's resolution and
22 struct ASH_EXPORT Resolution {
23 Resolution(const gfx::Size& size, bool interlaced);
127 const std::vector<Resolution>& resolutions() const {
130 void set_resolutions(std::vector<Resolution>& resolution) {
131 resolutions_.swap(resolution);
161 std::vector<Resolution> resolutions_;
display_info.cc 25 Resolution::Resolution(const gfx::Size& size, bool interlaced)
225 std::vector<Resolution>::const_iterator iter = resolutions_.begin();
display_util_x11_unittest.cc 73 std::vector<Resolution> resolutions =
display_change_observer_x11.cc 81 gfx::Size resolution; local
83 GetSelectedResolutionForDisplayId(display_id, &resolution)) {
87 *width = resolution.width();
88 *height = resolution.height();
150 std::vector<Resolution> resolutions;
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
UniformBinding.java 121 Resolution,
124 * The inverse of the resolution, 1/width and 1/height.
130 * Aspect ratio of the resolution currently set. Width/Height.
  /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)
  /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...]
  /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/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc 58 bool CompareResolution(ash::internal::Resolution r1,
59 ash::internal::Resolution r2) {
193 std::vector<ash::internal::Resolution> resolutions;
208 resolutions.push_back(ash::internal::Resolution(
355 ash::internal::Resolution resolution = display_info.resolutions()[i]; local
356 if (resolution.size == new_resolution)
358 if (resolution.size == old_resolution)
362 LOG(ERROR) << "No new resolution " << new_resolution.ToString()
367 LOG(ERROR) << "No old resolution " << old_resolution.ToString(
    [all...]
  /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(
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintJobConfigActivity.java 52 import android.print.PrintAttributes.Resolution;
1102 Resolution resolution = mCurrPrintAttributes.getResolution(); local
    [all...]

Completed in 1019 milliseconds

1 2