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

  /sdk/layoutlib_api/src/com/android/layoutlib/api/
IDensityBasedResourceValue.java 22 * Represents an Android Resources that has a density info attached to it.
29 * Density.
31 * @deprecated use {@link com.android.resources.Density}.
34 public static enum Density {
43 Density(int value) {
52 * Returns the enum matching the given density value
53 * @param value The density value.
54 * @return the enum for the density value or null if no match was found.
56 public static Density getEnum(int value) {
57 for (Density d : values())
    [all...]
  /sdk/common/src/com/android/resources/
Density.java 21 * Density enum.
23 * as well as other places needing to know the density values.
25 public enum Density implements ResourceEnum {
26 XHIGH("xhdpi", "X-High Density", 320, 8), //$NON-NLS-1$
27 HIGH("hdpi", "High Density", 240, 4), //$NON-NLS-1$
28 TV("tvdpi", "TV Density", 213, 13), //$NON-NLS-1$
29 MEDIUM("mdpi", "Medium Density", 160, 4), //$NON-NLS-1$
30 LOW("ldpi", "Low Density", 120, 4), //$NON-NLS-1$
31 NODPI("nodpi", "No Density", 0, 4); //$NON-NLS-1$
40 private Density(String value, String displayValue, int density, int since)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 113 LVM_UINT16 Density; /* Echo density, 0 to 100 for minimum to maximum density */
  /frameworks/native/services/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 171 class Density {
174 int density = 0; local
176 density = atoi(property);
178 return density;
188 // The density of the device is provided by a build property
189 mDensity = Density::getBuildDensity() / 160.0f;
192 // the build doesn't provide a density -- this is wrong!
198 if (Density::getEmuDensity()) {
200 mDpiX = mDpiY = mDensity = Density::getEmuDensity();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 52 import com.android.resources.Density;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 43 import com.android.resources.Density;
187 * Implementation of {@link VerifyListener} for the Density qualifier.
214 * For instance {@link Density#NODPI} is a valid qualifier for a resource configuration but
    [all...]
  /prebuilt/common/tools-common/
tools-common-prebuilt.jar 
  /prebuilt/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /external/mesa3d/src/mesa/main/
mtypes.h 841 GLfloat Density; /**< Density >= 0.0 */
    [all...]

Completed in 1349 milliseconds