/third_party/node/deps/npm/node_modules/request/lib/ |
D | oauth.js | 17 var oa = {} 19 oa['oauth_' + i] = _oauth[i] 21 if (!oa.oauth_version) { 22 oa.oauth_version = '1.0' 24 if (!oa.oauth_timestamp) { 25 oa.oauth_timestamp = Math.floor(Date.now() / 1000).toString() 27 if (!oa.oauth_nonce) { 28 oa.oauth_nonce = uuid().replace(/-/g, '') 30 if (!oa.oauth_signature_method) { 31 oa.oauth_signature_method = 'HMAC-SHA1' [all …]
|
/third_party/boost/libs/date_time/test/gregorian/ |
D | testgreg_serialize.cpp | 53 archive::xml_oarchive oa(oss); in main() local 56 archive::text_oarchive oa(oss); in main() 62 save_to(oa, BOOST_SERIALIZATION_NVP(d)); in main() 63 save_to(oa, BOOST_SERIALIZATION_NVP(sv_d1)); in main() 64 save_to(oa, BOOST_SERIALIZATION_NVP(sv_d2)); in main() 65 save_to(oa, BOOST_SERIALIZATION_NVP(dd)); in main() 66 save_to(oa, BOOST_SERIALIZATION_NVP(sv_dd)); in main() 67 save_to(oa, BOOST_SERIALIZATION_NVP(dp)); in main() 68 save_to(oa, BOOST_SERIALIZATION_NVP(gy)); in main() 69 save_to(oa, BOOST_SERIALIZATION_NVP(gm)); in main() [all …]
|
/third_party/boost/libs/serialization/test/ |
D | test_const_pass.cpp | 22 void f1(boost::archive::text_oarchive & oa, const A & a){ in f1() argument 23 oa & a; in f1() 24 oa & BOOST_SERIALIZATION_NVP(a); in f1() 25 oa << a; in f1() 26 oa << BOOST_SERIALIZATION_NVP(a); in f1() 28 void f2(boost::archive::text_oarchive & oa, const A * const & a){ in f2() argument 29 oa & a; in f2() 30 oa & BOOST_SERIALIZATION_NVP(a); in f2() 31 oa << a; in f2() 32 oa << BOOST_SERIALIZATION_NVP(a); in f2() [all …]
|
D | test_check.cpp | 67 boost::archive::text_oarchive oa(s); in main() local 70 oa << c1_out; in main() 73 oa << c1_non_const_out; // warn check_object_tracking in main() 76 oa << c1_ptr_out; // warn check_pointer_level in main() 79 oa << c2_ptr_out; // error check_object_versioning in main() 82 oa << c3_ptr_out; // warning check_pointer_tracking in main() 85 oa << c2_out; // error check_object_versioning in main() 106 boost::archive::text_oarchive oa(s); in main() local 109 oa << BOOST_SERIALIZATION_NVP(c1_out); in main() 112 oa << BOOST_SERIALIZATION_NVP(c1_non_const_out); // warn check_object_tracking in main() [all …]
|
D | test_dll_simple.cpp | 45 boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test1() local 46 oa << boost::serialization::make_nvp("a", a); in test1() 68 boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test2() local 69 boost::archive::polymorphic_oarchive & poa(oa); in test2() 93 boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test3() local 94 oa << boost::serialization::make_nvp("a", a); in test3() 117 boost::archive::polymorphic_text_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test4() local 118 boost::archive::polymorphic_oarchive & poa(oa); in test4() 145 boost::archive::text_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test5() local 146 oa << boost::serialization::make_nvp("b", b); in test5() [all …]
|
D | test_reset_object_address.cpp | 44 boost::archive::text_oarchive oa(ss); in test1() local 45 oa << a; in test1() 86 boost::archive::text_oarchive oa(ss); in test2() local 87 oa << b; in test2() 88 oa << b_ptr; in test2() 129 boost::archive::text_oarchive oa(ss); in test3() local 130 oa << d; in test3() 131 oa << b_ptr; in test3() 201 boost::archive::text_oarchive oa(ss); in test4() local 202 oa << f; in test4() [all …]
|
D | test_unregistered.cpp | 78 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_unregistered1() local 86 oa << BOOST_SERIALIZATION_NVP(rb1); in save_unregistered1() 133 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_unregistered2() local 141 oa << BOOST_SERIALIZATION_NVP(rd1); in save_unregistered2() 186 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_registered() local 193 oa.register_type(static_cast<polymorphic_derived1 *>(NULL)); in save_registered() 194 oa.register_type(static_cast<polymorphic_derived2 *>(NULL)); in save_registered() 195 oa << BOOST_SERIALIZATION_NVP(rb1); in save_registered() 196 oa << BOOST_SERIALIZATION_NVP(rb2); in save_registered() 251 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_unregistered_pointer() local [all …]
|
D | test_registered.cpp | 60 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_derived() local 67 oa.register_type(static_cast<polymorphic_derived1 *>(NULL)); in save_derived() 68 oa.register_type(static_cast<polymorphic_derived2 *>(NULL)); in save_derived() 69 oa << BOOST_SERIALIZATION_NVP(rd1); in save_derived() 70 oa << BOOST_SERIALIZATION_NVP(rd2); in save_derived() 77 oa << BOOST_SERIALIZATION_NVP(rb1); in save_derived() 78 oa << BOOST_SERIALIZATION_NVP(rb2); in save_derived() 173 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save_registered() local 180 oa.register_type(static_cast<polymorphic_derived1 *>(NULL)); in save_registered() 181 oa.register_type(static_cast<polymorphic_derived2 *>(NULL)); in save_registered() [all …]
|
D | test_variant.cpp | 94 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_type() local 95 oa << boost::serialization::make_nvp("written", gets_written); in test_type() 128 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in do_bad_read() local 129 oa << BOOST_SERIALIZATION_NVP(big_variant); in do_bad_read() 187 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_pointer() local 188 oa << boost::serialization::make_nvp("written", v); in test_pointer() 190 oa << boost::serialization::make_nvp("written", h_ptr); in test_pointer() 219 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_variant_set() local 223 oa << boost::serialization::make_nvp("written", set); in test_variant_set() 225 oa << boost::serialization::make_nvp("written", h_ptr); in test_variant_set() [all …]
|
D | test_shared_ptr_132.cpp | 91 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save() local 92 oa << BOOST_SERIALIZATION_NVP(spa); in save() 131 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save2() local 132 oa << BOOST_SERIALIZATION_NVP(first); in save2() 133 oa << BOOST_SERIALIZATION_NVP(second); in save2() 178 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save3() local 179 oa << BOOST_SERIALIZATION_NVP(third); in save3() 180 oa << BOOST_SERIALIZATION_NVP(first); in save3() 181 oa << BOOST_SERIALIZATION_NVP(second); in save3()
|
D | test_optional.cpp | 61 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_main() local 62 oa << boost::serialization::make_nvp("aoptional1",aoptional1); in test_main() 63 oa << boost::serialization::make_nvp("aoptional2",aoptional2); in test_main() 64 oa << boost::serialization::make_nvp("aoptional3",aoptional3); in test_main() 65 oa << boost::serialization::make_nvp("aoptional4",aoptional4); in test_main() 66 oa << boost::serialization::make_nvp("aoptional5",aoptional5); in test_main() 67 oa << boost::serialization::make_nvp("aoptional6",aoptional6); in test_main()
|
D | test_set_hashed.cpp | 54 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_set() local 55 oa << boost::serialization::make_nvp("aset", aset); in test_set() 77 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_multiset() local 78 oa << boost::serialization::make_nvp("amultiset", amultiset); in test_multiset() 115 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_hash_set() local 116 oa << boost::serialization::make_nvp("ahash_set", ahash_set); in test_hash_set() 145 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_hash_multiset() local 146 oa << boost::serialization::make_nvp("ahash_multiset", ahash_multiset); in test_hash_multiset() 194 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_unordered_set() local 195 oa << boost::serialization::make_nvp("anunordered_set", anunordered_set); in test_unordered_set() [all …]
|
D | test_binary.cpp | 87 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_main() local 88 oa << boost::serialization::make_nvp( in test_main() 95 oa << boost::serialization::make_nvp( in test_main() 102 oa << boost::serialization::make_nvp( in test_main() 109 oa << boost::serialization::make_nvp( in test_main() 116 oa << BOOST_SERIALIZATION_NVP(a); in test_main() 119 oa << BOOST_SERIALIZATION_NVP(i); in test_main()
|
D | test_shared_ptr.cpp | 101 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save() local 102 oa << BOOST_SERIALIZATION_NVP(spa); in save() 137 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save2() local 138 oa << BOOST_SERIALIZATION_NVP(first); in save2() 139 oa << BOOST_SERIALIZATION_NVP(second); in save2() 183 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save3() local 184 oa << BOOST_SERIALIZATION_NVP(third); in save3() 185 oa << BOOST_SERIALIZATION_NVP(first); in save3() 186 oa << BOOST_SERIALIZATION_NVP(second); in save3() 233 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in save4() local [all …]
|
D | test_tracking.cpp | 52 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in TEST_CLASS() local 57 oa << BOOST_SERIALIZATION_NVP(an) << BOOST_SERIALIZATION_NVP(an); in TEST_CLASS() 59 oa << BOOST_SERIALIZATION_NVP(as) << BOOST_SERIALIZATION_NVP(as); in TEST_CLASS() 61 oa << BOOST_SERIALIZATION_NVP(aa) << BOOST_SERIALIZATION_NVP(aa); in TEST_CLASS() 67 oa << BOOST_SERIALIZATION_NVP(pan) << BOOST_SERIALIZATION_NVP(pan); in TEST_CLASS() 69 oa << BOOST_SERIALIZATION_NVP(pas) << BOOST_SERIALIZATION_NVP(pas); in TEST_CLASS() 71 oa << BOOST_SERIALIZATION_NVP(paa) << BOOST_SERIALIZATION_NVP(paa); in TEST_CLASS()
|
D | test_map.cpp | 73 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_map() local 74 oa << boost::serialization::make_nvp("amap", amap); in test_map() 101 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_map_2() local 102 oa << BOOST_SERIALIZATION_NVP(pb); in test_map_2() 103 oa << BOOST_SERIALIZATION_NVP(pa); in test_map_2() 129 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_multimap() local 130 oa << boost::serialization::make_nvp("amultimap", amultimap); in test_multimap()
|
D | test_set.cpp | 55 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_set() local 56 oa << boost::serialization::make_nvp("aset", aset); in test_set() 58 oa << boost::serialization::make_nvp("a_ptr", a_ptr); in test_set() 86 test_oarchive oa(os, TEST_ARCHIVE_FLAGS); in test_multiset() local 87 oa << boost::serialization::make_nvp("amultiset", amultiset); in test_multiset() 89 oa << boost::serialization::make_nvp("a_ptr", a_ptr); in test_multiset()
|
/third_party/json/include/nlohmann/detail/output/ |
D | binary_writer.hpp | 39 explicit binary_writer(output_adapter_t<CharType> adapter) : oa(adapter) in binary_writer() 41 JSON_ASSERT(oa); in binary_writer() 74 oa->write_character(to_char_type(0xF6)); in write_cbor() 80 oa->write_character(j.m_value.boolean in write_cbor() 99 oa->write_character(to_char_type(0x18)); in write_cbor() 104 oa->write_character(to_char_type(0x19)); in write_cbor() 109 oa->write_character(to_char_type(0x1A)); in write_cbor() 114 oa->write_character(to_char_type(0x1B)); in write_cbor() 129 oa->write_character(to_char_type(0x38)); in write_cbor() 134 oa->write_character(to_char_type(0x39)); in write_cbor() [all …]
|
/third_party/boost/libs/date_time/test/posix_time/ |
D | testtime_serialize.cpp | 57 archive::xml_oarchive oa(oss); in main() local 60 archive::text_oarchive oa(oss); in main() 65 save_to(oa, BOOST_SERIALIZATION_NVP(pt)); in main() 66 save_to(oa, BOOST_SERIALIZATION_NVP(sv_pt1)); in main() 67 save_to(oa, BOOST_SERIALIZATION_NVP(sv_pt2)); in main() 68 save_to(oa, BOOST_SERIALIZATION_NVP(tp)); in main() 69 save_to(oa, BOOST_SERIALIZATION_NVP(td)); in main() 70 save_to(oa, BOOST_SERIALIZATION_NVP(sv_td)); in main() 72 save_to(oa, pt); in main() 73 save_to(oa, sv_pt1); in main() [all …]
|
/third_party/mesa3d/src/intel/perf/ |
D | intel_perf_query.c | 242 } oa; member 744 perf_cfg->vtbl.emit_mi_report_perf_count(perf_ctx->ctx, query->oa.bo, in snapshot_query_layout() 746 query->oa.begin_report_id + in snapshot_query_layout() 753 perf_cfg->vtbl.store_register_mem(perf_ctx->ctx, query->oa.bo, in snapshot_query_layout() 851 if (query->oa.bo) { in intel_perf_begin_query() 852 perf_cfg->vtbl.bo_unreference(query->oa.bo); in intel_perf_begin_query() 853 query->oa.bo = NULL; in intel_perf_begin_query() 856 query->oa.bo = perf_cfg->vtbl.bo_alloc(perf_ctx->bufmgr, in intel_perf_begin_query() 861 void *map = perf_cfg->vtbl.bo_map(perf_ctx->ctx, query->oa.bo, MAP_WRITE); in intel_perf_begin_query() 863 perf_cfg->vtbl.bo_unmap(query->oa.bo); in intel_perf_begin_query() [all …]
|
/third_party/libwebsockets/lib/roles/ws/ext/ |
D | extension.c | 52 struct lws_ext_option_arg oa; in lws_ext_parse_options() local 54 oa.option_name = NULL; in lws_ext_parse_options() 75 oa.start = NULL; in lws_ext_parse_options() 76 oa.len = 0; in lws_ext_parse_options() 90 oa.option_index = (int)n; in lws_ext_parse_options() 92 oa.option_index); in lws_ext_parse_options() 119 if (opts[oa.option_index].type == EXTARG_DEC) in lws_ext_parse_options() 127 if (opts[oa.option_index].type == EXTARG_NONE) in lws_ext_parse_options() 138 oa.start = in; in lws_ext_parse_options() 152 if (oa.start) in lws_ext_parse_options() [all …]
|
/third_party/boost/boost/mpi/collectives/ |
D | broadcast.hpp | 28 const packed_oarchive& oa, 36 broadcast<packed_oarchive>(const communicator& comm, packed_oarchive& oa, 53 const packed_skeleton_oarchive& oa, 62 packed_skeleton_oarchive& oa, int root); 111 packed_oarchive oa(comm); in broadcast_impl() local 113 oa << values[i]; in broadcast_impl() 115 std::size_t asize = oa.size(); in broadcast_impl() 117 void const* aptr = oa.address(); in broadcast_impl()
|
/third_party/boost/libs/mpi/src/ |
D | broadcast.cpp | 21 const packed_oarchive& oa, in broadcast() argument 38 *it++ = detail::packed_archive_isend(comm, dest, tag, oa); in broadcast() 46 broadcast<packed_oarchive>(const communicator& comm, packed_oarchive& oa, in broadcast() argument 49 broadcast(comm, const_cast<const packed_oarchive&>(oa), root); in broadcast() 83 const packed_skeleton_oarchive& oa, in broadcast() argument 86 broadcast(comm, oa.get_skeleton(), root); in broadcast() 92 packed_skeleton_oarchive& oa, int root) in broadcast() argument 94 broadcast(comm, oa.get_skeleton(), root); in broadcast()
|
/third_party/boost/libs/optional/test/ |
D | optional_test_assign.cpp | 18 boost::optional<int> oa, ob(1); in test_assignment_to_empty() local 19 BOOST_TEST(!oa); in test_assignment_to_empty() 22 oa = ob; in test_assignment_to_empty() 23 BOOST_TEST(oa); in test_assignment_to_empty()
|
/third_party/boost/libs/serialization/example/ |
D | demo_shared_ptr.cpp | 98 boost::archive::text_oarchive oa(ofs); in main() local 99 oa << spa; in main() 100 oa << spa1; in main() 135 boost::archive::text_oarchive oa(ofs); in main() local 136 oa.register_type(static_cast<B *>(NULL)); in main() 137 oa << spa; in main() 138 oa << spa1; in main()
|