Home
last modified time | relevance | path

Searched refs:prop (Results 1001 - 1025 of 1799) sorted by relevance

1...<<41424344454647484950>>...72

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_animator.cpp448 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 Drender_property.cpp80 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 Dfsl_hypervisor.c732 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 Dpca9450-regulator.c155 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 Dfsl_hypervisor.c729 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 Dcorepropsbuilder.cpp585 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 Dcode_generator.py513 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 Dcode_generator.py511 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 Ddecoder_lib.c219 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 Ddecoder_lib.c219 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 Dbundle_mgr.cpp1307 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 D15.02.04.05-003.js16 this.prop = 5;
27 assert(!obj.hasOwnProperty("prop"));
H A D15.02.04.05-004.js16 this.prop = 5;
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-1300.js16 var obj = { prop : "" };
25 assert(array[0][0] == "prop");
/third_party/skia/third_party/externals/freetype/src/pcf/
H A Dpcfread.h37 const FT_String* prop );
/third_party/typescript/tests/baselines/reference/
H A DspecializedLambdaTypeArguments.js3 prop: X< <Tany>() => Tany >;
H A DsymbolType17.js2 interface Foo { prop }
H A DsymbolType18.js2 interface Foo { prop }
H A DprivateNameStaticAndStaticInitializer(target=es2015).js4 static #prop = 2;
H A DfunctionAndInterfaceWithSeparateErrors.js7 prop: number;
H A DprivateNameAndStaticInitializer(target=es2015).js5 #prop = 2;
H A DcollisionRestParameterInType.js7 prop: (_i: number, ...restParameters) => void; // no error - no code gen
/third_party/node/test/parallel/
H A Dtest-vm-proxy-failure-CP.js8 getOwnPropertyDescriptor: (target, prop) => {
/third_party/jerryscript/tests/jerry/es2015/
H A Dregression-test-issue-3637.js21 c.prop = 4
/third_party/jerryscript/tests/jerry/es5.1/
H A Dregression-test-issue-3637.js21 c.prop = 4

Completed in 23 milliseconds

1...<<41424344454647484950>>...72