/frameworks/base/graphics/java/android/graphics/ |
H A D | BlurMaskFilter.java | 31 NORMAL(0), enum constant in enum:BlurMaskFilter.Blur
|
H A D | Interpolator.java | 112 NORMAL, enum constant in enum:Interpolator.Result 128 * (NORMAL), was before the first key time (FREEZE_START) or after the last 141 case 0: return Result.NORMAL;
|
H A D | Typeface.java | 81 /** The default NORMAL typeface object */ 89 /** The NORMAL style of the default sans serif typeface. */ 91 /** The NORMAL style of the default serif typeface. */ 93 /** The NORMAL style of the default monospace typeface. */ 131 @IntDef(value = {NORMAL, BOLD, ITALIC, BOLD_ITALIC}) 136 public static final int NORMAL = 0; field in class:Typeface 679 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC 700 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC 705 style = NORMAL;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
H A D | FontSize.java | 26 NORMAL(0x0), enum constant in enum:FontSize
|
/frameworks/minikin/include/minikin/ |
H A D | FontStyle.h | 29 NORMAL = 400, member in class:minikin::FontStyle::Weight 43 constexpr FontStyle() : FontStyle(Weight::NORMAL, Slant::UPRIGHT) {} 45 constexpr explicit FontStyle(Slant slant) : FontStyle(Weight::NORMAL, slant) {}
|
/frameworks/native/services/surfaceflinger/ |
H A D | VSyncModulator.h | 41 NORMAL enumerator in enum:android::VSyncModulator::TransactionStart 78 if (mTransactionStart == TransactionStart::NORMAL) return; 79 mTransactionStart = TransactionStart::NORMAL; 131 std::atomic<TransactionStart> mTransactionStart = TransactionStart::NORMAL;
|
/frameworks/base/rs/java/android/renderscript/ |
H A D | Font.java | 80 NORMAL, enum constant in enum:Font.Style 137 case NORMAL:
|
H A D | Mesh.java | 583 public static final int NORMAL = 0x0002; field in class:Mesh.TriangleMeshBuilder 594 * @param flags bitfield that is a combination of COLOR, NORMAL, 635 if ((mFlags & NORMAL) != 0) { 719 if ((mFlags & NORMAL) == 0) { 803 if ((mFlags & NORMAL) != 0) {
|
H A D | RenderScript.java | 178 * NORMAL context, this is the default and what shipping apps should 181 NORMAL (0), enum constant in enum:RenderScript.ContextType 1212 * NORMAL. Applications wishing to do background processing should set 1219 NORMAL (-8); enum constant in enum:RenderScript.Priority 1357 mContextType = ContextType.NORMAL; 1438 * calls create(ctx, ContextType.NORMAL, CREATE_FLAG_NONE) 1446 return create(ctx, ContextType.NORMAL); 1489 * calls create(ctx, sdkVersion, ContextType.NORMAL, CREATE_FLAG_NONE) 1499 return create(ctx, sdkVersion, ContextType.NORMAL, CREATE_FLAG_NONE);
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/ |
H A D | ImageUtils.java | 59 NORMAL, enum constant in enum:ImageUtils.ImageSize 66 sUseImageSize = ImageSize.NORMAL; 70 sUseImageSize = ImageSize.NORMAL;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
H A D | DataConnectionReasons.java | 137 NORMAL, enum constant in enum:DataConnectionReasons.DataAllowedReasonType
|
/frameworks/native/services/sensorservice/ |
H A D | SensorService.h | 137 NORMAL = 0, enumerator in enum:android::SensorService::Mode 151 // in NORMAL mode. When this mode is first activated, all active sensors from all connections 155 // NORMAL mode again, all sensors that were previously registered to are activated with the 162 // RESTRICTED <--- NORMAL ---> DATA_INJECTION 176 // 3) Reset sensorservice back to NORMAL mode. 251 // Reset the state of SensorService to NORMAL mode.
|
/frameworks/base/telephony/java/android/telephony/ |
H A D | DisconnectCause.java | 32 public static final int NORMAL = 2; field in class:DisconnectCause 338 case NORMAL: 339 return "NORMAL";
|
H A D | PreciseDisconnectCause.java | 49 public static final int NORMAL = 16; field in class:PreciseDisconnectCause
|
/frameworks/base/core/java/android/database/sqlite/ |
H A D | SQLiteConnectionPool.java | 112 NORMAL, enum constant in enum:SQLiteConnectionPool.AcquiredConnectionStatus 1000 mAcquiredConnections.put(connection, AcquiredConnectionStatus.NORMAL);
|
/frameworks/minikin/tests/unittest/ |
H A D | FontFamilyTest.cpp | 654 constexpr FontStyle::Weight NORMAL = FontStyle::Weight::NORMAL; local 663 FontStyle(NORMAL, UPRIGHT), // 0 665 FontStyle(NORMAL, ITALIC), // 2 672 FontStyle(NORMAL, UPRIGHT), // 2 678 FontStyle(NORMAL, ITALIC), // 8 691 {FontStyle(BOLD), {FontStyle(NORMAL), FontStyle(BOLD)}, 1}, 693 {FontStyle(LIGHT), {FontStyle(NORMAL), FontStyle(LIGHT)}, 1}, 695 {FontStyle(NORMAL), {FontStyle(NORMAL), FontStyl [all...] |
/frameworks/base/media/java/android/mtp/ |
H A D | MtpStorageManager.java | 109 NORMAL, enum constant in enum:MtpStorageManager.MtpObjectState 153 mState = MtpObjectState.NORMAL; 241 if (mState == MtpObjectState.NORMAL) 659 obj.setState(MtpObjectState.NORMAL); 661 case NORMAL: 727 case NORMAL: 780 if (obj.getState() != MtpObjectState.NORMAL) { 1095 obj.setState(MtpObjectState.NORMAL); 1129 obj.setState(MtpObjectState.NORMAL); 1134 obj.setState(MtpObjectState.NORMAL); [all...] |
/frameworks/opt/net/voip/src/jni/rtp/ |
H A D | AudioGroup.cpp | 112 NORMAL = 0, enumerator in enum:__anon1944::AudioStream::__anon1945 490 NORMAL = 2, enumerator in enum:__anon1944::AudioGroup::__anon1946 598 if (!mChain->set(AudioStream::NORMAL, pair[1], NULL, NULL, 638 if (mode == NORMAL &&
|
/frameworks/base/core/java/android/webkit/ |
H A D | WebSettings.java | 44 * <li>{@code NORMAL} means no rendering changes. This is the recommended choice for maximum 59 NORMAL, enum constant in enum:WebSettings.LayoutAlgorithm 78 * <li>NORMAL is 100%</li> 89 NORMAL(100), enum constant in enum:WebSettings.TextSize 173 NORMAL, enum constant in enum:WebSettings.RenderPriority 491 * Sets the text size of the page. The default is {@link TextSize#NORMAL}. 525 return closestSize != null ? closestSize : TextSize.NORMAL; 1281 * {@link RenderPriority#NORMAL}.
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
H A D | ExifInterface.java | 607 public static final short NORMAL = 0; field in interface:ExifInterface.Contrast 616 public static final short NORMAL = 0; field in interface:ExifInterface.Saturation 625 public static final short NORMAL = 0; field in interface:ExifInterface.Sharpness
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
H A D | RenderScript.java | 271 * NORMAL context, this is the default and what shipping apps should 274 NORMAL (0), enum constant in enum:RenderScript.ContextType 1214 * NORMAL. Applications wishing to do background processing should set 1219 NORMAL (Process.THREAD_PRIORITY_DISPLAY); enum constant in enum:RenderScript.Priority 1353 mContextType = ContextType.NORMAL; 1512 return create(ctx, ContextType.NORMAL); 1553 * calls create(ctx, sdkVersion, ContextType.NORMAL, CREATE_FLAG_NONE) 1563 return create(ctx, sdkVersion, ContextType.NORMAL, CREATE_FLAG_NONE);
|
/frameworks/base/core/java/android/widget/ |
H A D | TextView.java | 655 private BufferType mBufferType = BufferType.NORMAL; 1410 bufferType = BufferType.NORMAL; 1430 if (bufferType == BufferType.NORMAL) { 2007 final Typeface normalTypeface = Typeface.create(familyName, Typeface.NORMAL); 3794 @ViewDebug.IntToString(from = Typeface.NORMAL, to = "NORMAL"), 3801 return typeface != null ? typeface.getStyle() : Typeface.NORMAL; 5979 Typeface.NORMAL, -1 /* weight, not specifeid */); 5985 Typeface.NORMAL, -1 /* weight, not specified */); 5989 DEFAULT_TYPEFACE /* typeface index */, Typeface.NORMAL, 10307 NORMAL, SPANNABLE, EDITABLE enum constant in enum:TextView.BufferType [all...] |
/frameworks/data-binding/prebuilds/1.0-rc0/ |
H A D | databinding-studio-bundle.jar | META-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ... |