Home
last modified time | relevance | path

Searched defs:prop (Results 1 – 25 of 526) sorted by relevance

12345678910>>...22

/third_party/typescript/tests/cases/conformance/classes/constructorDeclarations/superCalls/
DderivedClassSuperProperties.ts13 prop = true; property in Derived1
21 prop = true; property in Derived2
29 prop = true; property in Derived3
37 prop = true; property in Derived4
45 prop = true; property in Derived5
53 prop = true; property in Derived6
61 prop = true; property in Derived7
69 prop = true; property in Derived8
77 prop = true; property in DerivedWithArrowFunction
85 prop = true; property in DerivedWithArrowFunctionParameter
[all …]
DderivedClassSuperStatementPosition.ts4 prop = 1; property in DerivedBasic
59 prop = 1; property in DerivedInConditional
68 prop = 1; property in DerivedInIf
80 prop = 1; property in DerivedInBlockWithProperties
89 prop = 1; property in DerivedInConditionalWithProperties
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitDuplicateParameterDestructuring.js2 export const fn1 = ({ prop: a, prop: b }: { prop: number }) => a + b; property
4 export const fn2 = ({ prop: a }: { prop: number }, { prop: b }: { prop: number }) => a + b; property
10 export declare const fn1: ({ prop: a, prop: b }: { property
11 prop: number; property
13 export declare const fn2: ({ prop: a }: { property
14 prop: number; property
15 }, { prop: b }: { property
16 prop: number; property
DgetSetEnumerable.js3 get prop() { return true;} getter in GetSetEnumerableClassGet
7 set prop(value: boolean) { } setter in GetSetEnumerableClassSet
11 get prop() { return true;} getter in GetSetEnumerableClassGetSet
12 set prop(value: boolean) { } setter in GetSetEnumerableClassGetSet
16 get prop() { return true; } getter
20 set prop(value: boolean) { } setter
24 get prop() { return true; }, getter
25 set prop(value: boolean) { } setter
62 get prop() { return true; } getter
65 set prop(value) { } setter
[all …]
DderivedClassSuperProperties.js11 prop = true; field in Derived1
19 prop = true; field in Derived2
27 prop = true; field in Derived3
35 prop = true; field in Derived4
43 prop = true; field in Derived5
51 prop = true; field in Derived6
59 prop = true; field in Derived7
67 prop = true; field in Derived8
75 prop = true; field in DerivedWithArrowFunction
83 prop = true; field in DerivedWithArrowFunctionParameter
[all …]
DcontextualTypeWithUnionTypeObjectLiteral.js16 prop: strOrNumber property
19 prop: strOrNumber property
21 var objStrOrNum5: { prop: string; anotherP: string; } | { prop: number } = { prop: strOrNumber }; property
23 prop: strOrNumber, property
27 prop: strOrNumber, property
31 prop: strOrNumber, property
77 prop: strOrNumber property
80 prop: strOrNumber property
82 var objStrOrNum5 = { prop: strOrNumber }; property
84 prop: strOrNumber, property
[all …]
DsuperInObjectLiterals_ES6.js10 get prop() { getter
14 set prop(value) { setter
42 get prop() { getter
46 set prop(value) { setter
71 get prop() { getter
75 set prop(value) { setter
101 get prop() { getter
105 set prop(value) { setter
DdestructuredLateBoundNameHasCorrectTypes.js7 let { [named]: computed } = { prop: "b" }; property
12 let { [notPresent]: computed2 } = { prop: "b" }; property
19 let { [named]: computed } = { prop: "b" }; property
22 let { [notPresent]: computed2 } = { prop: "b" }; property
DsuperInObjectLiterals_ES5.js10 get prop() { getter
14 set prop(value) { setter
42 get prop() { getter
46 set prop(value) { setter
87 get prop() { getter
91 set prop(value) { setter
125 get prop() { getter
129 set prop(value) { setter
DmappedTypeUnionConstraintInferences.js14 export let a = doSomething_Actual({ prop: "test" }); property
17 export let b = doSomething_Expected({ prop: "test" }); property
30 exports.a = doSomething_Actual({ prop: "test" }); property
32 exports.b = doSomething_Expected({ prop: "test" }); property
DtypeOfThisGeneral.js23 get prop() { getter in MyTestClass
28 set prop(v) { setter in MyTestClass
92 get prop() { getter in MyGenericTestClass
97 set prop(v) { setter in MyGenericTestClass
201 get prop() { getter in MyTestClass
206 set prop(v) { setter in MyTestClass
259 get prop() { getter in MyGenericTestClass
264 set prop(v) { setter in MyGenericTestClass
DtypeGuardsObjectMethods.js24 get prop() { getter
34 set prop(param: string | number) { setter
71 get prop() { getter
79 set prop(param) { setter
DstaticMemberOfClassAndPublicMemberOfAnotherClassAssignment.js6 public prop() { } method in B
9 public static prop() { } method in C
32 B.prototype.prop = function () { }; method in B
38 C.prop = function () { }; function in C
DjsxChildrenGenericContextualTypes.js9 const Elem = <T,U=never>(p: { prop: T, children: (t: T) => T }) => <div></div>; property
10 Elem({prop: {a: "x"}, children: i => ({a: "z"})}); property
16 ElemLit({prop: "x", children: () => "x"}); property
28 Elem({ prop: { a: "x" }, children: function (i) { return ({ a: "z" }); } }); property
32 ElemLit({ prop: "x", children: function () { return "x"; } }); property
/third_party/typescript/tests/cases/compiler/
DgetSetEnumerable.ts4 get prop() { return true;} method in GetSetEnumerableClassGet
8 set prop(value: boolean) { } method in GetSetEnumerableClassSet
12 get prop() { return true;} method in GetSetEnumerableClassGetSet
13 set prop(value: boolean) { } method in GetSetEnumerableClassGetSet
17 get prop() { return true; } constant
21 set prop(value: boolean) { } constant
25 get prop() { return true; }, constant
DstaticMemberOfClassAndPublicMemberOfAnotherClassAssignment.ts2 prop(); method
5 public prop() { } method in B
8 public static prop() { } method in C
/third_party/gstreamer/gstplugins_bad/gst/debugutils/
Dgstfakesinkutils.c46 GParamSpecBoolean *prop = G_PARAM_SPEC_BOOLEAN (properties[i]); in gst_fake_sink_proxy_properties() local
53 GParamSpecInt *prop = G_PARAM_SPEC_INT (properties[i]); in gst_fake_sink_proxy_properties() local
61 GParamSpecUInt *prop = G_PARAM_SPEC_UINT (properties[i]); in gst_fake_sink_proxy_properties() local
69 GParamSpecInt64 *prop = G_PARAM_SPEC_INT64 (properties[i]); in gst_fake_sink_proxy_properties() local
77 GParamSpecUInt64 *prop = G_PARAM_SPEC_UINT64 (properties[i]); in gst_fake_sink_proxy_properties() local
85 GParamSpecEnum *prop = G_PARAM_SPEC_ENUM (properties[i]); in gst_fake_sink_proxy_properties() local
93 GParamSpecString *prop = G_PARAM_SPEC_STRING (properties[i]); in gst_fake_sink_proxy_properties() local
/third_party/skia/modules/skottie/tests/
DKeyframe.cpp48 MockProperty<ScalarValue> prop(R"({})"); in DEF_TEST() local
52 MockProperty<ScalarValue> prop(R"({ "a": 1, "k": [] })"); in DEF_TEST() local
57 MockProperty<ScalarValue> prop(R"({ in DEF_TEST() local
78 MockProperty<ScalarValue> prop(R"({ in DEF_TEST() local
100 MockProperty<ScalarValue> prop(R"({ in DEF_TEST() local
121 MockProperty<ScalarValue> prop(R"({ in DEF_TEST() local
143 MockProperty<ScalarValue> prop(R"({ in DEF_TEST() local
157 MockProperty<Vec2Value> prop(R"({ in DEF_TEST() local
/third_party/libinput/src/
Dutil-prop-parsers.c52 parse_mouse_dpi_property(const char *prop) in parse_mouse_dpi_property()
102 parse_mouse_wheel_click_count_property(const char *prop) in parse_mouse_wheel_click_count_property()
126 parse_mouse_wheel_click_angle_property(const char *prop) in parse_mouse_wheel_click_angle_property()
151 parse_dimension_property(const char *prop, size_t *w, size_t *h) in parse_dimension_property()
177 parse_calibration_property(const char *prop, float calibration_out[6]) in parse_calibration_property()
208 parse_switch_reliability_property(const char *prop, in parse_switch_reliability_property()
236 parse_tpkbcombo_layout_poperty(const char *prop, in parse_tpkbcombo_layout_poperty()
261 parse_range_property(const char *prop, int *hi, int *lo) in parse_range_property()
287 parse_boolean_property(const char *prop, bool *b) in parse_boolean_property()
367 parse_evcode_property(const char *prop, struct input_event *events, size_t *nevents) in parse_evcode_property()
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dregression-test-issue-3860.js32 Object (...1, { "prop": 2 }, 1, { "prop": 2 }); property
48 Object (...[], { "prop": 2 }, 1, { "prop": 2 }, ...1); property
/third_party/toybox/kconfig/
Dsymbol.c40 struct property *prop = prop_alloc(P_DEFAULT, sym); in sym_add_default() local
116 struct property *prop; in sym_get_choice_prop() local
125 struct property *prop; in sym_get_default_prop() local
137 struct property *prop; in sym_get_range_prop() local
165 struct property *prop; in sym_validate_range() local
198 struct property *prop; in sym_calc_visibility() local
229 struct property *prop; in sym_calc_choice() local
268 struct property *prop; in sym_calc_value() local
391 struct property *prop; in sym_set_changed() local
445 struct property *prop; in sym_set_tristate_value() local
[all …]
/third_party/node/benchmark/url/
Dwhatwg-url-properties.js8 prop: ['href', 'origin', 'protocol', property
13 function setAndGet(data, prop) { argument
25 function get(data, prop) { argument
36 function main({ e, type, prop, withBase }) { property
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/
Dupdates-diagnostics-and-emit-when-useDefineForClassFields-changes.js4 class D extends C { prop = 1; } field in D
30 2 class D extends C { prop = 1; } property
70 get prop() { return 1; } getter
94 2 class D extends C { prop = 1; } property
132 get prop() { return 1; } getter
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dproperties.c58 copy_func (void *prop, guint size, guint8 ** buffer, guint64 * bsize, in copy_func()
88 prop_copy_uint8 (guint8 prop, guint8 ** buffer, guint64 * size, in prop_copy_uint8()
95 prop_copy_uint16 (guint16 prop, guint8 ** buffer, guint64 * size, in prop_copy_uint16()
103 prop_copy_uint32 (guint32 prop, guint8 ** buffer, guint64 * size, in prop_copy_uint32()
111 prop_copy_uint64 (guint64 prop, guint8 ** buffer, guint64 * size, in prop_copy_uint64()
119 prop_copy_int32 (gint32 prop, guint8 ** buffer, guint64 * size, in prop_copy_int32()
135 prop_copy_fourcc (guint32 prop, guint8 ** buffer, guint64 * size, in prop_copy_fourcc()
/third_party/openssl/crypto/property/
Dproperty_query.c37 OSSL_PROPERTY_TYPE ossl_property_get_type(const OSSL_PROPERTY_DEFINITION *prop) in ossl_property_get_type()
43 const OSSL_PROPERTY_DEFINITION *prop) in ossl_property_get_string_value()
52 int64_t ossl_property_get_number_value(const OSSL_PROPERTY_DEFINITION *prop) in ossl_property_get_number_value()
70 const OSSL_PROPERTY_DEFINITION *prop; in ossl_property_is_enabled() local

12345678910>>...22