/third_party/PyYAML/lib/yaml/ |
H A D | nodes.py | 3 def __init__(self, tag, value, start_mark, end_mark): 5 self.value = value 9 value = self.value 10 #if isinstance(value, list): 11 # if len(value) == 0: 12 # value = '<empty>' 13 # elif len(value) == 1: 14 # value [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | defaultExportInAwaitExpression02.js | 11 const value = await x; 17 Object.defineProperty(exports, "__esModule", { value: true });
23 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
25 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
26 function rejected(value) { try { step(generator["throw"](value)); } catc [all...] |
H A D | typePredicateFreshLiteralWidening.js | 15 const isNotNull = <T,>(value: T | null): value is T => value !== null; 17 type Item = { value: string | null }; 19 const item1 = satisfies<Item>()({ value: "1" }); 20 const item2 = satisfies<Item>()({ value: "2" }); 21 const item3 = satisfies<Item>()({ value: null }); 26 const values1 = [item1, item2, item3].map(item => item.value); 37 var isNotNull = function (value) { return value ! [all...] |
H A D | emitter.forAwait(target=es2015).js | 55 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
57 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
58 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
59 function step(result) { result.done ? resolve(result.value) : adopt(result.value) [all...] |
H A D | autoAccessor5(target=es5).js | 18 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
20 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
24 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
38 set: function (value) { __classPrivateFieldSet(this, _C1__b_accessor_storage, value, "f"); },
44 set: function (value) { __classPrivateFieldSe [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuSeedBuilder.hpp | 50 SeedBuilder& operator<< (SeedBuilder& builder, bool value); 51 SeedBuilder& operator<< (SeedBuilder& builder, deInt8 value); 52 SeedBuilder& operator<< (SeedBuilder& builder, deUint8 value); 54 SeedBuilder& operator<< (SeedBuilder& builder, deInt16 value); 55 SeedBuilder& operator<< (SeedBuilder& builder, deUint16 value); 57 SeedBuilder& operator<< (SeedBuilder& builder, deInt32 value); 58 SeedBuilder& operator<< (SeedBuilder& builder, deUint32 value); 60 SeedBuilder& operator<< (SeedBuilder& builder, deInt64 value); 61 SeedBuilder& operator<< (SeedBuilder& builder, deUint64 value); 63 SeedBuilder& operator<< (SeedBuilder& builder, float value); 69 operator <<(SeedBuilder& builder, const tcu::Vector<T, Size>& value) operator <<() argument 72 builder << value[i]; operator <<() local [all...] |
/kernel/linux/linux-5.10/arch/microblaze/lib/ |
H A D | memmove.c | 84 unsigned value, buf_hold; in memmove() local 122 value = *--i_src; in memmove() 123 *--i_dst = buf_hold << 8 | value; in memmove() 124 buf_hold = value >> 24; in memmove() 131 value = *--i_src; in memmove() 133 ((value & 0xFFFFFF00) >> 8); in memmove() 134 buf_hold = (value & 0xFF) << 24; in memmove() 149 value = *--i_src; in memmove() 150 *--i_dst = buf_hold << 16 | value; in memmove() 151 buf_hold = value >> 1 in memmove() [all...] |
H A D | memcpy.c | 63 unsigned value, buf_hold; in memcpy() local 100 value = *i_src++; in memcpy() 101 *i_dst++ = buf_hold | value >> 24; in memcpy() 102 buf_hold = value << 8; in memcpy() 109 value = *i_src++; in memcpy() 110 *i_dst++ = buf_hold | ((value & 0xFF) << 24); in memcpy() 111 buf_hold = (value & 0xFFFFFF00) >> 8; in memcpy() 126 value = *i_src++; in memcpy() 127 *i_dst++ = buf_hold | value >> 16; in memcpy() 128 buf_hold = value << 1 in memcpy() [all...] |
/kernel/linux/linux-6.6/arch/microblaze/lib/ |
H A D | memmove.c | 60 unsigned value, buf_hold; in memmove() local 100 value = *--i_src; in memmove() 101 *--i_dst = buf_hold << 8 | value; in memmove() 102 buf_hold = value >> 24; in memmove() 109 value = *--i_src; in memmove() 111 ((value & 0xFFFFFF00) >> 8); in memmove() 112 buf_hold = (value & 0xFF) << 24; in memmove() 127 value = *--i_src; in memmove() 128 *--i_dst = buf_hold << 16 | value; in memmove() 129 buf_hold = value >> 1 in memmove() [all...] |
H A D | memcpy.c | 50 unsigned value, buf_hold; in memcpy() local 89 value = *i_src++; in memcpy() 90 *i_dst++ = buf_hold | value >> 24; in memcpy() 91 buf_hold = value << 8; in memcpy() 98 value = *i_src++; in memcpy() 99 *i_dst++ = buf_hold | ((value & 0xFF) << 24); in memcpy() 100 buf_hold = (value & 0xFFFFFF00) >> 8; in memcpy() 115 value = *i_src++; in memcpy() 116 *i_dst++ = buf_hold | value >> 16; in memcpy() 117 buf_hold = value << 1 in memcpy() [all...] |
/kernel/linux/linux-5.10/drivers/platform/mips/ |
H A D | rs780e-acpi.c | 23 static void pmio_write_index(u16 index, u8 reg, u8 value) in pmio_write_index() argument 26 outb(value, index + 1); in pmio_write_index() 35 void pm_iowrite(u8 reg, u8 value) in pm_iowrite() argument 37 pmio_write_index(PM_INDEX, reg, value); in pm_iowrite() 47 void pm2_iowrite(u8 reg, u8 value) in pm2_iowrite() argument 49 pmio_write_index(PM2_INDEX, reg, value); in pm2_iowrite() 61 u16 value; in acpi_hw_clear_status() local 64 value = inw(ACPI_PM_EVT_BLK); in acpi_hw_clear_status() 65 value |= (1 << 8 | 1 << 15); in acpi_hw_clear_status() 66 outw(value, ACPI_PM_EVT_BL in acpi_hw_clear_status() 74 u32 value; acpi_registers_setup() local [all...] |
/kernel/linux/linux-6.6/drivers/platform/mips/ |
H A D | rs780e-acpi.c | 23 static void pmio_write_index(u16 index, u8 reg, u8 value) in pmio_write_index() argument 26 outb(value, index + 1); in pmio_write_index() 35 void pm_iowrite(u8 reg, u8 value) in pm_iowrite() argument 37 pmio_write_index(PM_INDEX, reg, value); in pm_iowrite() 47 void pm2_iowrite(u8 reg, u8 value) in pm2_iowrite() argument 49 pmio_write_index(PM2_INDEX, reg, value); in pm2_iowrite() 61 u16 value; in acpi_hw_clear_status() local 64 value = inw(ACPI_PM_EVT_BLK); in acpi_hw_clear_status() 65 value |= (1 << 8 | 1 << 15); in acpi_hw_clear_status() 66 outw(value, ACPI_PM_EVT_BL in acpi_hw_clear_status() 74 u32 value; acpi_registers_setup() local [all...] |
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | float16_helper.cc | 40 // Return sign value of 32 bits float. 45 // Return exponent value of 32 bits float. 57 // Return mantissa value of 32 bits float. Note that mantissa for 32 63 // Convert float |value| whose size is 16 bits to 32 bits float 65 float HexFloat16ToFloat(const uint8_t* value) { in HexFloat16ToFloat() argument 66 uint32_t sign = (static_cast<uint32_t>(value[1]) & 0x80) << 24U; in HexFloat16ToFloat() 67 uint32_t exponent_bits = (static_cast<uint32_t>(value[1]) & 0x7c) >> 2U; in HexFloat16ToFloat() 73 mantissa = ((static_cast<uint32_t>(value[1]) & 0x3) << 8U | in HexFloat16ToFloat() 74 static_cast<uint32_t>(value[0])) in HexFloat16ToFloat() 86 // Convert float |value| whos 88 HexFloat11ToFloat(const uint8_t* value) HexFloat11ToFloat() argument 105 HexFloat10ToFloat(const uint8_t* value) HexFloat10ToFloat() argument 122 HexFloatToFloat(const uint8_t* value, uint8_t bits) HexFloatToFloat() argument 136 FloatToHexFloat16(const float value) FloatToHexFloat16() argument [all...] |
/third_party/node/lib/internal/util/ |
H A D | inspect.js | 272 // Typically, the target value will be an instance of `Object`. If that is 285 ret.stylize = ObjectSetPrototypeOf((value, flavour) => { 288 stylized = `${ctx.stylize(value, flavour)}`; 293 if (typeof stylized !== 'string') return value; 303 * Echos the value of any input. Tries to print the value out 305 * @param {any} value The value to print out. 308 /* Legacy: value, showHidden, depth, colors */ 309 function inspect(value, opt [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/text/ |
H A D | text_transform_test.cpp | 24 ArkUI_NumberValue value[] = {{.f32 = matrixValue}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, in TestTextTransform001() local 28 ArkUI_AttributeItem valueItem = {value, sizeof(value) / sizeof(ArkUI_NumberValue)}; in TestTextTransform001() 30 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_TRANSFORM)->value[PARAM_0].f32, matrixValue); in TestTextTransform001() 31 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_TRANSFORM)->value[PARAM_5].f32, matrixValue); in TestTextTransform001() 32 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_TRANSFORM)->value[PARAM_12].f32, translateValue); in TestTextTransform001() 33 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_TRANSFORM)->value[PARAM_13].f32, translateValue); in TestTextTransform001() 42 ArkUI_NumberValue value[] = {{.f32 = static_cast<float>(cos(angleValue))}, in TestTextTransform002() local 58 ArkUI_AttributeItem valueItem = {value, sizeof(value) / sizeo in TestTextTransform002() 72 ArkUI_NumberValue value[] = {{.f32 = PARAM_1}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, TestTextTransform003() local 87 ArkUI_NumberValue value[] = {{.f32 = PARAM_0}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, {.f32 = PARAM_0}, TestTextTransform004() local [all...] |
/third_party/jsframework/runtime/main/reactivity/ |
H A D | observer.js | 20 * @param {Array|Object} value 23 export function Observer (value) { 24 this.value = value; 26 def(value, '__ob__', this) 27 if (Array.isArray(value)) { 28 copyAugment(value, arrayMethods, arrayKeys); 29 this.observeArray(value); 31 this.walk(value); 39 * <p>This method should only be called when value typ [all...] |
/third_party/nghttp2/lib/ |
H A D | nghttp2_helper.c | 502 int nghttp2_check_header_value(const uint8_t *value, size_t len) { in nghttp2_check_header_value() argument 504 for (last = value + len; value != last; ++value) { in nghttp2_check_header_value() 505 if (!VALID_HD_VALUE_CHARS[*value]) { in nghttp2_check_header_value() 512 int nghttp2_check_header_value_rfc9113(const uint8_t *value, size_t len) { in nghttp2_check_header_value_rfc9113() argument 517 if (*value == ' ' || *value == '\t' || *(value + len - 1) == ' ' || in nghttp2_check_header_value_rfc9113() 518 *(value in nghttp2_check_header_value_rfc9113() 593 nghttp2_check_method(const uint8_t *value, size_t len) nghttp2_check_method() argument 674 nghttp2_check_path(const uint8_t *value, size_t len) nghttp2_check_path() argument 752 nghttp2_check_authority(const uint8_t *value, size_t len) nghttp2_check_authority() argument [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_helper.c | 500 int nghttp2_check_header_value(const uint8_t *value, size_t len) { in nghttp2_check_header_value() argument 502 for (last = value + len; value != last; ++value) { in nghttp2_check_header_value() 503 if (!VALID_HD_VALUE_CHARS[*value]) { in nghttp2_check_header_value() 510 int nghttp2_check_header_value_rfc9113(const uint8_t *value, size_t len) { in nghttp2_check_header_value_rfc9113() argument 515 if (*value == ' ' || *value == '\t' || *(value + len - 1) == ' ' || in nghttp2_check_header_value_rfc9113() 516 *(value in nghttp2_check_header_value_rfc9113() 591 nghttp2_check_method(const uint8_t *value, size_t len) nghttp2_check_method() argument 672 nghttp2_check_path(const uint8_t *value, size_t len) nghttp2_check_path() argument 750 nghttp2_check_authority(const uint8_t *value, size_t len) nghttp2_check_authority() argument [all...] |
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 101 static void make_expression(expression_t *immed, int value); 113 u_int value; 122 %token <value> T_CONST 140 %token <value> T_ADDRESS 156 %token <value> T_MODE 170 %token <value> T_NUMBER 178 %token <value> T_SHR T_SHL T_ROR T_ROL 180 %token <value> T_MVI T_MOV T_CLR T_BMOV 182 %token <value> T_JMP T_JC T_JNC T_JE T_JNE T_JNZ T_JZ T_CALL 184 %token <value> T_AD [all...] |
/kernel/linux/linux-6.6/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 100 static void make_expression(expression_t *immed, int value); 112 u_int value; 121 %token <value> T_CONST 139 %token <value> T_ADDRESS 155 %token <value> T_MODE 169 %token <value> T_NUMBER 177 %token <value> T_SHR T_SHL T_ROR T_ROL 179 %token <value> T_MVI T_MOV T_CLR T_BMOV 181 %token <value> T_JMP T_JC T_JNC T_JE T_JNE T_JNZ T_JZ T_CALL 183 %token <value> T_AD [all...] |
/third_party/python/Python/ |
H A D | Python-ast.c | 261 Py_CLEAR(state->value); in _PyAST_Fini() 356 if ((state->value = PyUnicode_InternFromString("value")) == NULL) return 0; in init_identifiers() 422 "value", 429 "value", 435 "value", 440 "value", 516 "value", 531 "value", 568 "value", 804 PyObject *key, *value, *fields; ast_type_init() local 980 PyObject *value; ast2obj_list() local 2055 _PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Return() argument 2089 _PyAST_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Assign() argument 2114 _PyAST_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AugAssign() argument 2148 _PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_AnnAssign() argument 2511 _PyAST_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Expr() argument 2604 _PyAST_NamedExpr(expr_ty target, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_NamedExpr() argument 2839 _PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq * generators, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_DictComp() argument 2893 _PyAST_Await(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Await() argument 2915 _PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Yield() argument 2932 _PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_YieldFrom() argument 3004 _PyAST_FormattedValue(expr_ty value, int conversion, expr_ty format_spec, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_FormattedValue() argument 3046 _PyAST_Constant(constant value, string kind, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Constant() argument 3069 _PyAST_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Attribute() argument 3104 _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Subscript() argument 3139 _PyAST_Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_Starred() argument 3348 _PyAST_keyword(identifier arg, expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_keyword() argument 3428 _PyAST_MatchValue(expr_ty value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchValue() argument 3450 _PyAST_MatchSingleton(constant value, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena) _PyAST_MatchSingleton() argument 3610 PyObject *result = NULL, *value = NULL; ast2obj_mod() local 3687 PyObject *result = NULL, *value = NULL; ast2obj_stmt() local 4252 PyObject *result = NULL, *value = NULL; ast2obj_expr() local 4861 PyObject *result = NULL, *value = NULL; ast2obj_comprehension() local 4906 PyObject *result = NULL, *value = NULL; ast2obj_excepthandler() local 4971 PyObject *result = NULL, *value = NULL; ast2obj_arguments() local 5031 PyObject *result = NULL, *value = NULL; ast2obj_arg() local 5091 PyObject *result = NULL, *value = NULL; ast2obj_keyword() local 5146 PyObject *result = NULL, *value = NULL; ast2obj_alias() local 5201 PyObject *result = NULL, *value = NULL; ast2obj_withitem() local 5236 PyObject *result = NULL, *value = NULL; ast2obj_match_case() local 5276 PyObject *result = NULL, *value = NULL; ast2obj_pattern() local 5437 PyObject *result = NULL, *value = NULL; ast2obj_type_ignore() local 6321 expr_ty value; obj2ast_stmt() local 6402 expr_ty value; obj2ast_stmt() local 6489 expr_ty value; obj2ast_stmt() local 6555 expr_ty value; obj2ast_stmt() local 8074 expr_ty value; obj2ast_stmt() local 8301 expr_ty value; obj2ast_expr() local 8851 expr_ty value; obj2ast_expr() local 9004 expr_ty value; obj2ast_expr() local 9034 expr_ty value; obj2ast_expr() local 9064 expr_ty value; obj2ast_expr() local 9306 expr_ty value; obj2ast_expr() local 9423 constant value; obj2ast_expr() local 9471 expr_ty value; obj2ast_expr() local 9537 expr_ty value; obj2ast_expr() local 9603 expr_ty value; obj2ast_expr() local 10881 expr_ty value; obj2ast_keyword() local 11346 expr_ty value; obj2ast_pattern() local 11376 constant value; obj2ast_pattern() local [all...] |
/base/location/frameworks/js/napi/notification/src/ |
H A D | notification_napi_convert_request.cpp | 34 const napi_env &env, const napi_value &value, NotificationRequest &request) in GetNotificationRequestByNumber() 38 if (GetNotificationId(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 42 if (GetNotificationDeliveryTime(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 46 if (GetNotificationAutoDeletedTime(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 50 if (GetNotificationColor(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 54 if (GetNotificationBadgeIconStyle(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 58 if (GetNotificationBadgeNumber(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 62 if (GetNotificationControlFlags(env, value, request) == nullptr) { in GetNotificationRequestByNumber() 70 const napi_env &env, const napi_value &value, NotificationRequest &request) in GetNotificationRequestByString() 74 if (GetNotificationClassification(env, value, reques in GetNotificationRequestByString() 33 GetNotificationRequestByNumber( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRequestByNumber() argument 69 GetNotificationRequestByString( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRequestByString() argument 96 GetNotificationRequestByBool( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRequestByBool() argument 138 GetNotificationRequestByCustom( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRequestByCustom() argument 201 GetNotificationRequest( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRequest() argument 220 GetNotificationSmallIcon( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationSmallIcon() argument 249 GetNotificationLargeIcon( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationLargeIcon() argument 278 GetNotificationOverlayIcon( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationOverlayIcon() argument 307 GetNotificationSupportDisplayDevices( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationSupportDisplayDevices() argument 352 GetNotificationSupportOperateDevices( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationSupportOperateDevices() argument 398 GetNotificationId( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationId() argument 427 GetNotificationSlotType( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationSlotType() argument 481 GetNotificationIsOngoing( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsOngoing() argument 506 GetNotificationIsUnremovable( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsUnremovable() argument 531 GetNotificationDeliveryTime( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationDeliveryTime() argument 556 GetNotificationtapDismissed( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationtapDismissed() argument 581 GetNotificationWantAgent( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationWantAgent() argument 612 GetNotificationExtraInfo( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationExtraInfo() argument 641 GetNotificationGroupName( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationGroupName() argument 667 GetNotificationRemovalWantAgent( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationRemovalWantAgent() argument 701 GetNotificationMaxScreenWantAgent( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationMaxScreenWantAgent() argument 732 GetNotificationAutoDeletedTime( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationAutoDeletedTime() argument 757 GetNotificationClassification( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationClassification() argument 783 GetNotificationAppMessageId( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationAppMessageId() argument 803 GetNotificationColor( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationColor() argument 832 GetNotificationColorEnabled( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationColorEnabled() argument 857 GetNotificationIsAlertOnce( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsAlertOnce() argument 882 GetNotificationIsStopwatch( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsStopwatch() argument 907 GetNotificationIsCountDown( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsCountDown() argument 932 GetNotificationStatusBarText( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationStatusBarText() argument 958 GetNotificationLabel( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationLabel() argument 984 GetNotificationBadgeIconStyle( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationBadgeIconStyle() argument 1009 GetNotificationShowDeliveryTime( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationShowDeliveryTime() argument 1034 GetNotificationIsRemoveAllowed( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationIsRemoveAllowed() argument 1059 GetNotificationActionButtons( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationActionButtons() argument 1131 napi_value value = nullptr; GetNotificationActionButtonsDetailedBasicInfo() local 1223 GetNotificationBadgeNumber( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationBadgeNumber() argument 1254 GetNotificationUnifiedGroupInfo( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationUnifiedGroupInfo() argument 1311 GetNotificationControlFlags( const napi_env &env, const napi_value &value, NotificationRequest &request) GetNotificationControlFlags() argument [all...] |
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | hwregs.c | 24 acpi_hw_read_multiple(u32 *value, 29 acpi_hw_write_multiple(u32 value, 182 * PARAMETERS: value - Where the value is returned 195 acpi_status acpi_hw_read(u64 *value, struct acpi_generic_address *reg) in acpi_hw_read() argument 216 * Initialize entire 64-bit return value to zero, convert access_width in acpi_hw_read() 219 *value = 0; in acpi_hw_read() 259 ACPI_SET_BITS(value, index * access_width, in acpi_hw_read() 269 ACPI_FORMAT_UINT64(*value), access_width, in acpi_hw_read() 280 * PARAMETERS: value 290 acpi_hw_write(u64 value, struct acpi_generic_address *reg) acpi_hw_write() argument 490 u32 value = 0; acpi_hw_register_read() local 591 acpi_hw_register_write(u32 register_id, u32 value) acpi_hw_register_write() argument 714 acpi_hw_read_multiple(u32 *value, struct acpi_generic_address *register_a, struct acpi_generic_address *register_b) acpi_hw_read_multiple() argument 770 acpi_hw_write_multiple(u32 value, struct acpi_generic_address *register_a, struct acpi_generic_address *register_b) acpi_hw_write_multiple() argument [all...] |
/kernel/linux/linux-6.6/drivers/acpi/acpica/ |
H A D | hwregs.c | 24 acpi_hw_read_multiple(u32 *value, 29 acpi_hw_write_multiple(u32 value, 182 * PARAMETERS: value - Where the value is returned 195 acpi_status acpi_hw_read(u64 *value, struct acpi_generic_address *reg) in acpi_hw_read() argument 216 * Initialize entire 64-bit return value to zero, convert access_width in acpi_hw_read() 219 *value = 0; in acpi_hw_read() 259 ACPI_SET_BITS(value, index * access_width, in acpi_hw_read() 269 ACPI_FORMAT_UINT64(*value), access_width, in acpi_hw_read() 280 * PARAMETERS: value 290 acpi_hw_write(u64 value, struct acpi_generic_address *reg) acpi_hw_write() argument 490 u32 value = 0; acpi_hw_register_read() local 591 acpi_hw_register_write(u32 register_id, u32 value) acpi_hw_register_write() argument 714 acpi_hw_read_multiple(u32 *value, struct acpi_generic_address *register_a, struct acpi_generic_address *register_b) acpi_hw_read_multiple() argument 770 acpi_hw_write_multiple(u32 value, struct acpi_generic_address *register_a, struct acpi_generic_address *register_b) acpi_hw_write_multiple() argument [all...] |
/third_party/skia/src/utils/ |
H A D | SkJSONWriter.h | 40 * Output human-readable JSON, with indented objects and arrays, and one value per line. 79 * endObject(). If you have both the name and value of an object member, you can simply call 101 * By default, objects are written out with one named value per line (when in kPretty mode). 133 * By default, arrays are written out with one value per line (when in kPretty mode). 168 void appendString(const char* value) { in appendString() argument 171 if (value) { in appendString() 172 while (*value) { in appendString() 173 switch (*value) { in appendString() 181 default: this->write(value, 1); break; in appendString() 183 value in appendString() 189 appendPointer(const void* value) appendPointer() argument 190 appendBool(bool value) appendBool() argument 198 appendS32(int32_t value) appendS32() argument 200 appendU32(uint32_t value) appendU32() argument 202 appendFloat(float value) appendFloat() argument 203 appendDouble(double value) appendDouble() argument 204 appendFloatDigits(float value, int digits) appendFloatDigits() argument 208 appendDoubleDigits(double value, int digits) appendDoubleDigits() argument 212 appendHexU32(uint32_t value) appendHexU32() argument 236 appendFloatDigits(const char* name, float value, int digits) appendFloatDigits() argument 240 appendDoubleDigits(const char* name, double value, int digits) appendDoubleDigits() argument [all...] |