Searched refs:DEFAULT (Results 1 - 25 of 57) sorted by relevance

123

/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/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextAlignment.java30 DEFAULT(0x3); enum constant in enum:TextAlignment
/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/compile/mclinker/lib/Script/
H A DAssignment.cpp50 case DEFAULT:
71 if (type() != DEFAULT)
108 if (!isLhsDot || prevDotAssign.type() == DEFAULT) {
/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.java204 public static final int DEFAULT = 0; field in class:MediaRecorder.AudioSource
223 * {@link #DEFAULT} otherwise. */
228 * if available. It otherwise behaves like {@link #DEFAULT} if no voice processing
285 public static final int DEFAULT = 0; field in class:MediaRecorder.VideoSource
314 public static final int DEFAULT = 0; field in class:MediaRecorder.OutputFormat
359 public static final int DEFAULT = 0; field in class:MediaRecorder.AudioEncoder
383 public static final int DEFAULT = 0; field in class:MediaRecorder.VideoEncoder
H A DAudioRecord.java415 * {@link MediaRecorder.AudioSource#DEFAULT} is used.
443 if ( (source < MediaRecorder.AudioSource.DEFAULT) ||
557 .setInternalCapturePreset(MediaRecorder.AudioSource.DEFAULT)
621 if ( (audioSource < MediaRecorder.AudioSource.DEFAULT) ||
/frameworks/base/services/tests/servicestests/src/com/android/server/updates/
H A DCertPinInstallReceiverTest.java140 byte[] derKey = Base64.decode(TEST_KEY.getBytes(), Base64.DEFAULT);
147 byte[] derCert = Base64.decode(TEST_CERT.getBytes(), Base64.DEFAULT);
167 String sig = new String(Base64.encode(signer.sign(), Base64.DEFAULT));
180 return signer.verify(Base64.decode(signature.getBytes(), Base64.DEFAULT));
/frameworks/compile/mclinker/include/mcld/Script/
H A DAssignment.h33 enum Type { DEFAULT, HIDDEN, PROVIDE, PROVIDE_HIDDEN }; enumerator in enum:mcld::Assignment::Type
H A DScriptFile.h123 Assignment::Type pType = Assignment::DEFAULT);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
H A DConfigBuilder.java55 byte[] b64 = Base64.decode(new String(data, StandardCharsets.ISO_8859_1), Base64.DEFAULT);
70 byte[] wrappedContent = Base64.decode(mimeContainer.getText(), Base64.DEFAULT);
104 byte[] octets = Base64.decode(subContainer.getText(), Base64.DEFAULT);
116 byte[] octets = Base64.decode(subContainer.getText(), Base64.DEFAULT);
129 byte[] octets = Base64.decode(subContainer.getText(), Base64.DEFAULT);
291 String alias = Base64.encodeToString(reference, Base64.DEFAULT);
/frameworks/support/v4/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java172 public static final int DEFAULT = 0x0000001; field in class:AccessibilityServiceInfoCompat
388 * {@link AccessibilityServiceInfo#DEFAULT} is represented by the
389 * string DEFAULT.
396 case DEFAULT:
397 return "DEFAULT";
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp114 if ((*it).type() == Assignment::DEFAULT)
122 if ((*it).type() == Assignment::DEFAULT)
134 if ((*rit).type() == Assignment::DEFAULT) {
147 if ((*rit).type() == Assignment::DEFAULT) {
343 Assignment::DEFAULT,
363 Assignment::DEFAULT,
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java47 public static final Typeface DEFAULT; field in class:Typeface
338 DEFAULT = create((String) null, 0);
345 DEFAULT,
/frameworks/av/include/drm/
H A Ddrm_framework_common.h160 static const int DEFAULT = 0x00; member in class:android::Action
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DTypefaceTest.java41 assertTrue("basic", Typeface.DEFAULT != null);
/frameworks/base/core/java/android/text/
H A DAutoText.java54 private static final int DEFAULT = 14337; // Size of the Trie 13 Aug 2007 field in class:AutoText
165 mTrie = new char[DEFAULT];
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DAccessibilityManagerServiceTest.java417 firstInfo.flags = AccessibilityServiceInfo.DEFAULT;
458 firstInfo.flags = AccessibilityServiceInfo.DEFAULT;
464 secondInfo.flags = AccessibilityServiceInfo.DEFAULT;
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java65 private static final Object DEFAULT = new Object(); field in class:LockSettingsStorage
137 Object result = DEFAULT;
149 return result == DEFAULT ? defaultValue : (String) result;
511 return cached == DEFAULT ? defaultValue : (String) cached;
/frameworks/base/services/core/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java74 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java291 public static final CaptionStyle DEFAULT; field in class:CaptioningManager.CaptionStyle
520 DEFAULT = WHITE_ON_BLACK;
/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DBackupDataTest.java181 expectedBytes = Base64.decode(expected[1], Base64.DEFAULT);
211 expectedBytes = Base64.decode(expected[1], Base64.DEFAULT);
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java308 int[] flagses = { Base64.DEFAULT,
413 new ByteArrayInputStream("/v8=".getBytes()), Base64.DEFAULT);
423 int[] flagses = { Base64.DEFAULT,
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java58 @IntDef({LARGE, DEFAULT})
63 static final int DEFAULT = 1; field in class:MaterialProgressDrawable
126 updateSizes(DEFAULT);
150 * {@link MaterialProgressDrawable.DEFAULT}
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiLogger.java431 result = android.util.Base64.encodeToString(input, Base64.DEFAULT);
442 compressed.length < input.length ? compressed : input , Base64.DEFAULT);

Completed in 1685 milliseconds

123