/frameworks/base/docs/html/design/ |
D | design_toc.cs | 4 …<div class="nav-section-header"><a href="<?cs var:toroot ?>design/index.html">Get Started</a></div> 6 … <li><a href="<?cs var:toroot ?>design/get-started/creative-vision.html">Creative Vision</a></li> 7 <li><a href="<?cs var:toroot ?>design/get-started/principles.html">Design Principles</a></li> 12 …<div class="nav-section-header empty"><a href="<?cs var:toroot ?>design/material/index.html">Mater… 16 … <div class="nav-section-header"><a href="<?cs var:toroot ?>design/devices.html">Devices</a></div> 18 <li><a href="<?cs var:toroot ?>design/handhelds/index.html">Phones & Tablets</a></li> 21 <a href="<?cs var:toroot ?>design/wear/index.html">Wear</a></div> 23 <li><a href="<?cs var:toroot ?>design/wear/creative-vision.html">Creative Vision</a></li> 24 <li><a href="<?cs var:toroot ?>design/wear/principles.html">Design Principles</a></li> 25 <li><a href="<?cs var:toroot ?>design/wear/structure.html">App Structure</a></li> [all …]
|
/frameworks/base/docs/html/guide/ |
D | guide_toc.cs | 11 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/index.html"> 13 </a></div> 15 <li><a href="<?cs var:toroot ?>guide/components/fundamentals.html"> 16 <span class="en">App Fundamentals</span></a> 18 <li><a href="<?cs var:toroot ?>guide/practices/compatibility.html"> 20 </a></li> 21 <li><a href="<?cs var:toroot ?>guide/topics/security/permissions.html"> 23 </a> 30 <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/index.html"> 32 </a></div> [all …]
|
/frameworks/base/docs/html/tools/ |
D | tools_toc.cs | 4 <div class="nav-section-header"><a href="<?cs var:toroot 5 ?>sdk/index.html"><span class="en">Download</span></a></div> 7 <li><a href="<?cs var:toroot ?>sdk/installing/index.html"> 8 <span class="en">Installing the SDK</span></a></li> 10 <li><a href="<?cs var:toroot ?>sdk/installing/adding-packages.html"> 11 <span class="en">Adding SDK Packages</span></a></li> 20 <a href="<?cs var:toroot?>tools/studio/index.html">Android Studio</a> 23 <li><a href="<?cs var:toroot ?>sdk/installing/studio-tips.html"> 24 Tips and Tricks</a></li> 34 <a href="<?cs var:toroot ?>tools/workflow/index.html"><span class="en">Workflow</span></a> [all …]
|
/frameworks/base/docs/html/google/ |
D | google_toc.cs | 18 <div class="nav-section-header empty"><a href="<?cs var:toroot?>google/index.html"> 20 </a></div> 24 … <div class="nav-section-header empty"><a href="<?cs var:toroot?>google/play-services/games.html"> 26 </a></div> 29 …<div class="nav-section-header empty"><a href="<?cs var:toroot?>google/play-services/location.html… 31 </a></div> 34 <div class="nav-section-header empty"><a href="<?cs var:toroot?>google/play-services/plus.html"> 36 </a></div> 39 <div class="nav-section-header empty"><a href="<?cs var:toroot?>google/play-services/maps.html"> 41 </a></div> [all …]
|
/frameworks/base/docs/html/distribute/tools/promote/ |
D | badge-files.jd | 22 <a href="{@docRoot}downloads/brand/v2/english_get.ai">English (English)</a><br/> 24 <a href="{@docRoot}downloads/brand/af_generic_rgb_wo.ai">Afrikaans (Afrikaans)</a><br/> 26 <a href="{@docRoot}downloads/brand/v2/amharic_get.ai">ኣማርኛ (Amharic)</a><br/> 29 <a href="{@docRoot}downloads/brand/ar_generic_rgb_wo.ai">العربية (Arabic)</a><br/> 31 <a href="{@docRoot}downloads/brand/v2/belarusian_get.ai">Беларуская (Belarusian)</a><br/> 33 <a href="{@docRoot}downloads/brand/v2/bulgarian_get.ai">български (Bulgarian)</a><br/> 35 <a href="{@docRoot}downloads/brand/v2/catalan_get.ai">Català (Catalan)</a><br/> 37 <a href="{@docRoot}downloads/brand/v2/traditional_chinese_get.ai">中文 (中国) (Chinese)</a><br/> 39 … <a href="{@docRoot}downloads/brand/v2/hongkong_chinese_get.ai">中文(香港) (Chinese Hong Kong)</a><br/> 41 … <a href="{@docRoot}downloads/brand/v2/taiwan_chinese_get.ai">中文 (台灣) (Chinese Taiwan)</a><br/> [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | Int4.java | 57 public void add(Int4 a) { in add() argument 58 this.x += a.x; in add() 59 this.y += a.y; in add() 60 this.z += a.z; in add() 61 this.w += a.w; in add() 71 public static Int4 add(Int4 a, Int4 b) { in add() argument 73 result.x = a.x + b.x; in add() 74 result.y = a.y + b.y; in add() 75 result.z = a.z + b.z; in add() 76 result.w = a.w + b.w; in add() [all …]
|
D | Short4.java | 57 public void add(Short4 a) { in add() argument 58 this.x += a.x; in add() 59 this.y += a.y; in add() 60 this.z += a.z; in add() 61 this.w += a.w; in add() 71 public static Short4 add(Short4 a, Short4 b) { in add() argument 73 result.x = (short)(a.x + b.x); in add() 74 result.y = (short)(a.y + b.y); in add() 75 result.z = (short)(a.z + b.z); in add() 76 result.w = (short)(a.w + b.w); in add() [all …]
|
D | Long4.java | 57 public void add(Long4 a) { in add() argument 58 this.x += a.x; in add() 59 this.y += a.y; in add() 60 this.z += a.z; in add() 61 this.w += a.w; in add() 71 public static Long4 add(Long4 a, Long4 b) { in add() argument 73 result.x = a.x + b.x; in add() 74 result.y = a.y + b.y; in add() 75 result.z = a.z + b.z; in add() 76 result.w = a.w + b.w; in add() [all …]
|
D | Byte4.java | 52 public void add(Byte4 a) { in add() argument 53 this.x += a.x; in add() 54 this.y += a.y; in add() 55 this.z += a.z; in add() 56 this.w += a.w; in add() 66 public static Byte4 add(Byte4 a, Byte4 b) { in add() argument 68 result.x = (byte)(a.x + b.x); in add() 69 result.y = (byte)(a.y + b.y); in add() 70 result.z = (byte)(a.z + b.z); in add() 71 result.w = (byte)(a.w + b.w); in add() [all …]
|
D | Long3.java | 54 public void add(Long3 a) { in add() argument 55 this.x += a.x; in add() 56 this.y += a.y; in add() 57 this.z += a.z; in add() 67 public static Long3 add(Long3 a, Long3 b) { in add() argument 69 result.x = a.x + b.x; in add() 70 result.y = a.y + b.y; in add() 71 result.z = a.z + b.z; in add() 94 public static Long3 add(Long3 a, long b) { in add() argument 96 result.x = a.x + b; in add() [all …]
|
D | Short3.java | 54 public void add(Short3 a) { in add() argument 55 this.x += a.x; in add() 56 this.y += a.y; in add() 57 this.z += a.z; in add() 67 public static Short3 add(Short3 a, Short3 b) { in add() argument 69 result.x = (short)(a.x + b.x); in add() 70 result.y = (short)(a.y + b.y); in add() 71 result.z = (short)(a.z + b.z); in add() 94 public static Short3 add(Short3 a, short b) { in add() argument 96 result.x = (short)(a.x + b); in add() [all …]
|
D | Int3.java | 54 public void add(Int3 a) { in add() argument 55 this.x += a.x; in add() 56 this.y += a.y; in add() 57 this.z += a.z; in add() 67 public static Int3 add(Int3 a, Int3 b) { in add() argument 69 result.x = a.x + b.x; in add() 70 result.y = a.y + b.y; in add() 71 result.z = a.z + b.z; in add() 94 public static Int3 add(Int3 a, int b) { in add() argument 96 result.x = a.x + b; in add() [all …]
|
D | Byte3.java | 50 public void add(Byte3 a) { in add() argument 51 this.x += a.x; in add() 52 this.y += a.y; in add() 53 this.z += a.z; in add() 63 public static Byte3 add(Byte3 a, Byte3 b) { in add() argument 65 result.x = (byte)(a.x + b.x); in add() 66 result.y = (byte)(a.y + b.y); in add() 67 result.z = (byte)(a.z + b.z); in add() 90 public static Byte3 add(Byte3 a, byte b) { in add() argument 92 result.x = (byte)(a.x + b); in add() [all …]
|
D | Int2.java | 51 public void add(Int2 a) { in add() argument 52 this.x += a.x; in add() 53 this.y += a.y; in add() 63 public static Int2 add(Int2 a, Int2 b) { in add() argument 65 result.x = a.x + b.x; in add() 66 result.y = a.y + b.y; in add() 88 public static Int2 add(Int2 a, int b) { in add() argument 90 result.x = a.x + b; in add() 91 result.y = a.y + b; in add() 101 public void sub(Int2 a) { in sub() argument [all …]
|
D | Short2.java | 54 public void add(Short2 a) { in add() argument 55 this.x += a.x; in add() 56 this.y += a.y; in add() 66 public static Short2 add(Short2 a, Short2 b) { in add() argument 68 result.x = (short)(a.x + b.x); in add() 69 result.y = (short)(a.y + b.y); in add() 91 public static Short2 add(Short2 a, short b) { in add() argument 93 result.x = (short)(a.x + b); in add() 94 result.y = (short)(a.y + b); in add() 104 public void sub(Short2 a) { in sub() argument [all …]
|
D | Long2.java | 51 public void add(Long2 a) { in add() argument 52 this.x += a.x; in add() 53 this.y += a.y; in add() 63 public static Long2 add(Long2 a, Long2 b) { in add() argument 65 result.x = a.x + b.x; in add() 66 result.y = a.y + b.y; in add() 88 public static Long2 add(Long2 a, long b) { in add() argument 90 result.x = a.x + b; in add() 91 result.y = a.y + b; in add() 101 public void sub(Long2 a) { in sub() argument [all …]
|
D | Byte2.java | 47 public void add(Byte2 a) { in add() argument 48 this.x += a.x; in add() 49 this.y += a.y; in add() 59 public static Byte2 add(Byte2 a, Byte2 b) { in add() argument 61 result.x = (byte)(a.x + b.x); in add() 62 result.y = (byte)(a.y + b.y); in add() 84 public static Byte2 add(Byte2 a, byte b) { in add() argument 86 result.x = (byte)(a.x + b); in add() 87 result.y = (byte)(a.y + b); in add() 97 public void sub(Byte2 a) { in sub() argument [all …]
|
D | Float4.java | 53 public static Float4 add(Float4 a, Float4 b) { in add() argument 55 res.x = a.x + b.x; in add() 56 res.y = a.y + b.y; in add() 57 res.z = a.z + b.z; in add() 58 res.w = a.w + b.w; in add() 94 public static Float4 add(Float4 a, float b) { in add() argument 96 res.x = a.x + b; in add() 97 res.y = a.y + b; in add() 98 res.z = a.z + b; in add() 99 res.w = a.w + b; in add() [all …]
|
D | Double4.java | 53 public static Double4 add(Double4 a, Double4 b) { in add() argument 55 res.x = a.x + b.x; in add() 56 res.y = a.y + b.y; in add() 57 res.z = a.z + b.z; in add() 58 res.w = a.w + b.w; in add() 94 public static Double4 add(Double4 a, double b) { in add() argument 96 res.x = a.x + b; in add() 97 res.y = a.y + b; in add() 98 res.z = a.z + b; in add() 99 res.w = a.w + b; in add() [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
D | DescendantFocusabilityTest.java | 30 private DescendantFocusability a; field in DescendantFocusabilityTest 39 a = getActivity(); in setUp() 46 a.beforeDescendants.getDescendantFocusability()); in testPreconditions() 48 a.afterDescendants.getDescendantFocusability()); in testPreconditions() 50 a.blocksDescendants.getDescendantFocusability()); in testPreconditions() 52 assertTrue(a.beforeDescendantsChild.isFocusable()); in testPreconditions() 53 assertTrue(a.afterDescendantsChild.isFocusable()); in testPreconditions() 54 assertTrue(a.blocksDescendantsChild.isFocusable()); in testPreconditions() 60 a.beforeDescendants.setFocusable(true); in testBeforeDescendants() 62 assertTrue(a.beforeDescendants.requestFocus()); in testBeforeDescendants() [all …]
|
/frameworks/base/docs/html/wear/ |
D | wear_toc.cs | 4 …<div class="nav-section-header empty"><a href="<?cs var:toroot ?>wear/preview/start.html">Get Star… 5 </a></div> 9 …<div class="nav-section-header empty"><a href="<?cs var:toroot ?>wear/design/user-interface.html">… 10 </a></div> 14 …<div class="nav-section-header empty"><a href="<?cs var:toroot ?>wear/design/index.html">Design Pr… 15 </a></div> 19 …<div class="nav-section-header empty"><a href="<?cs var:toroot ?>wear/notifications/creating.html"… 20 </a></div> 24 …s="nav-section-header empty"><a href="<?cs var:toroot ?>wear/notifications/remote-input.html">Rece… 25 </a></div> [all …]
|
/frameworks/base/docs/html/about/ |
D | about_toc.cs | 4 <div class="nav-section-header"><a href="<?cs var:toroot?>about/index.html">Welcome</a></div> 6 <li><a href="<?cs var:toroot?>about/start.html">Get Started</a></li> 10 <div class="nav-section-header"><a href="<?cs var:toroot ?>about/versions/lollipop.html" 17 <span class="en">Lollipop</span></a></div> 19 <li><a href="<?cs var:toroot ?>about/versions/android-5.0.html" 26 Android 5.0 APIs</a></li> 27 <li><a href="<?cs var:toroot ?>about/versions/android-5.0-changes.html"> 29 Android 5.0 Changes</a></li> 33 <div class="nav-section-header"><a href="<?cs var:toroot ?>about/versions/kitkat.html"> 34 <span class="en">KitKat</span></a></div> [all …]
|
/frameworks/base/docs/html-intl/intl/zh-cn/tools/publishing/ |
D | preparing.jd | 16 <li><a href="#publishing-intro">简介</a></li> 17 <li><a href="#publishing-gather">收集材料和资源</a></li> 18 <li><a href="#publishing-configure">配置应用</a></li> 19 <li><a href="#publishing-build">构建应用</a></li> 20 <li><a href="#publishing-resources">准备外部服务器和资源</a></li> 21 <li><a href="#publishing-test">测试应用以进行发布</a></li> 25 <li><a href="{@docRoot}tools/publishing/publishing_overview.html">发布概述</a></li> 26 <li><a href="{@docRoot}tools/publishing/app-signing.html">为应用签名</a></li> 27 <li><a href="{@docRoot}distribute/tools/launch-checklist.html">Google Play 发布检查清单</a></li> 32 …用分发给用户之前,您需要先完成准备工作。对于所有 Android 应用,准备流程都是一项必须完成的<a href="{@docRoot}tools/workflow/index.html">开发任… [all …]
|
/frameworks/base/core/java/android/util/ |
D | MathUtils.java | 50 public static float log(float a) { in log() argument 51 return (float) Math.log(a); in log() 54 public static float exp(float a) { in exp() argument 55 return (float) Math.exp(a); in exp() 58 public static float pow(float a, float b) { in pow() argument 59 return (float) Math.pow(a, b); in pow() 62 public static float max(float a, float b) { in max() argument 63 return a > b ? a : b; in max() 66 public static float max(int a, int b) { in max() argument 67 return a > b ? a : b; in max() [all …]
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
D | Objects.java | 37 public static <T> int compare(T a, T b, Comparator<? super T> c) { in compare() argument 38 if (a == b) { in compare() 41 return c.compare(a, b); in compare() 50 public static boolean deepEquals(Object a, Object b) { in deepEquals() argument 51 if (a == null || b == null) { in deepEquals() 52 return a == b; in deepEquals() 53 } else if (a instanceof Object[] && b instanceof Object[]) { in deepEquals() 54 return Arrays.deepEquals((Object[]) a, (Object[]) b); in deepEquals() 55 } else if (a instanceof boolean[] && b instanceof boolean[]) { in deepEquals() 56 return Arrays.equals((boolean[]) a, (boolean[]) b); in deepEquals() [all …]
|