/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/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 …]
|
D | internals.md | 104 * Zero padding for 32-bit number may be placed after or before the actual type, according to the en… 113 …or numbers with fraction, and integers larger than 64-bit range, they will be stored as `double` w… 176 A simple implementation will be simply: 184 However, this requires 4 comparisons and a few branching for each character. This was found to be a… 274 to make the grammar be LL(1). 312 Finally the parsing table can be constructed from FIRST and FOLLOW set: 342 In this way the generation of array values or object members would be a single state transition, 351 in its internal stack, which may be different from a conventional implementation.
|
/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/experimental/ |
D | README | 3 of public release, but which might be useful for someone as a test 15 default, and may be arbitrarily broken. Caveat user! Individual 16 packages must be built directly with "mmm" or equivalent: 20 Like a communal fridge, this directory will be cleaned periodically.
|
/packages/apps/Dialer/java/com/android/dialer/logging/ |
D | dialer_impression.proto | 9 // Event enums to be used for Impression Logging in Dialer. 10 // It's perfectly acceptable for this enum to be large 11 // Values should be from 1000 to 100000. 54 // they were going to be reporting this as spam. There is no option for the user in this case 76 // Subtract this value from SPAM_AFTER_CALL_NOTIFICATION_MARKED_NUMBER_AS_SPAM. It would be 118 // This is mainly so we can assign an impression event to a call event i.e so that we may be 172 // Voicemail call log entry was expanded. Could be either if the user tapped the voicemail
|
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/ |
D | third_party_licenses | 137 that such additional attribution notices cannot be construed 149 by You to the Licensor shall be under the terms and conditions of 173 negligent acts) or agreed to in writing, shall any Contributor be 331 that such additional attribution notices cannot be construed 343 by You to the Licensor shall be under the terms and conditions of 367 negligent acts) or agreed to in writing, shall any Contributor be 525 that such additional attribution notices cannot be construed 537 by You to the Licensor shall be under the terms and conditions of 561 negligent acts) or agreed to in writing, shall any Contributor be 719 that such additional attribution notices cannot be construed [all …]
|
/packages/apps/Test/connectivity/sl4n/rapidjson/ |
D | readme.md | 36 * RapidJSON is fast. Its performance can be comparable to `strlen()`. It also optionally supports S… 44 More features can be read [here](doc/features.md). 46 …a exchange format. RapidJSON should be in fully compliance with RFC7159/ECMA-404. More information… 78 directory. The generated documentation will be available in `doc/html`
|
/packages/apps/UnifiedEmail/unified_src/ |
D | README | 1 This is a temporary directory that is being used to enable email and Gmail content to be shown 4 This code should only be used for development. For shipping, this code (or something similar) 9 AccountCacheProvider. All subsequent uris will actually be handled by the appropriate application.
|
/packages/apps/Messaging/build/ |
D | README | 1 Files in this folder are build extensions specific to the Bugle project, but currently could be mer… 3 …alidate java from google3. The config file is baked into the jar, but can be updated with a littl… 8 …/teams/devtools/glint/linters/live/google-style-checker_deploy.jar and can be pulled from there as…
|
/packages/services/Telecomm/proto/ |
D | telecom.proto | 98 // If the event is the first, this will be negative. 114 // No unspecified field to define. This enum to be used only as values for a bitmask. 126 // If the event is the first, this will be negative. 229 // The call will be tried again without a connection manager.
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/src/com/android/inputmethod/keyboard/internal/ |
D | KeyboardTextsTable.tmpl | 29 * This file must be updated when any text resources in keyboard layout files have been changed. 31 * and should be defined in 39 * The updated source file will be generated to the following path (this file).
|
/packages/apps/TV/ |
D | open_source_project.LICENSE | 121 that such additional attribution notices cannot be construed 133 by You to the Licensor shall be under the terms and conditions of 157 negligent acts) or agreed to in writing, shall any Contributor be 184 the brackets!) The text should be enclosed in the appropriate 186 file or class name and description of purpose be included on the
|
/packages/inputmethods/OpenWnn/ |
D | NOTICE | 40 …xt from the Work, provided that such additional attribution notices cannot be construed as modifyi… 44 …ntionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and … 50 …and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for da… 57 …hould be enclosed in the appropriate comment syntax for the file format. We also recommend that a …
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
D | AddressListParser.jj | 432 throw new ParseException("Words in local part must be separated by '.'"); 459 throw new ParseException("Atoms in domain names must be separated by '.'"); 498 // This is because the outermost level must be treated 534 // if this is ever changed to not be a SKIP, need
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
D | BatteryEntry.java | 70 BatteryEntry be; in run() local 79 be = mRequestQueue.remove(0); in run() 81 be.loadNameAndIcon(); in run()
|
/packages/apps/StorageManager/tests/unit/ |
D | README | 4 The test apk then needs to be installed onto your test device via for example 16 More general information can be found at
|