/frameworks/compile/slang/lit-tests/bitcode_wrapper/ |
D | bitcode_wrapper_test.ll | 5 ; RUN: %llvm-rs-as -target-api 11 %s -o %t11 7 ; RUN: %llvm-rs-as -target-api 12 %s -o %t12 9 ; RUN: %llvm-rs-as -target-api 13 %s -o %t13 11 ; RUN: %llvm-rs-as -target-api 14 %s -o %t14 13 ; RUN: %llvm-rs-as -target-api 15 %s -o %t15 15 ; RUN: %llvm-rs-as -target-api 16 %s -o %t16 17 ; RUN: %llvm-rs-as -target-api 17 %s -o %t17 19 ; RUN: %llvm-rs-as -target-api 18 %s -o %t18 21 ; RUN: %llvm-rs-as -target-api 19 %s -o %t19 23 ; RUN: %llvm-rs-as -target-api 20 %s -o %t20 [all …]
|
/frameworks/base/data/keyboards/ |
D | Vendor_057e_Product_2009.kl | 22 # Button labeled as "Y" but should really produce keycode "X" 24 # Button labeled as "B" but should really produce keycode "A" 26 # Button labeled as "A" but should really produce keycode "B" 28 # Button labeled as "X" but should really product keycode "Y" 31 # Button labeled as "L" 33 # Button labeled as "R" 37 # Trigger labeled as "ZL" 39 # Trigger labeled as "ZR"
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | UiccCardApplication.java | 102 IccCardApplicationStatus as, in UiccCardApplication() argument 105 if (DBG) log("Creating UiccApp: " + as); in UiccCardApplication() 107 mAppState = as.app_state; in UiccCardApplication() 108 mAppType = as.app_type; in UiccCardApplication() 110 mPersoSubState = as.perso_substate; in UiccCardApplication() 111 mAid = as.aid; in UiccCardApplication() 112 mAppLabel = as.app_label; in UiccCardApplication() 113 mPin1Replaced = (as.pin1_replaced != 0); in UiccCardApplication() 114 mPin1State = as.pin1; in UiccCardApplication() 115 mPin2State = as.pin2; in UiccCardApplication() [all …]
|
/frameworks/base/core/proto/android/media/ |
D | audioattributes.proto | 49 // accompany a user action, such as a beep or sound effect expressing a key 50 // click, or event, such as the type of a sound for a bonus being received 58 // Usage value to use when the usage is media, such as music, or movie 61 // Usage value to use when the usage is voice communications, such as 64 // Usage value to use when the usage is in-call signalling, such as with a 75 // communication, such as a VoIP communication or video-conference. 78 // communication such as a chat, or SMS. 81 // type of communication such as e-mail. 84 // such as a reminder or low battery warning. 86 // Usage value to use when the usage is for accessibility, such as with a [all …]
|
/frameworks/opt/setupwizard/library/ |
D | standalone.gradle | 2 * Include this gradle file if you are building against this as a standalone gradle library project, 3 * as opposed to building it as part of the git-tree. This is typically the file you want to include 11 * And then you can include the :setup-wizard-lib project as one of your dependencies
|
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
D | InstallFailed.java | 101 PackageUtil.AppSnippet as; in onCreate() local 105 as = new PackageUtil.AppSnippet(pm.getApplicationLabel(appInfo), in onCreate() 109 as = PackageUtil.getAppSnippet(this, appInfo, sourceFile); in onCreate() 113 mLabel = as.label; in onCreate() 115 mAlert.setIcon(as.icon); in onCreate() 116 mAlert.setTitle(as.label); in onCreate()
|
D | InstallSuccess.java | 61 PackageUtil.AppSnippet as; in onCreate() local 65 as = new PackageUtil.AppSnippet(pm.getApplicationLabel(appInfo), in onCreate() 69 as = PackageUtil.getAppSnippet(this, appInfo, sourceFile); in onCreate() 72 mAlert.setIcon(as.icon); in onCreate() 73 mAlert.setTitle(as.label); in onCreate()
|
/frameworks/base/core/proto/android/os/ |
D | metadata.proto | 23 // such as the section ids and privacy policy specs from caller as well as how long 30 // No longer filled in as of Qt. 41 // No longer filled in as of Qt. 44 // No longer filled in as of Qt.
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_recordable.txt | 39 rendered image as a video each time eglSwapBuffers gets called, may have 81 recorder as indicated by the NATIVE_WINDOW_IS_VIDEO_RECORDER query on 84 Section 3.4.1, Querying Configurations, change the last paragraph as follow 96 1. Should this functionality be exposed as a new attribute or as a bit in 119 One approach involves performing the color space conversion as part of the 125 space conversion when rendering the frame as well as a YUV -> RGB 131 read. The EGLConfig would likely not need to have any caveat set, as using
|
/frameworks/base/libs/usb/tests/AccessoryChat/ |
D | README.txt | 7 This program behaves as if it were a USB accessory. 8 It builds both for the host (Linux PC) and as an android 9 command line program, which will work if run as root on an
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/ |
D | README.md | 10 Normally, this directory comes as part of the protobuf package, available 25 The Python implementation of Protocol Buffers is not as mature as the C++ 38 downloaded and installed automatically as soon as you run setup.py. 46 version as this package. If in doubt, run: 63 version of protobuf is not already installed, as homebrew's python will 123 The C++ implementation for Python messages is built as a Python extension to
|
/frameworks/base/location/lib/ |
D | README.txt | 7 You can add but not remove. The rules are the same as for the 9 o This library can see and instantiate internal platform classes (such as 14 This library is distributed in the system image, and loaded as 20 Unbundled location providers (such as the NetworkLocationProvider)
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothSocket.java | 254 BluetoothSocket as = new BluetoothSocket(this); in acceptSocket() local 255 as.mSocketState = SocketState.CONNECTED; in acceptSocket() 260 as.close(); in acceptSocket() 264 as.mPfd = new ParcelFileDescriptor(fds[0]); in acceptSocket() 265 as.mSocket = LocalSocket.createConnectedLocalSocket(fds[0]); in acceptSocket() 266 as.mSocketIS = as.mSocket.getInputStream(); in acceptSocket() 267 as.mSocketOS = as.mSocket.getOutputStream(); in acceptSocket() 268 as.mAddress = remoteAddr; in acceptSocket() 269 as.mDevice = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(remoteAddr); in acceptSocket() 270 return as; in acceptSocket()
|
/frameworks/rs/script_api/ |
D | rs_core.spec | 21 RenderScript code is compiled on devices at runtime to allow platform-independence as well. 27 To use RenderScript, you need to utilize the RenderScript runtime APIs documented here as well 28 as the Android framework APIs for RenderScript. For documentation on the Android framework
|
/frameworks/base/packages/SystemUI/docs/ |
D | physics-animation-testing.md | 4 …flaws in the en-route animation visuals. In a worst-case failure case, as long as the end state is… 9 To accommodate this, all tests of the layout itself, as well as any animation controller subclasses… 11 …uing the test. This works since the test is not running on the same thread as the animation, so a …
|
D | kotlin-in-sysui.md | 6 try to follow these guidelines as much as possible. 10 - No DSLs: sysui is complicated enough as is, let's not add more layers at
|
/frameworks/base/tools/aapt2/ |
D | readme.md | 11 to match that of `aapt`, which will take the last definition as the sole definition. 18 - Fixed issue where enum values were interpreted as integers and range checked. (bug 62358540) 33 - Fixed issue where `%n` in a string resource was interpreted as a format argument. (bug 37132275) 53 shouldn't be used as a performance optimization, as once the PNG is processed, its result is 65 than 0x7F is interpreted as a negative number, causing valid feature split IDs like 0x80010000 74 - aapt2 optimize can now split a binary APK with the same --split parameters as the link 80 contents and interprets them as a sentinel `id` type. This was added to support existing 81 apps that build with their `id` types as map values. 127 - Support `<bag>` tag and treat as `<style>` regardless of type. 166 - Legacy mode: treats some class of errors as warnings in order to be more compatible [all …]
|
/frameworks/minikin/doc/ |
D | hyb_file_format.md | 12 It is _not_ intended as an interchange format, so there is no attempt to make the format 30 represent the label and destination of the edge. The packing strategy is as in 40 into the string pool); and second, the string pool. Each pattern is encoded as a byte 43 As much as possible of the file is represented as 32 bit integers, as that is especially 110 straightforward tweak, where each node occupies a slot by itself (as opposed to sharing 130 For example, 'a4m5ato' would be represented as `[4, 5, 0, 0, 0]`, then len = 2, shift = 3, and
|
/frameworks/native/cmds/service/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/av/media/libstagefright/id3/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/av/media/libstagefright/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/base/cmds/am/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/av/media/mediaserver/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|
/frameworks/base/packages/InputDevices/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document. 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 89 (except as stated in this section) patent license to make, have made, 100 as of the date such litigation is filed. 119 (d) If the Work includes a "NOTICE" text file as part of its 125 as part of the Derivative Works; within the Source form or 132 or as an addendum to the NOTICE text from the Work, provided 134 as modifying the License. [all …]
|