/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_animator.cpp | 448 JSSpringProp* prop = JSRef<JSObject>::Cast(info[3])->Unwrap<JSSpringProp>(); in HandleSpringMotion() local 449 if (!prop) { in HandleSpringMotion() 452 RefPtr<SpringProperty> springProperty = prop->GetSpringProp(); in HandleSpringMotion() 467 JSSpringProp* prop = JSRef<JSObject>::Cast(info[4])->Unwrap<JSSpringProp>(); in HandleScrollMotion() local 468 if (!prop) { in HandleScrollMotion() 471 RefPtr<SpringProperty> springProperty = prop->GetSpringProp(); in HandleScrollMotion()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/ |
H A D | render_property.cpp | 80 if (prop##name.has_value()) { \ 81 json##name->Put("x", prop##name->GetX().ToString().c_str()); \ 82 json##name->Put("y", prop##name->GetY().ToString().c_str()); \ 90 if (prop##name.has_value()) { \ 91 json##name->Put("x", prop##name->GetX().ToString().c_str()); \ 92 json##name->Put("y", prop##name->GetY().ToString().c_str()); \
|
/kernel/linux/linux-5.10/drivers/virt/ |
H A D | fsl_hypervisor.c | 732 const uint32_t *prop; in get_parent_handle() local 745 prop = of_get_property(parent, "hv-handle", &len); in get_parent_handle() 746 if (!prop) in get_parent_handle() 747 prop = of_get_property(parent, "reg", &len); in get_parent_handle() 749 if (!prop || (len != sizeof(uint32_t))) { in get_parent_handle() 755 handle = be32_to_cpup(prop); in get_parent_handle()
|
/kernel/linux/linux-5.10/drivers/regulator/ |
H A D | pca9450-regulator.c | 155 char *prop, unsigned int reg, unsigned int mask) in buck_set_dvs() 160 ret = of_property_read_u32(np, prop, &uv); in buck_set_dvs() 188 char *prop; in pca9450_set_dvs_levels() local 194 prop = "nxp,dvs-run-voltage"; in pca9450_set_dvs_levels() 199 prop = "nxp,dvs-standby-voltage"; in pca9450_set_dvs_levels() 207 ret = buck_set_dvs(desc, np, cfg->regmap, prop, reg, mask); in pca9450_set_dvs_levels() 153 buck_set_dvs(const struct regulator_desc *desc, struct device_node *np, struct regmap *regmap, char *prop, unsigned int reg, unsigned int mask) buck_set_dvs() argument
|
/kernel/linux/linux-6.6/drivers/virt/ |
H A D | fsl_hypervisor.c | 729 const uint32_t *prop; in get_parent_handle() local 742 prop = of_get_property(parent, "hv-handle", &len); in get_parent_handle() 743 if (!prop) in get_parent_handle() 744 prop = of_get_property(parent, "reg", &len); in get_parent_handle() 746 if (!prop || (len != sizeof(uint32_t))) { in get_parent_handle() 752 handle = be32_to_cpup(prop); in get_parent_handle()
|
/third_party/icu/tools/unicode/c/genprops/ |
H A D | corepropsbuilder.cpp | 585 int32_t prop; // UProperty member 637 int32_t prop; // UProperty member 670 if(newValues.contains(p2b.prop)) { in setProps() 672 uint32_t value= props.binProps[p2b.prop] ? mask : 0; in setProps() 683 if(newValues.contains(p2e.prop)) { in setProps() 685 uint32_t value=(uint32_t)(props.getIntProp(p2e.prop)<<p2e.vecShift); in setProps()
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | code_generator.py | 513 def resolve_type(self, prop): 514 if "$ref" in prop: 515 return self.type_definitions[prop["$ref"]] 516 if prop["type"] == "array": 517 return wrap_array_definition(self.resolve_type(prop["items"])) 518 return self.type_definitions[prop["type"]]
|
/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 511 def resolve_type(self, prop): 512 if "$ref" in prop: 513 return self.type_definitions[prop["$ref"]] 514 if prop["type"] == "array": 515 return wrap_array_definition(self.resolve_type(prop["items"])) 516 return self.type_definitions[prop["type"]]
|
/third_party/node/deps/openssl/openssl/crypto/encode_decode/ |
H A D | decoder_lib.c | 219 const OSSL_PROPERTY_DEFINITION *prop; in ossl_decoder_instance_new() local 242 prop = ossl_property_find_property(props, libctx, "input"); in ossl_decoder_instance_new() 243 decoder_inst->input_type = ossl_property_get_string_value(libctx, prop); in ossl_decoder_instance_new() 254 prop = ossl_property_find_property(props, libctx, "structure"); in ossl_decoder_instance_new() 255 if (prop != NULL) { in ossl_decoder_instance_new() 257 = ossl_property_get_string_value(libctx, prop); in ossl_decoder_instance_new()
|
/third_party/openssl/crypto/encode_decode/ |
H A D | decoder_lib.c | 219 const OSSL_PROPERTY_DEFINITION *prop; in ossl_decoder_instance_new() local 242 prop = ossl_property_find_property(props, libctx, "input"); in ossl_decoder_instance_new() 243 decoder_inst->input_type = ossl_property_get_string_value(libctx, prop); in ossl_decoder_instance_new() 254 prop = ossl_property_find_property(props, libctx, "structure"); in ossl_decoder_instance_new() 255 if (prop != NULL) { in ossl_decoder_instance_new() 257 = ossl_property_get_string_value(libctx, prop); in ossl_decoder_instance_new()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundlemgr/ |
H A D | bundle_mgr.cpp | 1307 napi_value prop = nullptr; in ParseBundleOptions() local 1308 napi_get_named_property(env, args, "userId", &prop); in ParseBundleOptions() 1309 napi_typeof(env, prop, &valueType); in ParseBundleOptions() 1311 napi_get_value_int32(env, prop, &bundleOptions.userId); in ParseBundleOptions() 1333 napi_value prop = nullptr; in ParseWant() local 1334 napi_get_named_property(env, args, "bundleName", &prop); in ParseWant() 1335 std::string wantBundleName = GetStringFromNAPI(env, prop); in ParseWant() 1337 prop = nullptr; in ParseWant() 1338 napi_get_named_property(env, args, "moduleName", &prop); in ParseWant() 1339 std::string wantModuleName = GetStringFromNAPI(env, prop); in ParseWant() 2679 napi_value prop = nullptr; ParseModuleName() local 2700 napi_value prop = nullptr; UnwrapAbilityInfo() local [all...] |
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.04/15.02.04.05/ |
H A D | 15.02.04.05-003.js | 16 this.prop = 5; 27 assert(!obj.hasOwnProperty("prop"));
|
H A D | 15.02.04.05-004.js | 16 this.prop = 5;
|
/third_party/jerryscript/tests/jerry/ |
H A D | regression-test-issue-1300.js | 16 var obj = { prop : "" }; 25 assert(array[0][0] == "prop");
|
/third_party/skia/third_party/externals/freetype/src/pcf/ |
H A D | pcfread.h | 37 const FT_String* prop );
|
/third_party/typescript/tests/baselines/reference/ |
H A D | specializedLambdaTypeArguments.js | 3 prop: X< <Tany>() => Tany >;
|
H A D | symbolType17.js | 2 interface Foo { prop }
|
H A D | symbolType18.js | 2 interface Foo { prop }
|
H A D | privateNameStaticAndStaticInitializer(target=es2015).js | 4 static #prop = 2;
|
H A D | functionAndInterfaceWithSeparateErrors.js | 7 prop: number;
|
H A D | privateNameAndStaticInitializer(target=es2015).js | 5 #prop = 2;
|
H A D | collisionRestParameterInType.js | 7 prop: (_i: number, ...restParameters) => void; // no error - no code gen
|
/third_party/node/test/parallel/ |
H A D | test-vm-proxy-failure-CP.js | 8 getOwnPropertyDescriptor: (target, prop) => {
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | regression-test-issue-3637.js | 21 c.prop = 4
|
/third_party/jerryscript/tests/jerry/es5.1/ |
H A D | regression-test-issue-3637.js | 21 c.prop = 4
|