/commonlibrary/utils_lite/js/builtin/kvstorekit/include/ |
D | nativeapi_kv.h | 29 static JSIValue Set(const JSIValue thisVal, const JSIValue* args, uint8_t argsNum);
|
/commonlibrary/c_utils/docs/en/ |
D | c_utils_timer.md | 16 | virtual uint32_t | **Setup**()<br>Set up "Timer". Do not set up repeatly before shutdown. | 35 1. Set up Timer again would not reset this Timer, but return `TIMER_ERR_INVALID_VALUE`. If a reset …
|
D | c_utils_thread_pool.md | 26 | void | **SetMaxTaskNum**(size_t maxSize)<br>Set the maximum amount of tasks in task queue. |
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/ |
D | schedule_io.rs | 75 Set(u8), enumerator 217 Tick::Set(t) => new_bit.set_by_mask(DRIVER_TICK, t as usize), in set_readiness() 508 let ret = schedule_io.set_readiness(Some(token), Tick::Set(1), |curr| curr); in ut_schedule_io_set_readiness() 532 let ret = schedule_io.set_readiness(Some(token), Tick::Set(1), |curr| curr); in ut_schedule_io_set_readiness()
|
D | driver.rs | 175 .set_readiness(Some(token.0), Tick::Set(self.tick), |curr| curr | ready) in dispatch()
|
/commonlibrary/utils_lite/js/builtin/kvstorekit/src/ |
D | nativeapi_kv.cpp | 258 JSI::SetModuleAPI(exports, "set", NativeapiKv::Set); in InitNativeApiKv() 268 JSIValue NativeapiKv::Set(const JSIValue thisVal, const JSIValue* args, uint8_t argsNum) in Set() function in OHOS::ACELite::NativeapiKv
|
/commonlibrary/ets_utils/js_api_module/buffer/ |
D | js_buffer.h | 51 void Set(uint32_t index, uint8_t value);
|
D | js_buffer.cpp | 273 void Buffer::Set(uint32_t index, uint8_t value) in Set() function in OHOS::buffer::Buffer
|
D | native_module_buffer.cpp | 634 static napi_value Set(napi_env env, napi_callback_info info) in Set() function 650 buf->Set(index, value); in Set() 1057 DECLARE_NAPI_FUNCTION("set", Set), in BufferInit()
|
/commonlibrary/ets_utils/js_api_module/buffer/test/ |
D | test_napi.cpp | 42 buf->Set(i, 0); in FillZero() 223 buf->Set(0, 1); 238 buf->Set(0, 1); 239 buf->Set(1, 2); 240 buf->Set(2, 3);
|
/commonlibrary/ets_utils/js_api_module/url/ |
D | js_url.h | 348 void Set(napi_env env, napi_value name, napi_value value);
|
D | native_module_url.cpp | 643 static napi_value Set(napi_env env, napi_callback_info info) in Set() function 651 object->Set(env, args[0], args[1]); in Set() 823 DECLARE_NAPI_FUNCTION("set", Set), in SeachParamsInit() 850 DECLARE_NAPI_FUNCTION("set", Set), in ParamsInit()
|
D | js_url.cpp | 1842 void URLSearchParams::Set(napi_env env, napi_value name, napi_value value) in Set() function in OHOS::Url::URLSearchParams
|
/commonlibrary/ets_utils/js_api_module/url/test/ |
D | test_napi.cpp | 1485 params.Set(env, input1, input3); 1500 params.Set(env, input1, input2); 1517 params.Set(env, input3, input4); 1534 params.Set(env, result, input2); 1551 params.Set(env, input1, result);
|
/commonlibrary/ets_utils/ |
D | README.en.md | 416 bufView[i] = strXml.charCodeAt(i); // Set the ArrayBuffer mode. 668 | isSet(value: Object): boolean | Checks whether the input value is of the **Set** type.| 1401 var result = proc.isSet(new Set()); 1407 const set = new Set();
|
D | README.md | 1737 | isSet(value: Object): boolean | 检查输入的value是否是Set类型。 | 1738 | isSetIterator(value: Object): boolean | 检查输入的value是否是Set的iterator类型。 | 2677 var result = proc.isSet(new Set()); 2683 const set = new Set();
|