/commonlibrary/ets_utils/js_api_module/url/test/ |
D | test_napi.cpp | 68 napi_value output = nullptr; in StrToNapiValue() local 69 napi_create_string_utf8(env, result.c_str(), result.size(), &output); in StrToNapiValue() 70 return output; in StrToNapiValue() 90 std::string output = ""; in ReviseStr() local 98 output += reviseChar[charaEncode]; in ReviseStr() 100 output += str.substr(i, 1); in ReviseStr() 105 output += output1 + output2; in ReviseStr() 110 output += output1 + output2 + output3; in ReviseStr() 118 output += output1 + output2 + output3 + output4; in ReviseStr() 121 return output; in ReviseStr() [all …]
|
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/ |
D | base64.rs | 17 let mut output = Vec::new(); in encode() localVariable 20 output.push(BASE64_TABLE[((chunk[0] >> 2) & 0x3f) as usize]); in encode() 22 output.push(BASE64_TABLE[(((chunk[0] & 0x3) << 4) | ((chunk[1] >> 4) & 0xf)) as usize]); in encode() 23 output.push(BASE64_TABLE[(((chunk[1] & 0xf) << 2) | ((chunk[2] >> 6) & 0x3)) as usize]); in encode() 24 output.push(BASE64_TABLE[(chunk[2] & 0x3f) as usize]); in encode() 26 output.push(BASE64_TABLE[(((chunk[0] & 0x3) << 4) | ((chunk[1] >> 4) & 0xf)) as usize]); in encode() 27 output.push(BASE64_TABLE[((chunk[1] & 0xf) << 2) as usize]); in encode() 28 output.push(b'='); in encode() 30 output.push(BASE64_TABLE[((chunk[0] & 0x3) << 4) as usize]); in encode() 31 output.push(b'='); in encode() [all …]
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/ |
D | task_handle.rs | 70 fn finish(self, state: usize, output: Result<T::Output, ScheduleError>) { in finish() 73 self.inner().send_result(output); in finish() 97 let output = self.get_canceled(); in run() localVariable 98 return self.finish(cur, Err(output)); in run() 114 Ok(Poll::Ready(output)) => { in run() 116 self.finish(cur, output); in run() 125 let output = self.get_canceled(); in run() localVariable 126 self.finish(state, Err(output)); in run() 132 let output = Err(ScheduleError::new(ErrorKind::Panic, "panic happen")); in run() localVariable 133 self.finish(cur, output); in run() [all …]
|
D | raw.rs | 183 fn turning_to_store_data(&self, output: std::result::Result<T::Output, ScheduleError>) { in turning_to_store_data() 186 *stage = Stage::StoreData(output); in turning_to_store_data() 194 Stage::StoreData(output) => output, in turning_to_get_data() 216 pub(crate) fn send_result(&self, output: Result<T::Output, ScheduleError>) { in send_result() 217 self.turning_to_store_data(output); in send_result()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/ |
D | read_task.rs | 152 output: &'a mut String, field 162 output: dst, in new() 172 output: &mut String, in io_string_result() 176 *output = string; in io_string_result() 183 *output = String::from_utf8(vector).expect("Invalid utf-8 data"); in io_string_result() 190 *output = string; in io_string_result() 197 *output = String::from_utf8(vector).expect("Invalid utf-8 data"); in io_string_result() 211 let (buf, output, reader, read_len) = in poll() 212 (&mut me.buf, &mut me.output, &mut me.reader, &mut me.r_len); in poll() 216 io_string_result(res, trans, *read_len, output) in poll() [all …]
|
/commonlibrary/ets_utils/js_util_module/container/ |
D | tsconfig.json | 6 …JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ 7 "outDir": "./jscode", /* Specify an output folder for all emitted files. */
|
/commonlibrary/ets_utils/js_util_module/util/ |
D | tsconfig.json | 6 …JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */ 7 …"outDir": "./out", /* Specify an output folder for all emitted …
|
/commonlibrary/ets_utils/js_api_module/uri/ |
D | tsconfig.json | 6 …"outDir": "./out", /* Specify an output folder for all emitted …
|
/commonlibrary/ets_utils/js_api_module/buffer/ |
D | tsconfig.json | 6 "outDir": "./out", /* Specify an output folder for all emitted files. */
|
/commonlibrary/ets_utils/js_api_module/convertxml/ |
D | tsconfig.json | 6 "outDir": "./out", /* Specify an output folder for all emitted files. */
|
/commonlibrary/ets_utils/js_api_module/url/ |
D | tsconfig.json | 6 …"outDir": "./out", /* Specify an output folder for all emitted …
|
/commonlibrary/ets_utils/js_api_module/xml/ |
D | tsconfig.json | 6 "outDir": "./out", /* Specify an output folder for all emitted files. */
|
/commonlibrary/ets_utils/js_api_module/uri/test/ |
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_sys_module/test/unittest/ |
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_api_module/buffer/test/ |
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_api_module/convertxml/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_api_module/xml/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_sys_module/timer/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_concurrent_module/worker/test/ |
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_concurrent_module/test/ |
D | test_ark.cpp | 33 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_util_module/util/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_concurrent_module/taskpool/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/ets_utils/js_sys_module/console/test/ |
D | test_ark.cpp | 32 testing::GTEST_FLAG(output) = "xml:./"; in main()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/examples/ |
D | ylong_runtime_memory.rs | 40 .output() in get_memory_info()
|