/packages/apps/LegacyCamera/jni/feature_mos/doc/ |
D | feature_mos_API_doxyfile | 3 # This file describes the settings to be used by the documentation system 6 # All text after a hash (#) is considered a comment and will be ignored 9 # For lists items can also be appended using: 11 # Values that contain spaces should be placed between quotes (" ") 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 31 # This could be handy for archiving the generated documentation or 37 # base path where the generated documentation will be put. 38 # If a relative path is entered, it will be relative to the location 39 # where doxygen was started. If left blank the current directory will be used. 46 # Enabling this option can be useful when feeding doxygen a huge amount of [all …]
|
/packages/apps/LegacyCamera/jni/feature_stab/doc/ |
D | dbreg_API_doxyfile | 3 # This file describes the settings to be used by the documentation system 6 # All text after a hash (#) is considered a comment and will be ignored 9 # For lists items can also be appended using: 11 # Values that contain spaces should be placed between quotes (" ") 30 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 31 # This could be handy for archiving the generated documentation or 37 # base path where the generated documentation will be put. 38 # If a relative path is entered, it will be relative to the location 39 # where doxygen was started. If left blank the current directory will be used. 46 # Enabling this option can be useful when feeding doxygen a huge amount of [all …]
|
/packages/services/Car/car-lib/src/android/car/navigation/ |
D | navigation_state.proto | 29 // must be added to the URI parameter list to request an image size. 31 // be returned, however. 35 // Color: Images can be either "tintable" or not. A "tintable" image is such that 37 // (all other channels) can be altered without losing information 41 // it is assumed that the exact same image will always be returned. 42 // This means that it should be safe to cache an image once requested 46 // A URI defining the location that the image can be retrieved from. 48 // When requesting the image from this URI, a desired image size must be 51 // w: width desired maximum width (must be greater than 0) 52 // h: height desired maximum height (must be greater than 0) [all …]
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | Doxyfile.in | 3 # This file describes the settings to be used by the documentation system 9 # All text after a single hash (#) is considered a comment and will be ignored. 12 # For lists, items can also be appended using: 14 # Values that contain spaces should be placed between quotes (\" \"). 37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This 38 # could be handy for archiving the generated documentation or if some version 57 # into which the generated documentation will be written. If a relative path is 58 # entered, it will be relative to the location where doxygen was started. If 59 # left blank the current directory will be used. 66 # option can be useful when feeding doxygen a huge amount of source files, where [all …]
|
D | encoding.md | 9 > (in §3) JSON text SHALL be encoded in Unicode. The default encoding is UTF-8. 11 …be represented using UTF-8, UTF-16, or UTF-32. When JSON is written in UTF-8, JSON is 8bit compati… 67 …Value<Encoding>` and `GenericDocument<Encoding>` indicates the encoding to be used to represent JS… 80 … be a little bit confusing, but each `CharType` stores a code unit, not a character (code point). … 82 For `UTF16(LE|BE)`, `UTF32(LE|BE)`, the `CharType` must be integer type of at least 2 and 4 bytes … 84 Note that C++11 introduces `char16_t` and `char32_t`, which can be used for `UTF16` and `UTF32` res… 88 …ngs will be used in the memory or streams. However, sometimes we may need to read/write files of d… 90 …s purpose. It chooses which encoding to be used according to the input or output stream. Currently… 94 …can represent unicode characters in escaped sequence `\uXXXX`, JSON can always be encoded in ASCII. 108 ASCII can be used in input stream. If the input stream contains bytes with values above 127, it wil… [all …]
|
D | dom.md | 65 …e()`. When there is a lot of add and remove operations, this allocator may be preferred. But this … 105 …examples of [stream](doc/stream.md) uses the first three. *In situ* parsing will be described soon. 119 …f only using a single specialization). The downside is the flags needed to be determined in compil… 121 The `SourceEncoding` parameter defines what encoding is in the stream. This can be differed to the … 127 …error, the original DOM is *unchanged*. And the error state of parsing can be obtained by `bool Ha… 144 `kParseErrorNumberTooBig` | Number too big to be stored in `double`. 174 > (In computer science) An algorithm is said to be an in situ algorithm, or in-place algorithm, if … 201 // In situ parsing the buffer into d, buffer will also be modified 211 The JSON strings are marked as const-string. But they may not be really "constant". The life cycle … 218 2. The source encoding in stream and target encoding in document must be the same. [all …]
|
D | sax.md | 53 These events can be easily matched with the JSON, except some event parameters need further explana… 124 … And beware that, the character type depends on the target encoding, which will be explained later. 132 …n `false` and let the `Reader` stop further parsing. And the `Reader` will be in error state with … 180 …use. If your application only need to converts some data into JSON, it may be a good choice to use… 226 …parameters in `EndArray()` and `EndObject()`. An `SizeType` can be passed but it will be simply ig… 234 4. `Writer` implements the event handler concept. It can be used to handle events from `Reader`, `D… 235 5. `Writer` can be optimized for different platforms. 256 …ream` template parameter is the type of output stream. It cannot be deduced and must be specified … 258 The `SourceEncoding` template parameter specifies the encoding to be used in `String(const Ch*, ...… 276 A `Writer` can only output a single JSON, which can be any JSON type at the root. Once the singular… [all …]
|
D | faq.md | 21 …Yes, it is free under MIT license. It can be used in commercial applications. Please check the det… 35 …rs and CPU architecture by the community. But we cannot ensure that it can be run on your particul… 39 … some C++11 features (e.g., move constructor, `noexcept`). RapidJSON shall be compatible with C++0… 61 …hange format. It uses human readable text format. More details of JSON can be referred to [RFC7159… 87 … query and manipulation. SAX is very fast and memory-saving but often more difficult to be applied. 91 …reduce memory consumption and improve performance, but the input JSON will be modified. Check [in-… 95 …The parser generates an error when the input JSON contains invalid syntax, or a value can not be r… 99 …fset (number of characters from the beginning of JSON). The error code can be translated into huma… 103 …Some applications use 64-bit unsigned/signed integers. And these integers cannot be converted into… 177 …Since C string is null-terminated, the length of string needs to be computed via `strlen()`, with … [all …]
|
D | pointer.md | 3 ## Status: experimental, shall be included in v1.1 5 …d ([RFC6901]) way to select a value inside a JSON Document (DOM). This can be analogous to XPath f… 13 A JSON Pointer is a list of zero-to-many tokens, each prefixed by `/`. Each token can be a string o… 78 Since object-oriented calling convention may be non-intuitive, RapidJSON also provides helper funct… 126 …do not exist. If the parent values do not match the tokens, they will also be forced to change the… 147 …ValueByPointer(root, p)`, `root` is a (const) `Value&`. That means, it can be a subtree of the DOM. 205 You may also stringify a `Pointer` to a string or other output streams. This can be done by: 218 If a pointer will be resolved multiple times, it should be construct once, and then apply it to dif… 231 This may be useful for memory constrained systems.
|
D | stream.md | 68 …. It only read a part of JSON from file into buffer, and then let the part be parsed. If it runs o… 91 …ings. If the file is not UTF-8, the byte stream can be wrapped in a `EncodedInputStream`. It will … 126 As mentioned above, UTF-8 byte streams can be read directly. However, UTF-16 and UTF-32 have endian… 130 … may use `EncodedInputStream` and `EncodedOutputStream`. If the stream can be UTF-8, UTF-16LE, UTF… 132 … encoded streams can be applied to streams other than file. For example, you may have a file in me… 136 …`UTF16LE`, defined in `rapidjson/encodings.h`. The second one is the class of stream to be wrapped. 189 Since the characters (code units) may be 8-bit, 16-bit or 32-bit. `AutoUTFInputStream` requires a c… 241 …erent types using templates. A class containing all required interface can be a stream. The Stream… 326 Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due t… 370 Note that, this implementation may not be as efficient as RapidJSON's memory or file streams, due t…
|
D | tutorial.md | 5 … glance](@ref index), a JSON can be parsed into DOM, and then the DOM can be queried and modified … 45 Since the update to RFC 7159, the root of a conforming JSON document can be any JSON value. In ear… 71 JSON null can be queryed by `IsNull()`. 174 JSON provide a single numerical type called Number. Number can be integer or real numbers. RFC 4627… 188 When querying a number, you can check whether the number can be obtained as target type: 199 Note that, an integer value may be obtained in various ways without conversion. For example, A valu… 201 … integer representation to a `double`. Note that, `int` and `unsigned` can be safely convert to `d… 207 According to RFC 4627, JSON strings can contain Unicode character `U+0000`, which must be escaped a… 245 There are several ways to create values. After a DOM tree is created and/or modified, it can be sav… 301 …o.AddMember("contacts", contacts, d.GetAllocator()); // deep clone contacts (may be with lots of … [all …]
|
/packages/apps/Dialer/java/com/android/dialer/glidephotomanager/ |
D | photo_info.proto | 29 // Whether a business icon should be displayed. 32 // Whether a voicemail icon should be displayed. 35 // Whether a "blocked" icon should be displayed. 38 // Whether a "spam" icon should be displayed. 41 // Whether the photo should be badged as video call. 44 // Whether the photo should be badged as RTT call.
|
/packages/apps/Car/libs/car-messenger-common/proto/ |
D | notification_msg.proto | 23 // Message to be sent from the phone SDK to the IHU SDK. 26 // This will be the StatusBarNotification id of the original message 30 // The different types of messages to be sent from the phone SDK. 56 // Message to be sent from the IHU SDK to the phone SDK. 59 // This will be the StatusBarNotification id of the original message 63 // An action request to be fulfilled on the Phone side. 72 // Message to be sent from the Phone SDK to the IHU SDK after an Action 143 // Sends over an avatar icon. This should be sent once per unique sender 198 // As mentioned above, this notification id should be the same on the 199 // phone and the car. This will be the StatusBarNotification id of the
|
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/ |
D | number_attributes.proto | 28 // The name (which may be a person's name or business name, but not a number) 30 // name display preferences change, this field should be rewritten. 46 // The number type as a string to be displayed to the user, for example "Home" 47 // or "Mobile". This column should be updated for the appropriate language 54 // Can the number be reported as invalid through People API 57 // True if the CP2 information is incomplete and needs to be queried at 70 // Whether the number can be reached via a carrier video call.
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | sample.combined | 1 # This is a sample wordlist that can be converted to a binary dictionary 7 # of the file should be `dictionary'. Usual fields are `locale', `description', 14 # should not be considered a typo, but that should never be suggested 15 # explicitly. An entry may be made not a word by adding a `not_a_word' 23 # 15, which is then taken to be the whitelist target of this word.
|
/packages/apps/TimeZoneData/oem_template/data_app/ |
D | README.oem | 17 real version of the app, and some test versions that can be used by the supplied xTS tests. 19 The generated .apks are expected to be signed and checked in as "prebuilts" for the system 22 The main, signed .apk can also be uploaded to an app store and used to update existing 25 See oem_template/data_app_prebuilts for rules that can be used to include the prebuilts in 28 See oem_template/xts for rules that can be used for xTS testing.
|
/packages/apps/Dialer/java/com/android/dialer/theme/ |
D | README.md | 26 AppCompat attribute in a style, be sure to also define the Legacy version as 34 icons/assets that need to be tinted. 38 * Dialer. and Dialer.NoActionBar are the two root themes that should be used 48 you create a custom theme for an activity, be sure your customization will 56 * Colors that can't be theme'd (there aren't many of those, so you probably 58 * Drawables, images, animations, dimensions, styles, ect. that can be (or are) 72 * Add colors that are common throughout the entire app and need be themed. For
|
/packages/services/Telephony/ecc/conversion_toolset_v1/proto/ |
D | protobuf_ecc_data.proto | 31 // Extra rules: There should be at least one EccInfo in this list. 35 // be either 112 or 911. 41 // 112 and 911 shall always be available. 46 // The revision value in ecc/input/eccdata.json should be increased 53 // Extra rules: There should be at least one CountryInfo in this list.
|
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/ |
D | voicemail_transcription.proto | 106 // should be globally unique across all voicemails from all users. 108 // will be returned. 109 // If no transcription_id is provided, one will be generated by the server. 123 // The estimated amount of time in seconds before the transcription will be 126 // the transcript is not guaranteed to be ready by this time. 173 // Schedules a transcription of the given voicemail. The transcript can be 184 // Uploads user's transcription feedback. Feedback will only be collected from
|
/packages/modules/DnsResolver/ |
D | README-DoT.md | 59 or a thread-safe queue, because the socket thread has to be blocked 60 in `poll()` waiting for data from the server, but also has to be woken 63 (There can only be a single thread because [you can't use different threads 83 20 seconds will be closed. This sets the limit of tolerance for slow replies, 94 outstanding queries for 5 minutes will be destroyed at the next query on a different 96 This sets the limit on how long session tickets will be preserved during idle periods, 103 reuse sessions more than once, it should not be possible to hit this limit. 114 For unit testing, we would like to be able to mock out `DnsTlsSocket`. This is
|
/packages/modules/NetworkStack/ |
D | Android.bp | 17 // The network stack can be compiled using system_current (non-finalized) SDK, or finalized system_X 105 // This allows API current code to be treated identically to code in src/ (it will be moved 177 // The permission configuration *must* be included to ensure security of the device 183 // Pre-merge the AndroidManifest for NetworkStackNext, so that its manifest can be merged on top 198 // The permission configuration *must* be included to ensure security of the device 209 // The permission configuration *must* be included to ensure security of the device 294 // The permission configuration *must* be included to ensure security of the device
|
/packages/services/Car/evs/app/ |
D | config.json.readme | 4 // In addition to the configuration file, an image to be used to represent the car is expected 5 // to be provided in CarFromTop.png. 6 // Throughout this file, units of length are arbitrary, but must all be the same units. 12 // Roll is always assumed to be zero.
|
/packages/apps/Car/CompanionDeviceSupport/proto/ |
D | trusted_device_message.proto | 26 // The current version of this proto. Must be positive but declared as an 49 // An acknowledgment for a previous message. The payload will be empty 53 // An error has occurred on the sender of this message. The payload will be 66 // An error message. Should only be sent as `TrustedDeviceMessage.payload` when
|
/packages/services/Car/tests/CarDeveloperOptions/ |
D | README | 1 This module is used to create a CarDeveloperOptions module which can be accessed via Car Settings 4 The module contains a lot of duplicate/dead code from the phone settings project. This will be 9 Settings project in order to make sure that developer options can still be accessed via Car
|
/packages/apps/TV/res/raw/ |
D | third_party_licenses | 16 The above copyright notice and this permission notice shall be included in 150 that such additional attribution notices cannot be construed 162 by You to the Licensor shall be under the terms and conditions of 186 negligent acts) or agreed to in writing, shall any Contributor be 213 the brackets!) The text should be enclosed in the appropriate 215 file or class name and description of purpose be included on the 355 that such additional attribution notices cannot be construed 367 by You to the Licensor shall be under the terms and conditions of 391 negligent acts) or agreed to in writing, shall any Contributor be 418 the brackets!) The text should be enclosed in the appropriate [all …]
|