/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/ |
D | BmessageParser.java | 21 import com.android.bluetooth.mapclient.BmsgTokenizer.Property; 43 private static final Property BEGIN_BMSG = new Property("BEGIN", "BMSG"); 44 private static final Property END_BMSG = new Property("END", "BMSG"); 46 private static final Property BEGIN_VCARD = new Property("BEGIN", "VCARD"); 47 private static final Property END_VCARD = new Property("END", "VCARD"); 49 private static final Property BEGIN_BENV = new Property("BEGIN", "BENV"); 50 private static final Property END_BENV = new Property("END", "BENV"); 52 private static final Property BEGIN_BBODY = new Property("BEGIN", "BBODY"); 53 private static final Property END_BBODY = new Property("END", "BBODY"); 55 private static final Property BEGIN_MSG = new Property("BEGIN", "MSG"); [all …]
|
D | BmsgTokenizer.java | 44 public Property next(boolean alwaysReturn) throws ParseException { in next() 65 return new Property(mMatcher.group(2), mMatcher.group(3)); in next() 68 public Property next() throws ParseException { in next() 80 public static class Property { class in BmsgTokenizer 84 public Property(String name, String value) { in Property() method in BmsgTokenizer.Property 102 return ((o instanceof Property) && ((Property) o).name.equals(name) in equals() 103 && ((Property) o).value.equals(value)); in equals()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | AnimatorUtils.java | 31 import android.util.Property; 51 public static final Property<View, Integer> BACKGROUND_ALPHA = 52 new Property<View, Integer>(Integer.class, "background.alpha") { 86 public static final Property<ImageView, Integer> DRAWABLE_ALPHA = 87 new Property<ImageView, Integer>(Integer.class, "drawable.alpha") { 99 public static final Property<ImageView, Integer> DRAWABLE_TINT = 100 new Property<ImageView, Integer>(Integer.class, "drawable.tint") { 181 public static final Property<View, Integer> VIEW_LEFT = 182 new Property<View, Integer>(Integer.class, "left") { 194 public static final Property<View, Integer> VIEW_TOP = [all …]
|
/packages/modules/DnsResolver/tests/ |
D | resolv_stats_test_utils.h | 39 ::testing::Property("rcode", &DnsQueryEvent::rcode, 41 ::testing::Property("ns_type", &DnsQueryEvent::type, 43 ::testing::Property("cache_hit", &DnsQueryEvent::cache_hit, 45 ::testing::Property("ip_version", &DnsQueryEvent::ip_version, 47 ::testing::Property("protocol", &DnsQueryEvent::protocol, 49 ::testing::Property("retry_times", &DnsQueryEvent::retry_times, 51 ::testing::Property("dns_server_index", &DnsQueryEvent::dns_server_index, 56 ::testing::Property("linux_errno", &DnsQueryEvent::linux_errno, 58 ::testing::Property("connected", &DnsQueryEvent::connected, 118 ::testing::Property("dns_query_events",
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
D | ICalendarTest.java | 15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1"); in testAddParameter() 41 component.addProperty(new ICalendar.Property("prop2", "value3")); in testAddProperty() 42 component.addProperty(new ICalendar.Property("prop1", "value1")); in testAddProperty() 43 component.addProperty(new ICalendar.Property("prop1", "value2")); in testAddProperty() 60 child.addProperty(new ICalendar.Property("prop2", "value2")); in testAddComponent() 62 parent.addProperty(new ICalendar.Property("prop1", "value1")); in testAddComponent() 63 parent.addProperty(new ICalendar.Property("prop1", "value12")); in testAddComponent() 80 ICalendar.Property prop1 = component.getFirstProperty("PROP1"); in testParseBasicComponent() 84 List<ICalendar.Property> props = component.getProperties("PROP1"); in testParseBasicComponent() 98 ICalendar.Property property = component.getFirstProperty("DTSTART"); in testParseQuotedParam()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherAnimUtils.java | 21 import android.util.Property; 38 public static final Property<Drawable, Integer> DRAWABLE_ALPHA = 39 new Property<Drawable, Integer>(Integer.TYPE, "drawableAlpha") { 70 public static final Property<LayoutParams, Integer> LAYOUT_WIDTH = 71 new Property<LayoutParams, Integer>(Integer.TYPE, "width") { 83 public static final Property<LayoutParams, Integer> LAYOUT_HEIGHT = 84 new Property<LayoutParams, Integer>(Integer.TYPE, "height") {
|
D | InterruptibleInOutAnimator.java | 23 import android.util.Property; 37 private static final Property<InterruptibleInOutAnimator, Float> VALUE = 38 new Property<InterruptibleInOutAnimator, Float>(Float.TYPE, "value") {
|
D | BubbleTextView.java | 35 import android.util.Property; 76 private static final Property<BubbleTextView, Float> DOT_SCALE_PROPERTY 77 = new Property<BubbleTextView, Float>(Float.TYPE, "dotScale") { 90 public static final Property<BubbleTextView, Float> TEXT_ALPHA_PROPERTY 91 = new Property<BubbleTextView, Float>(Float.class, "textAlpha") {
|
/packages/apps/Launcher3/src/com/android/launcher3/pageindicators/ |
D | WorkspacePageIndicator.java | 16 import android.util.Property; 64 private static final Property<WorkspacePageIndicator, Integer> PAINT_ALPHA 65 = new Property<WorkspacePageIndicator, Integer>(Integer.class, "paint_alpha") { 78 private static final Property<WorkspacePageIndicator, Float> NUM_PAGES 79 = new Property<WorkspacePageIndicator, Float>(Float.class, "num_pages") { 92 private static final Property<WorkspacePageIndicator, Integer> TOTAL_SCROLL 93 = new Property<WorkspacePageIndicator, Integer>(Integer.class, "total_scroll") {
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | PropertySetter.java | 22 import android.util.Property; 39 public <T> void setFloat(T target, Property<T, Float> property, float value, in setFloat() 44 public <T> void setInt(T target, Property<T, Integer> property, int value, in setInt() 71 public <T> void setFloat(T target, Property<T, Float> property, float value, in setFloat() 82 public <T> void setInt(T target, Property<T, Integer> property, int value, in setInt()
|
D | PropertyResetListener.java | 22 import android.util.Property; 29 private Property<T, V> mPropertyToReset; 32 public PropertyResetListener(Property<T, V> propertyToReset, V resetToValue) { in PropertyResetListener()
|
/packages/apps/Launcher3/src/com/android/launcher3/keyboard/ |
D | FocusIndicatorHelper.java | 30 import android.util.Property; 45 public static final Property<FocusIndicatorHelper, Float> ALPHA = 46 new Property<FocusIndicatorHelper, Float>(Float.TYPE, "alpha") { 58 public static final Property<FocusIndicatorHelper, Float> SHIFT = 59 new Property<FocusIndicatorHelper, Float>(
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/ |
D | CircleView.kt | 24 import android.util.Property 271 val FILL_COLOR: Property<CircleView, Int> = 272 object : Property<CircleView, Int>(Int::class.java, "fillColor") { 287 val RADIUS: Property<CircleView, Float> = 288 object : Property<CircleView, Float>(Float::class.java, "radius") {
|
D | CircleView.java | 26 import android.util.Property; 41 public final static Property<CircleView, Integer> FILL_COLOR = 42 new Property<CircleView, Integer>(Integer.class, "fillColor") { 58 public final static Property<CircleView, Float> RADIUS = 59 new Property<CircleView, Float>(Float.class, "radius") {
|
/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
D | WorkspaceAndHotseatScrim.java | 40 import android.util.Property; 57 public static Property<WorkspaceAndHotseatScrim, Float> SYSUI_PROGRESS = 58 new Property<WorkspaceAndHotseatScrim, Float>(Float.TYPE, "sysUiProgress") { 70 private static Property<WorkspaceAndHotseatScrim, Float> SYSUI_ANIM_MULTIPLIER = 71 new Property<WorkspaceAndHotseatScrim, Float>(Float.TYPE, "sysUiAnimMultiplier") {
|
D | Scrim.java | 22 import android.util.Property; 34 public static Property<Scrim, Float> SCRIM_PROGRESS = 35 new Property<Scrim, Float>(Float.TYPE, "scrimProgress") {
|
D | PreloadIconDrawable.java | 33 import android.util.Property; 47 private static final Property<PreloadIconDrawable, Float> INTERNAL_STATE = 48 new Property<PreloadIconDrawable, Float>(Float.TYPE, "internalStateProgress") {
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | MultiValueAlpha.java | 19 import android.util.Property; 29 public static final Property<AlphaProperty, Float> VALUE = 30 new Property<AlphaProperty, Float>(Float.TYPE, "value") {
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | PreviewBackground.java | 39 import android.util.Property; 99 private static final Property<PreviewBackground, Integer> STROKE_ALPHA = 100 new Property<PreviewBackground, Integer>(Integer.class, "strokeAlpha") { 113 private static final Property<PreviewBackground, Integer> SHADOW_ALPHA = 114 new Property<PreviewBackground, Integer>(Integer.class, "shadowAlpha") {
|
D | FolderPreviewItemAnim.java | 22 import android.util.Property; 31 private static final Property<FolderPreviewItemAnim, float[]> PARAMS = 32 new Property<FolderPreviewItemAnim, float[]>(float[].class, "params") {
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/ |
D | ClearAllButton.java | 21 import android.util.Property; 30 public static final Property<ClearAllButton, Float> VISIBILITY_ALPHA = 31 new Property<ClearAllButton, Float>(Float.class, "visibilityAlpha") {
|
/packages/apps/Launcher3/src/com/android/launcher3/settings/ |
D | PreferenceHighlighter.java | 27 import android.util.Property; 42 private static final Property<PreferenceHighlighter, Integer> HIGHLIGHT_COLOR = 43 new Property<PreferenceHighlighter, Integer>(Integer.TYPE, "highlightColor") {
|
/packages/apps/PermissionController/src/android/support/wearable/view/ |
D | ProgressDrawable.java | 30 import android.util.Property; 43 private static Property<ProgressDrawable, Integer> LEVEL = 44 new Property<ProgressDrawable, Integer>(Integer.class, "level") {
|
/packages/apps/Launcher3/src/com/android/launcher3/views/ |
D | AbstractSlideInView.java | 26 import android.util.Property; 44 protected static Property<AbstractSlideInView, Float> TRANSLATION_SHIFT = 45 new Property<AbstractSlideInView, Float>(Float.class, "translationShift") {
|
D | BaseDragLayer.java | 39 import android.util.Property; 68 public static final Property<LayoutParams, Integer> LAYOUT_X = 69 new Property<LayoutParams, Integer>(Integer.TYPE, "x") { 81 public static final Property<LayoutParams, Integer> LAYOUT_Y = 82 new Property<LayoutParams, Integer>(Integer.TYPE, "y") {
|