Home
last modified time | relevance | path

Searched +defs:type +defs:value (Results 1 – 25 of 1285) sorted by relevance

12345678910>>...52

/third_party/weex-loader/deps/weex-styler/test/
Dshorthand-parser.spec.js13 type: 'declaration', property
15 value: 'margin-top 500ms ease-in-out 1s', property
22 type: 'declaration', property
24 value: 'margin-top', property
28 type: 'declaration', property
30 value: '500ms', property
34 type: 'declaration', property
36 value: 'ease-in-out', property
40 type: 'declaration', property
42 value: '1s', property
[all …]
/third_party/mindspore/mindspore-src/source/tests/ut/python/ascendc_offline_compile/
DCMakePresets.json17 "type": "STRING", string
18 "value": "Release" string
21 "type": "BOOL", string
22 "value": "True" string
25 "type": "BOOL", string
26 "value": "True" string
29 "type": "STRING", string
30 "value": "ascend310p;ascend310b;ascend910;ascend910b" string
33 "type": "BOOL", string
34 "value": "True" string
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DTraits.hpp50 static constexpr bool value = false; member
56 static constexpr bool value = true; member
62 static constexpr bool value = true; member
76 using type = Void; typedef
81 using type = Bool; typedef
87 using type = Byte; typedef
93 using type = SByte; typedef
99 using type = Short; typedef
105 using type = UShort; typedef
111 using type = Int; typedef
[all …]
/third_party/typescript/tests/baselines/reference/
DvarianceAnnotations.js2 type Covariant<out T> = { variable
41 type Covariant1<in T> = { // Error variable
61 type Foo1<in T> = { // Error variable
66 type FooFn1<T> = (foo: Bar1<T[]>) => void; function
68 type Bar1<T> = { variable
69 value: Foo1<T[]>; property
72 type Foo2<out T> = { // Error variable
79 type Bar2<T> = { variable
80 value: Foo2<T[]>; property
83 type Foo3<in out T> = { variable
[all …]
DmappedTypeWithAny.js2 type Item = { value: string }; variable
3 type ItemMap<T> = { [P in keyof T]: Item }; variable
13 type Data = { variable
14 value: string; property
17 type StrictDataMap<T> = { variable
31 type Arrayish<T extends unknown[]> = { [K in keyof T]: T[K] }; variable
32 type Objectish<T extends unknown> = { [K in keyof T]: T[K] }; variable
58 type Evolvable<E extends Evolver> = { variable
83 type Item = { variable
84 value: string; property
[all …]
DcontextualTypeShouldBeLiteral.js17 type: 'y', property
18 value: 'done', property
42 value: 'done', property
62 type: 'y', property
63 value: 11, property
87 value: "foo", property
115 hello: { type: 'string' }, property
118 nested: { type: 'string' } property
129 type: 'y', property
130 value: 'done', property
[all …]
DrecursiveConditionalTypes.js82 unbox({ value: { value: { value: { value: { value: { value: 5 }}}}}}); // number property
84 unbox({ value: { value: { get value() { return this; } }}}); // { readonly value: ... } property
88 type Box1<T> = { value: T }; variable
89 type Box2<T> = { value: T }; variable
192 unbox({ value: { value: { value: { value: { value: { value: 5 } } } } } }); // number property
194 unbox({ value: { value: { get value() { return this; } } } }); // { readonly value: ... } getter
205 function foo2(value) { argument
259 type Box1<T> = { variable
260 value: T; property
262 type Box2<T> = { variable
[all …]
DtypeAliasDeclarationEmit2.js2 export type A<a> = { value: a }; variable
7 Object.defineProperty(exports, "__esModule", { value: true }); property
12 export type A<a> = { variable
13 value: a; property
/third_party/skia/third_party/externals/dawn/
Ddawn.json32 … {"name": "descriptor", "type": "instance descriptor", "annotation": "const*", "optional": true} string
44 {"name": "device", "type": "device"}, string
45 {"name": "proc name", "type": "char", "annotation": "const*"} string
54 {"name": "compatible surface", "type": "surface"}, string
55 {"name": "power preference", "type": "power preference", "tags": ["upstream"]}, string
56 {"name": "force fallback adapter", "type": "bool", "tags": ["upstream"]} string
64 {"value": 0, "name": "success"}, number
65 {"value": 1, "name": "unavailable"}, number
66 {"value": 2, "name": "error"}, number
67 {"value": 3, "name": "unknown"} number
[all …]
/third_party/css-what/src/__fixtures__/
Dout.json7 "type": "attribute", string
10 "value": "qunit-fixture", string
15 "type": "descendant" string
18 "type": "tag", string
27 "type": "attribute", string
30 "value": "qunit-fixture", string
35 "type": "descendant" string
38 "type": "tag", string
47 "type": "attribute", string
50 "value": "qunit-fixture", string
[all …]
Dtests.ts41 type: SelectorType.Tag, constant
49 type: SelectorType.Tag, constant
70 type: SelectorType.Tag, constant
91 type: SelectorType.Tag, constant
112 type: SelectorType.Tag, constant
133 type: SelectorType.Tag, constant
153 value: " ", constant
159 type: SelectorType.Tag, constant
177 value: " ", constant
193 value: "m™²³", constant
[all …]
/third_party/typescript/tests/cases/compiler/
DcontextualTypeShouldBeLiteral.ts3 type: 'x'; property
4 value: string; property
9 type: 'y'; property
10 value: 'none' | 'done'; property
28 value: string; property
34 value: 'none' | 'done'; property
50 type: 'x'; property
51 value: 1 | 2 | 3; property
56 type: 'y'; property
57 value: 11 | 12 | 13; property
[all …]
/third_party/skia/src/sksl/ir/
DSkSLLiteral.h26 Literal(int line, double value, const Type* type) in Literal()
31 static std::unique_ptr<Literal> MakeFloat(const Context& context, int line, float value) { in MakeFloat()
36 static std::unique_ptr<Literal> MakeFloat(int line, float value, const Type* type) { in MakeFloat()
42 static std::unique_ptr<Literal> MakeInt(const Context& context, int line, SKSL_INT value) { in MakeInt()
47 static std::unique_ptr<Literal> MakeInt(int line, SKSL_INT value, const Type* type) { in MakeInt()
57 static std::unique_ptr<Literal> MakeBool(const Context& context, int line, bool value) { in MakeBool()
63 static std::unique_ptr<Literal> MakeBool(int line, bool value, const Type* type) { in MakeBool()
69 static std::unique_ptr<Literal> Make(int line, double value, const Type* type) { in Make()
95 double value() const { in value() function
/third_party/python/Lib/test/test_tomllib/data/valid/
Dhex-char.json2 "a": {"type":"string","value":"a"}, string
3 "b": {"type":"string","value":"b"}, string
4 "c": {"type":"string","value":"c"} string
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/common/ops/
Dops_def.h34 #define OP_TYPE_DEF_BEGIN(type) \ argument
42 #define OP_TYPE_DEF_END(type) \ argument
49 #define OP_TYPE_DEF_BEGIN(type) argument
51 #define OP_TYPE_DEF_END(type) argument
75 #define OP_ATTR(key, type) op_def.append(" ").append(#key).append(": ").append(#type).append(";\… argument
76 #define OP_ATTR_ENUM(key, type) op_def.append(" ").append(#key).append(": ").append(#type).appen… argument
77 #define OP_ATTR_VEC2D(key, type) op_def.append(" ").append(#key).append(": ").append(#type).appe… argument
87 #define OP_ATTR(key, type) \ argument
92 #define OP_ATTR_ENUM(key, type) \ argument
97 #define OP_ATTR_VEC2D(key, type) \ argument
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/core/mindapi/src/
Dabstract.cc36 TypePtr AbstractBase::type() const { in type() function in mindspore::api::AbstractBase
41 ValuePtr AbstractBase::value() const { in value() function in mindspore::api::AbstractBase
51 void AbstractBase::set_type(const TypePtr &type) { in set_type()
56 void AbstractBase::set_value(const ValuePtr &value) { in set_value()
70 AbstractScalar::AbstractScalar(const ValuePtr &value, const TypePtr &type) in AbstractScalar()
73 AbstractScalar::AbstractScalar(const TypePtr &type) in AbstractScalar()
76 AbstractScalar::AbstractScalar(const ValuePtr &value) in AbstractScalar()
79 AbstractScalar::AbstractScalar(int64_t value) : AbstractBase(std::make_shared<AbstractScalarImpl>(v… in AbstractScalar()
81 AbstractScalar::AbstractScalar(float value) : AbstractBase(std::make_shared<AbstractScalarImpl>(val… in AbstractScalar()
83 AbstractScalar::AbstractScalar(bool value) : AbstractBase(std::make_shared<AbstractScalarImpl>(valu… in AbstractScalar()
[all …]
/third_party/protobuf/src/google/protobuf/util/
Dtype_resolver_util_test.cc71 const Field* FindField(const Type& type, const std::string& name) { in FindField()
81 bool HasField(const Type& type, Field::Cardinality cardinality, in HasField()
91 bool CheckFieldTypeUrl(const Type& type, const std::string& name, in CheckFieldTypeUrl()
100 bool FieldInOneof(const Type& type, const std::string& name, in FieldInOneof()
110 bool IsPacked(const Type& type, const std::string& name) { in IsPacked()
118 const EnumValue* FindEnumValue(const Enum& type, const std::string& name) { in FindEnumValue()
119 for (const EnumValue& value : type.enumvalue()) { in FindEnumValue() local
127 bool EnumHasValue(const Enum& type, const std::string& name, int number) { in EnumHasValue()
128 const EnumValue* value = FindEnumValue(type, name); in EnumHasValue() local
133 const std::string& name, bool value) { in HasBoolOption()
[all …]
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dphonemetadata.pb.js83 i18n.phonenumbers.NumberFormat.prototype.setPattern = function(value) { argument
134 i18n.phonenumbers.NumberFormat.prototype.setFormat = function(value) { argument
187 i18n.phonenumbers.NumberFormat.prototype.addLeadingDigitsPattern = function(value) { argument
247 i18n.phonenumbers.NumberFormat.prototype.setNationalPrefixFormattingRule = function(value) { argument
298 i18n.phonenumbers.NumberFormat.prototype.setNationalPrefixOptionalWhenFormatting = function(value) { argument
349 i18n.phonenumbers.NumberFormat.prototype.setDomesticCarrierCodeFormattingRule = function(value) { argument
428 i18n.phonenumbers.PhoneNumberDesc.prototype.setNationalNumberPattern = function(value) { argument
481 i18n.phonenumbers.PhoneNumberDesc.prototype.addPossibleLength = function(value) { argument
543 i18n.phonenumbers.PhoneNumberDesc.prototype.addPossibleLengthLocalOnly = function(value) { argument
603 i18n.phonenumbers.PhoneNumberDesc.prototype.setExampleNumber = function(value) { argument
[all …]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_main.c47 struct lp_type type) in dump_type()
59 read_elem(struct lp_type type, const void *src, unsigned index) in read_elem()
62 double value; in read_elem() local
122 write_elem(struct lp_type type, void *dst, unsigned index, double value) in write_elem()
192 random_elem(struct lp_type type, void *dst, unsigned index) in random_elem()
194 double value; in random_elem() local
228 read_vec(struct lp_type type, const void *src, double *dst) in read_vec()
237 write_vec(struct lp_type type, void *dst, const double *src) in write_vec()
253 random_vec(struct lp_type type, void *dst) in random_vec()
262 compare_vec_with_eps(struct lp_type type, const void *res, const void *ref, double eps) in compare_vec_with_eps()
[all …]
/third_party/python/Lib/test/test_tomllib/data/valid/array/
Darray-subtables.json2 {"type":"array","value": string
5 {"val": {"type":"integer","value":"1"} string
8 {"subtab": {"val": {"type":"integer","value":"2"}}} string
/third_party/weex-loader/test/expect/
Do.js10 "type": "text", property
13 "value": "function () {return this.value}" property
124 "type": "text", property
127 "value": "function () {return this.value}" property
179 "type": "content" property
207 "type": "text", property
216 "value": "function () {return this.title}" property
220 "type": "div", property
230 "type": "content" property
293 "type": "text", property
[all …]
/third_party/vk-gl-cts/modules/glshared/
DglsStateQueryUtil.cpp271 void queryState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum… in queryState()
277 const glw::GLboolean value = gl.glIsEnabled(target); in queryState() local
291 StateQueryMemoryWriteGuard<glw::GLboolean> value; in queryState() local
308 StateQueryMemoryWriteGuard<glw::GLint> value; in queryState() local
323 StateQueryMemoryWriteGuard<glw::GLint64> value; in queryState() local
338 StateQueryMemoryWriteGuard<glw::GLfloat> value; in queryState() local
357 void queryIndexedState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw:… in queryIndexedState()
363 StateQueryMemoryWriteGuard<glw::GLboolean[4]> value; in queryIndexedState() local
389 StateQueryMemoryWriteGuard<glw::GLint[4]> value; in queryIndexedState() local
404 StateQueryMemoryWriteGuard<glw::GLint64[4]> value; in queryIndexedState() local
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/runtime/pynative/op_function/
Dfunc_object.h29 explicit FuncObject(const T &value) in FuncObject()
34 FuncObject(T &&value) : object_(new Object<typename std::decay_t<T>>(static_cast<T &&>(value))) {} in FuncObject()
54 const std::type_info &type() const { return object_ ? object_->type() : typeid(void); } in type() function
72 explicit Object(const T &value) : handle_(value) {} in Object()
73 explicit Object(T &&value) : handle_(static_cast<T &&>(value)) {} in Object()
74 const std::type_info &type() const override { return typeid(T); } in type() function
84 using type = T2; member
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Dbuiltin_variables.json75 "type":{ object
89 "type":{ object
94 "value":"resources" string
98 "type":{ object
103 "value":"resources" string
107 "type":{ object
112 "value":"resources" string
116 "type":{ object
121 "value":"resources" string
125 "type":{ object
[all …]
/third_party/python/Lib/lib2to3/pgen2/
Dparse.py19 def __init__(self, msg, type, value, context): argument
116 def addtoken(self, type, value, context): argument
164 def classify(self, type, value, context): argument
178 def shift(self, type, value, newstate, context): argument
187 def push(self, type, newdfa, newstate, context): argument

12345678910>>...52