Searched defs:UNSPECIFIED (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java35 UNSPECIFIED, enum constant in enum:SettingsCmd.CommandVerb
44 CommandVerb mVerb = CommandVerb.UNSPECIFIED;
74 } else if (mVerb == CommandVerb.UNSPECIFIED) {
/frameworks/base/wifi/java/android/net/wifi/
H A DBatchedScanSettings.java35 public final static int UNSPECIFIED = Integer.MAX_VALUE; field in class:BatchedScanSettings
58 * be specified (may be set to {@link UNSPECIFIED}) by the application and we will try
95 maxScansPerBatch = UNSPECIFIED;
96 maxApPerScan = UNSPECIFIED;
98 scanIntervalSec = UNSPECIFIED;
99 maxApForDistance = UNSPECIFIED;
126 if (maxScansPerBatch != UNSPECIFIED && (maxScansPerBatch < MIN_SCANS_PER_BATCH ||
128 if (maxApPerScan != UNSPECIFIED && (maxApPerScan < MIN_AP_PER_SCAN ||
131 if (scanIntervalSec != UNSPECIFIED && (scanIntervalSec < MIN_INTERVAL_SEC ||
133 if (maxApForDistance != UNSPECIFIED
[all...]
H A DScanResult.java159 * {@link UNSPECIFIED}.
166 * Else {@link UNSPECIFIED}.
174 public final static int UNSPECIFIED = -1; field in class:ScanResult
236 this.distanceCm = UNSPECIFIED;
237 this.distanceSdCm = UNSPECIFIED;
301 sb.append(", distance: ").append((distanceCm != UNSPECIFIED ? distanceCm : "?")).
303 sb.append(", distanceSd: ").append((distanceSdCm != UNSPECIFIED ? distanceSdCm : "?")).
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java32 protected static final int UNSPECIFIED = -1; field in class:BasicTexture
44 protected int mWidth = UNSPECIFIED;
45 protected int mHeight = UNSPECIFIED;
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java271 private static final CaptionStyle UNSPECIFIED; field in class:CaptioningManager.CaptionStyle
479 UNSPECIFIED = new CaptionStyle(COLOR_UNSPECIFIED, COLOR_UNSPECIFIED,
485 WHITE_ON_BLACK, BLACK_ON_WHITE, YELLOW_ON_BLACK, YELLOW_ON_BLUE, UNSPECIFIED
/frameworks/base/core/java/android/view/
H A DView.java428 * <li>UNSPECIFIED: This is used by a parent to determine the desired dimension
430 * with the height set to UNSPECIFIED and a width of EXACTLY 240 to find out how
17707 case MeasureSpec.UNSPECIFIED:
17739 case MeasureSpec.UNSPECIFIED:
19696 * <dt>UNSPECIFIED</dt>
19725 public static final int UNSPECIFIED = 0 << MODE_SHIFT; field in class:View.MeasureSpec
19745 * <li>{@link android.view.View.MeasureSpec#UNSPECIFIED}</li>
19773 * @return {@link android.view.View.MeasureSpec#UNSPECIFIED},
19793 if (mode == UNSPECIFIED) {
19794 // No need to adjust size for UNSPECIFIED mod
[all...]

Completed in 2528 milliseconds