/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
D | documenttest.cpp | 91 TEST(Document, Parse) { in TEST() argument 116 TEST(Document, ParseStream_EncodedInputStream) { in TEST() argument 157 TEST(Document, ParseStream_AutoUTFInputStream) { in TEST() argument 164 Document d; in TEST() 196 TEST(Document, Swap) { in TEST() argument 197 Document d1; in TEST() 198 Document::AllocatorType& a = d1.GetAllocator(); in TEST() 212 Document d2; in TEST() 224 Document().Swap(d2); in TEST() 251 TEST(Document, AcceptWriter) { in TEST() argument [all …]
|
D | pointertest.cpp | 568 Document d; in TEST() 608 Document d; in TEST() 631 Document d; in TEST() 635 Document::AllocatorType& a = d.GetAllocator(); in TEST() 684 Document d; in TEST() 736 Document d; in TEST() 738 Document::AllocatorType& a = d.GetAllocator(); in TEST() 796 Document d; in TEST() 855 Document d; in TEST() 857 Document::AllocatorType& a = d.GetAllocator(); in TEST() [all …]
|
D | namespacetest.cpp | 44 typedef RAPIDJSON_NAMESPACE::Document Document; in TEST() typedef 61 Document doc; in TEST()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 35 import android.provider.DocumentsContract.Document; 74 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME, 75 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 549 row.add(Document.COLUMN_DOCUMENT_ID, TYPE_IMAGES_ROOT); in includeImagesRootDocument() 550 row.add(Document.COLUMN_DISPLAY_NAME, getContext().getString(R.string.root_images)); in includeImagesRootDocument() 551 row.add(Document.COLUMN_FLAGS, in includeImagesRootDocument() 552 Document.FLAG_DIR_PREFERS_GRID | Document.FLAG_DIR_PREFERS_LAST_MODIFIED); in includeImagesRootDocument() 553 row.add(Document.COLUMN_MIME_TYPE, Document.MIME_TYPE_DIR); in includeImagesRootDocument() 558 row.add(Document.COLUMN_DOCUMENT_ID, TYPE_VIDEOS_ROOT); in includeVideosRootDocument() 559 row.add(Document.COLUMN_DISPLAY_NAME, getContext().getString(R.string.root_videos)); in includeVideosRootDocument() [all …]
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadStorageProvider.java | 35 import android.provider.DocumentsContract.Document; 63 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_MIME_TYPE, Document.COLUMN_DISPLAY_NAME, 64 Document.COLUMN_SUMMARY, Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, 65 Document.COLUMN_SIZE, 115 if (Document.MIME_TYPE_DIR.equals(mimeType)) { in createDocument() 322 row.add(Document.COLUMN_DOCUMENT_ID, DOC_ID_ROOT); in includeDefaultDocument() 323 row.add(Document.COLUMN_MIME_TYPE, Document.MIME_TYPE_DIR); in includeDefaultDocument() 324 row.add(Document.COLUMN_FLAGS, in includeDefaultDocument() 325 Document.FLAG_DIR_PREFERS_LAST_MODIFIED | Document.FLAG_DIR_SUPPORTS_CREATE); in includeDefaultDocument() 348 int extraFlags = Document.FLAG_PARTIAL; in includeDownloadFromCursor() [all …]
|
/packages/apps/Test/connectivity/sl4n/utils/ |
D | command_receiver.cpp | 38 void _clean_result(rapidjson::Document &doc) { in _clean_result() 43 void initiate(rapidjson::Document &doc) { in initiate() 48 void bluetooth_binder_get_local_name_wrapper(rapidjson::Document &doc) { in bluetooth_binder_get_local_name_wrapper() 69 void bluetooth_binder_init_interface_wapper(rapidjson::Document &doc) { in bluetooth_binder_init_interface_wapper() 86 void bluetooth_binder_set_local_name_wrapper(rapidjson::Document &doc) { in bluetooth_binder_set_local_name_wrapper() 113 void bluetooth_binder_get_local_address_wrapper(rapidjson::Document &doc) { in bluetooth_binder_get_local_address_wrapper() 134 void bluetooth_binder_enable_wrapper(rapidjson::Document &doc) { in bluetooth_binder_enable_wrapper() 151 void bluetooth_binder_register_ble_wrapper(rapidjson::Document &doc) { in bluetooth_binder_register_ble_wrapper() 169 void bluetooth_binder_set_adv_settings_wrapper(rapidjson::Document &doc) { in bluetooth_binder_set_adv_settings_wrapper() 250 void CommandReceiver::Call(rapidjson::Document& doc) { in Call()
|
D | command_receiver.h | 21 typedef void (*MFP)(rapidjson::Document&); 39 void Call(rapidjson::Document& doc);
|
D | common_utils.h | 26 static bool IsParamLengthMatching(rapidjson::Document& doc,
|
D | common_utils.cpp | 22 bool CommonUtils::IsParamLengthMatching(rapidjson::Document& doc, in IsParamLengthMatching()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/ |
D | architecture.dot | 32 Document 39 Value -> Document 40 Handler -> Document 48 Document -> Reader [label="uses"]
|
D | simpledom.dot | 20 Document2 [label="(Modified) Document"] 27 label = "Document"
|
D | tutorial.dot | 15 label = "Document"
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | stream.md | 24 Document d; 28 Since this is very common usage, `Document::Parse(const char*)` is provided to do exactly the same … 33 Document d; 85 Document d; 105 Document d; 153 Document d; // Document is GenericDocument<UTF8<> > 168 Document d; // Document is GenericDocument<UTF8<> > 206 Document d; // Document is GenericDocument<UTF8<> > 223 void WriteJSONFile(FILE* fp, UTFType type, bool putBOM, const Document& d) { 322 Document d; [all …]
|
D | pointer.md | 5 JSON Pointer is a standardized ([RFC6901]) way to select a value inside a JSON Document (DOM). This… 38 Document d; 83 Document d; 139 Document d; 145 ## Resolving Document and Value 149 The other functions have two groups of signature. One group uses `Document& document` as parameter,… 151 All examples above do not require an allocator parameter, because the parameter is a `Document&`. B… 157 document_ = new Document(); 174 Document* document_;
|
D | tutorial.md | 3 This tutorial introduces the basics of the Document Object Model(DOM) API. 9 # Value & Document {#ValueDocument} 11 Each JSON value is stored in a type called `Value`. A `Document`, representing the DOM, contains th… 30 Parse it into a `Document`: 37 Document document; 211 For example, after parsing a the following JSON to `Document d`: 248 When creating a Value or Document by default constructor, its type is Null. To change its type, cal… 251 Document d; // Null 295 Document d; 317 Document d; [all …]
|
D | dom.md | 3 Document Object Model(DOM) is an in-memory representation of JSON for query and manipulation. The b… 9 In the tutorial, `Value` and `Document` was used. Similarly to `std::string`, these are actually `… 25 typedef GenericDocument<UTF8<> > Document; 61 …ocator class is used when allocating/deallocating memory for `Document`/`Value`. `Document` owns, … 69 `Document` provides several functions for parsing. In below, (1) is the fundamental function, while… 97 // (7) Normal parsing of a string, using same Encoding of Document 121 …coding is in the stream. This can be differed to the `Encoding` of the `Document`. See [Transcodin… 127 When the parse processing succeeded, the `Document` contains the parse results. When there is an er… 159 Document d; 202 Document d;
|
D | encoding.md | 100 Document d; // UTF8<> 103 Writer<StringBuffer, Document::EncodingType, ASCII<> > writer(buffer); 110 ASCII *cannot* be used in memory (encoding of `Document` or target encoding of `Reader`), as it can…
|
D | features.md | 44 * DOM (Document Object Model) style API 62 ## DOM (Document)
|
D | faq.md | 79 Document Object Model (DOM) is an in-memory representation of JSON for query and manipulation. 110 Document d; 128 Document person; 131 Document address; 163 ## Document/Value (DOM)
|
D | sax.md | 174 …()` and `size_t GetErrorOffset()` to obtain the error states. Actually `Document` uses these `Read… 180 …t may be a good choice to use `Writer` directly, instead of building a `Document` and then stringi… 234 … event handler concept. It can be used to handle events from `Reader`, `Document` or other event p… 284 `Document`'s parsing capability is completely based on `Reader`. Actually `Document` is a handler w…
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
D | rapidjsontest.cpp | 62 Document doc_; 134 Document doc; in TEST_F() 143 Document doc; in TEST_F() 151 Document doc; in TEST_F() 159 Document doc; in TEST_F() 178 Document doc; in TEST_F() 188 Document doc; in TEST_F()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/ |
D | tutorial.cpp | 18 Document document; // Default template parameter uses UTF8 and MemoryPoolAllocator. in main() 103 Document::AllocatorType& allocator = document.GetAllocator(); in main()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/ |
D | CHANGELOG.md | 20 * Change Document::ParseStream() to use stack allocator for Reader (ffbe38614732af8e0b3abdc8b50071f… 44 * Remove an invalid `Document::ParseInsitu()` API (e7f1c6dd08b522cfcf9aed58a333bd9a0c0ccbeb).
|
/packages/apps/Test/connectivity/sl4n/facades/wifi/ |
D | wifi_facade.cpp | 209 void wifi_init_wrapper(rapidjson::Document &doc) { in wifi_init_wrapper() 226 void wifi_get_supported_feature_set_wrapper(rapidjson::Document &doc) { in wifi_get_supported_feature_set_wrapper()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/ |
D | simpledom.cpp | 14 Document d; in main()
|