/ohos5.0/docs/en/application-dev/reference/native-lib/ |
H A D | guidance-on-ndk-libc-interfaces-affected-by-permissions.md | 120 | Null implementation or failed by default | utmp.h | setutent | 121 | Null implementation or failed by default | utmp.h | pututline | 122 | Null implementation or failed by default | utmp.h | getutent | 123 | Null implementation or failed by default | utmp.h | utmpname | 124 | Null implementation or failed by default | unistd.h | brk | 125 | Null implementation or failed by default | stdio_ext.h | __fsetlocking | 126 | Null implementation or failed by default | netdb.h | getnetbyaddr | 127 | Null implementation or failed by default | netdb.h | getnetbyname |
|
/ohos5.0/commonlibrary/rust/ylong_json/docs/ |
H A D | user_guide_zh.md | 97 // 如果尝试查找一个不存在表中的键,会返回 &JsonValue::Null。 100 // 对 Array 类型查找时,若下标超过 Array 长度,也会返回 &JsonValue::Null。 103 // 对一个 Object 和 Array 类型以外的 JsonValue 类型使用下标访问也会返回 &JsonValue::Null。 142 // 如果尝试获取一个不存在表中的键的可变引用,会在表中插入该键且对应值为 JsonValue::Null,并在此基础上进行修改。 153 // 会在 Array 末尾插入一个 JsonValue::Null,并返回该位置的可变引用。
|
H A D | user_guide.md | 113 // `&JsonValue::Null` will be returned. 117 // `&JsonValue::Null` will also be returned. 121 // `&JsonValue::Null` will also be returned. 165 // then the key will be inserted in the table with the corresponding value JsonValue::Null, 178 // subscript exceeds the Array length, then a `JsonValue::Null` will be added at
|
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/rust/src/parcel/ |
H A D | msg.rs | 38 Null, enumerator 81 ParcelMem::Null => unreachable!(), in into_raw() 648 match mem::replace(&mut self.inner, ParcelMem::Null) { in write_process() 666 ParcelMem::Null => IpcResult::Err(IpcStatusCode::Failed), in write_process() 674 match mem::replace(&mut self.inner, ParcelMem::Null) { in read_process() 686 ParcelMem::Null => IpcResult::Err(IpcStatusCode::Failed), in read_process()
|
/ohos5.0/commonlibrary/rust/ylong_json/src/value/ |
H A D | index.rs | 17 static NULL: JsonValue = JsonValue::Null; 112 array.push(JsonValue::Null); in index_into_mut() 227 object.insert(String::from(self), JsonValue::Null); in index_into_mut() 233 object.insert(String::from(self), JsonValue::Null); in index_into_mut()
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodability/ |
H A D | js_text_input_client_engine.cpp | 127 return JsUtil::Const::Null(env); in MoveCursorSync() 293 return JsUtil::Const::Null(env); in DeleteForwardSync() 349 return JsUtil::Const::Null(env); in DeleteBackwardSync() 434 return JsUtil::Const::Null(env); in InsertTextSync() 456 return JsUtil::Const::Null(env); in GetForwardSync() 518 return JsUtil::Const::Null(env); in GetBackwardSync() 650 return JsUtil::Const::Null(env); in SelectByRangeSync() 673 return JsUtil::Const::Null(env); in SelectByMovementSync() 812 return JsUtil::Const::Null(env); in SetPreviewTextSync() 852 return JsUtil::Const::Null(env); in FinishTextPreviewSync() [all …]
|
H A D | panel_listener_impl.cpp | 147 return ret ? jsObject : JsUtil::Const::Null(env); in Write()
|
/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | js_util_test.cpp | 37 return JsUtil::Const::Null(env); in Write() 49 return ret ? object : JsUtil::Const::Null(env); in Write() 143 return JsUtil::Const::Null(env); in GetNull()
|
/ohos5.0/foundation/resourceschedule/ffrt/src/util/ |
H A D | linked_list.h | 85 if (node.Null()) { in RemoveCur() 93 if (node->Null()) { in RemoveCur() 277 bool Null() const noexcept in Null() function
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/ipc_conn/ |
H A D | connect.rs | 156 Null, enumerator 169 FieldRaw::Null => 0, in from() 184 FieldRaw::Null => parcel.write(&0_u32), in serialize() 221 0 => Ok(FieldRaw::Null), in deserialize() 344 Null, enumerator 357 FieldType::Null => 0, in from() 374 0 => FieldType::Null, in try_from() 399 0 => Ok(FieldType::Null), in deserialize() 1217 let null = FieldRaw::Null; in ut_field_serialize() 1273 let null = FieldRaw::Null; in ut_field_deserialize() [all …]
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/ |
H A D | js_get_input_method_setting.cpp | 264 …RETURN(env, argc >= 1, "at least one parameter is required!", TYPE_NONE, JsUtil::Const::Null(env)); in GetInputMethodsSync() 266 TYPE_NONE, JsUtil::Const::Null(env)); in GetInputMethodsSync() 272 return JsUtil::Const::Null(env); in GetInputMethodsSync() 310 return JsUtil::Const::Null(env); in GetAllInputMethodsSync() 433 …RETURN(env, argc >= 1, "at least one parameter is required!", TYPE_NONE, JsUtil::Const::Null(env)); in IsPanelShown() 438 JsUtil::Const::Null(env)); in IsPanelShown() 442 …CK_RETURN(env, status == napi_ok, "panelInfo covert failed!", TYPE_NONE, JsUtil::Const::Null(env)); in IsPanelShown() 448 return JsUtil::Const::Null(env); in IsPanelShown()
|
/ohos5.0/commonlibrary/rust/ylong_json/src/ |
H A D | value.rs | 67 Null, enumerator 98 Self::Null => write!(f, "null"), in fmt() 126 Self::Null in new_null() 218 matches!(*self, Self::Null) in is_null() 863 (JsonValue::Null, JsonValue::Null) => true, in eq() 1030 let value = JsonValue::new_array(array!(false, JsonValue::Null, 12.34)); in ut_json_value_fmt() 1034 let object = object!("null" => JsonValue::Null); in ut_json_value_fmt()
|
H A D | encoder.rs | 46 JsonValue::Null => self.encode_null(), in encode_value() 184 JsonValue::Null => self.encode_null(), in encode_value()
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/service_impl/ |
H A D | types.rs | 61 Value::Empty => ipc_conn::FieldRaw::Null, in from() 76 ipc_conn::FieldRaw::Null => Value::Empty, in from() 91 ipc_conn::FieldRaw::Null => Value::Empty, in from()
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/secureelement/ |
H A D | interface_i_secure_element_interface.md | 23 …ure_element.md#secureelementstatus) status) | 使用SE打开一个逻辑通道,选择由给定AID代表的应用(当AID不为Null且AID的长度不为0时)。 | 141 使用SE打开一个逻辑通道,选择由给定AID代表的应用(当AID不为Null且AID的长度不为0时)。
|
/ohos5.0/commonlibrary/rust/ylong_json/tests/ |
H A D | sdv_adapt_serde_test.rs | 311 Null, enumerator 413 key1: InnerValue::Null, in sdv_adapt_serde_example_three() 421 key1: InnerValue::Null, in sdv_adapt_serde_example_three()
|
/ohos5.0/docs/zh-cn/application-dev/reference/ |
H A D | errorcode-universal.md | 61 4. 空参数错误 (Null Argument Error)。
|
/ohos5.0/docs/en/application-dev/reference/apis-driverdevelopment-kit/ |
H A D | ddk_types.md | 54 | DDK_NULL_PTR | Null pointer.|
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/keyboardpanelmanager/ |
H A D | js_keyboard_panel_manager.cpp | 110 return JsUtil::Const::Null(env); in Subscribe() 138 return JsUtil::Const::Null(env); in UnSubscribe() 375 return ret ? jsObject : JsUtil::Const::Null(env); in Write()
|
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/rust/src/remote/ |
H A D | obj.rs | 90 match mem::replace(&mut data.inner, ParcelMem::Null) { in send_request()
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/common/ |
H A D | js_util.h | 97 static napi_value Null(napi_env env) in Null() function
|
/ohos5.0/docs/en/application-dev/reference/ |
H A D | errorcode-universal.md | 61 4. A null parameter is incorrect (Null Argument Error).
|
/ohos5.0/commonlibrary/rust/ylong_json/src/value/object/ |
H A D | linked_list.rs | 259 self.insert(String::from(key), JsonValue::Null); in get_key_mut_maybe_insert()
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-small-apx-dll.md | 20 …Null will be returned if the DLL is empty.<br>- **LOS_ListRemoveHeadType**: obtains the address of…
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | arkts-migration-background.md | 91 **Null Safety**
|