Searched defs:DEFAULT (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DXfermode.java32 static final int DEFAULT = PorterDuff.Mode.SRC_OVER.nativeInt; field in class:Xfermode
33 int porterDuffMode = DEFAULT;
H A DTypeface.java83 public static final Typeface DEFAULT; field in class:Typeface
211 byteArraySet.add(Base64.decode(certSet.get(j), Base64.DEFAULT));
221 return typeface == null ? DEFAULT : typeface;
996 DEFAULT = create((String) null, 0);
1003 DEFAULT,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextAlignment.java30 DEFAULT(0x3); enum constant in enum:TextAlignment
/frameworks/base/media/java/android/media/
H A DVolumePolicy.java26 public static final VolumePolicy DEFAULT = new VolumePolicy(false, false, true, 400); field in class:VolumePolicy
H A DMediaRecorder.java208 public static final int DEFAULT = 0; field in class:MediaRecorder.AudioSource
278 * {@link #DEFAULT} otherwise. */
311 case AudioSource.DEFAULT:
336 public static final int DEFAULT = 0; field in class:MediaRecorder.VideoSource
365 public static final int DEFAULT = 0; field in class:MediaRecorder.OutputFormat
410 public static final int DEFAULT = 0; field in class:MediaRecorder.AudioEncoder
434 public static final int DEFAULT = 0; field in class:MediaRecorder.VideoEncoder
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsAccess.java50 Level.DEFAULT,
64 int DEFAULT = 0; field in interface:NetworkStatsAccess.Level
138 return NetworkStatsAccess.Level.DEFAULT;
164 case NetworkStatsAccess.Level.DEFAULT:
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSecureSetting.java29 private static final int DEFAULT = 0; field in class:SecureSetting
36 private int mObservedValue = DEFAULT;
48 return Secure.getIntForUser(mContext.getContentResolver(), mSettingName, DEFAULT, mUserId);
65 mObservedValue = DEFAULT;
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DBatteryPreference.java33 private static final String DEFAULT = "default"; field in class:BatteryPreference
45 setEntryValues(new CharSequence[] {PERCENT, DEFAULT, DISABLED });
76 setValue(DEFAULT);
H A DClockPreference.java29 private static final String DEFAULT = "default"; field in class:ClockPreference
43 setEntryValues(new CharSequence[] { SECONDS, DEFAULT, DISABLED });
77 setValue(DEFAULT);
/frameworks/compile/mclinker/include/mcld/Script/
H A DAssignment.h33 enum Type { DEFAULT, HIDDEN, PROVIDE, PROVIDE_HIDDEN }; enumerator in enum:mcld::Assignment::Type
/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.h123 static CommandOptions DEFAULT; member in class:android::os::dumpstate::CommandOptions
164 const CommandOptions& options = CommandOptions::DEFAULT);
/frameworks/base/core/java/android/text/
H A DAutoText.java53 private static final int DEFAULT = 14337; // Size of the Trie 13 Aug 2007 field in class:AutoText
164 mTrie = new char[DEFAULT];
/frameworks/base/drm/java/android/drm/
H A DDrmStore.java167 public static final int DEFAULT = 0x00; field in class:DrmStore.Action
201 case DEFAULT:
/frameworks/support/compat/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java125 * @deprecated Use {@link AccessibilityServiceInfo#DEFAULT} directly.
128 public static final int DEFAULT = AccessibilityServiceInfo.DEFAULT; field in class:AccessibilityServiceInfoCompat
378 * {@link AccessibilityServiceInfo#DEFAULT} is represented by the
379 * string DEFAULT.
386 case AccessibilityServiceInfo.DEFAULT:
387 return "DEFAULT";
/frameworks/base/core/java/android/util/
H A DBase64.java31 public static final int DEFAULT = 0; field in class:Base64
112 * Pass {@code DEFAULT} to decode standard Base64.
130 * Pass {@code DEFAULT} to decode standard Base64.
150 * Pass {@code DEFAULT} to decode standard Base64.
451 * Passing {@code DEFAULT} results in output that
472 * Passing {@code DEFAULT} results in output that
490 * Passing {@code DEFAULT} results in output that
506 * Passing {@code DEFAULT} results in output that
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/models/
H A DCard.java120 DEFAULT, enum constant in enum:Card.Type
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/models/
H A DCard.java120 DEFAULT, enum constant in enum:Card.Type
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DShadowOverlayHelper.java78 private Options options = Options.DEFAULT;
195 public static final Options DEFAULT = new Options(); field in class:ShadowOverlayHelper.Options
/frameworks/av/include/drm/
H A Ddrm_framework_common.h160 static const int DEFAULT = 0x00; member in class:android::Action
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java40 private static final String DEFAULT = "default="; field in class:LayoutParserWrapper
199 int i = returnValue.lastIndexOf(DEFAULT);
200 return i > 0 ? returnValue.substring(i + DEFAULT.length(), returnValue.length() - 1)
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java175 public static final int DEFAULT = 0x0000001; field in class:AccessibilityServiceInfo
383 * @see #DEFAULT
950 * {@link #DEFAULT} is represented by the string DEFAULT.
957 case DEFAULT:
958 return "DEFAULT";
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java286 public static final CaptionStyle DEFAULT; field in class:CaptioningManager.CaptionStyle
515 DEFAULT = WHITE_ON_BLACK;
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java72 private static final Object DEFAULT = new Object(); field in class:LockSettingsStorage
167 Object result = DEFAULT;
179 return result == DEFAULT ? defaultValue : (String) result;
595 return cached == DEFAULT ? defaultValue : (String) cached;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java56 @IntDef({LARGE, DEFAULT})
62 static final int DEFAULT = 1; field in class:MaterialProgressDrawable
125 updateSizes(DEFAULT);
149 * {@link MaterialProgressDrawable.DEFAULT}
H A DSwipeRefreshLayout.java71 public static final int DEFAULT = MaterialProgressDrawable.DEFAULT; field in class:SwipeRefreshLayout
294 * One of DEFAULT, or LARGE.
297 if (size != MaterialProgressDrawable.LARGE && size != MaterialProgressDrawable.DEFAULT) {

Completed in 950 milliseconds

12