Home
last modified time | relevance | path

Searched defs:fields (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/third_party/typescript/tests/baselines/reference/
DnestedTypeVariableInfersLiteral.js4 declare function nested<A extends string>(a: { fields: A }): Record<A, string> property
5 declare function nestedUnion<A extends string>(a: { fields: A | A[] }): Record<A, string> property
9 const nestedSingle = nested({fields: "z"}) property
10 const nestedUnionSingle = nestedUnion({fields: "z"}) property
11 const nestedUnionArray = nestedUnion({fields: ["z", "y"]}) property
25 var nestedSingle = nested({ fields: "z" }); property
26 var nestedUnionSingle = nestedUnion({ fields: "z" }); property
27 var nestedUnionArray = nestedUnion({ fields: ["z", "y"] }); property
DexcessPropertyCheckWithNestedArrayIntersection.js18 fields: [{ property
29 fields: [{ property
DsubstitutionTypeNoMergeOfAssignableType.js24 const myTest = makeEntityStore({ test: { fields: { id: {} } } }); property
32 var myTest = makeEntityStore({ test: { fields: { id: {} } } }); property
/third_party/node/tools/inspector_protocol/jinja2/
Dnodes.py123 fields = () variable in Node
127 def __init__(self, *fields, **attributes):
289 fields = ('body',) variable in Template
296 fields = ('nodes',) variable in Output
301 fields = ('template',) variable in Extends
312 fields = ('target', 'iter', 'body', 'else_', 'test', 'recursive') variable in For
317 fields = ('test', 'body', 'elif_', 'else_') variable in If
325 fields = ('name', 'args', 'defaults', 'body') variable in Macro
332 fields = ('call', 'args', 'defaults', 'body') variable in CallBlock
337 fields = ('body', 'filter') variable in FilterBlock
[all …]
/third_party/skia/third_party/externals/jinja2/
Dnodes.py111 fields = () variable in Node
115 def __init__(self, *fields, **attributes):
283 fields = ("body",) variable in Template
291 fields = ("nodes",) variable in Output
297 fields = ("template",) variable in Extends
309 fields = ("target", "iter", "body", "else_", "test", "recursive") variable in For
315 fields = ("test", "body", "elif_", "else_") variable in If
324 fields = ("name", "args", "defaults", "body") variable in Macro
332 fields = ("call", "args", "defaults", "body") variable in CallBlock
338 fields = ("body", "filter") variable in FilterBlock
[all …]
/third_party/jinja2/
Dnodes.py111 fields = () variable in Node
115 def __init__(self, *fields, **attributes):
283 fields = ("body",) variable in Template
291 fields = ("nodes",) variable in Output
297 fields = ("template",) variable in Extends
309 fields = ("target", "iter", "body", "else_", "test", "recursive") variable in For
315 fields = ("test", "body", "elif_", "else_") variable in If
324 fields = ("name", "args", "defaults", "body") variable in Macro
332 fields = ("call", "args", "defaults", "body") variable in CallBlock
338 fields = ("body", "filter") variable in FilterBlock
[all …]
/third_party/node/deps/npm/docs/public/static/d/
D2215187023.json1 {"data":{"allMarkdownRemark":{"nodes":[{"fields":{"slug":"/cli-commands/npm-adduser"},"frontmatter"… object
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetLiteSchema.java52 void addVarint(UnknownFieldSetLite fields, int number, long value) { in addVarint()
57 void addFixed32(UnknownFieldSetLite fields, int number, int value) { in addFixed32()
62 void addFixed64(UnknownFieldSetLite fields, int number, long value) { in addFixed64()
67 void addLengthDelimited(UnknownFieldSetLite fields, int number, ByteString value) { in addLengthDelimited()
72 void addGroup(UnknownFieldSetLite fields, int number, UnknownFieldSetLite subFieldSet) { in addGroup()
77 UnknownFieldSetLite toImmutable(UnknownFieldSetLite fields) { in toImmutable()
83 void setToMessage(Object message, UnknownFieldSetLite fields) { in setToMessage()
105 void setBuilderToMessage(Object message, UnknownFieldSetLite fields) { in setBuilderToMessage()
115 void writeTo(UnknownFieldSetLite fields, Writer writer) throws IOException { in writeTo()
120 void writeAsMessageSetTo(UnknownFieldSetLite fields, Writer writer) throws IOException { in writeAsMessageSetTo()
DUnknownFieldSetSchema.java54 void addVarint(UnknownFieldSet.Builder fields, int number, long value) { in addVarint()
59 void addFixed32(UnknownFieldSet.Builder fields, int number, int value) { in addFixed32()
64 void addFixed64(UnknownFieldSet.Builder fields, int number, long value) { in addFixed64()
69 void addLengthDelimited(UnknownFieldSet.Builder fields, int number, ByteString value) { in addLengthDelimited()
74 void addGroup(UnknownFieldSet.Builder fields, int number, UnknownFieldSet subFieldSet) { in addGroup()
79 UnknownFieldSet toImmutable(UnknownFieldSet.Builder fields) { in toImmutable()
99 void setToMessage(Object message, UnknownFieldSet fields) { in setToMessage()
DUnknownFieldSchema.java42 abstract void addVarint(B fields, int number, long value); in addVarint()
45 abstract void addFixed32(B fields, int number, int value); in addFixed32()
48 abstract void addFixed64(B fields, int number, long value); in addFixed64()
51 abstract void addLengthDelimited(B fields, int number, ByteString value); in addLengthDelimited()
54 abstract void addGroup(B fields, int number, T subFieldSet); in addGroup()
60 abstract T toImmutable(B fields); in toImmutable()
66 abstract void setToMessage(Object message, T fields); in setToMessage()
DStructuralMessageInfo.java48 private final FieldInfo[] fields; field in StructuralMessageInfo
61 FieldInfo[] fields, in StructuralMessageInfo()
112 private final List<FieldInfo> fields; field in StructuralMessageInfo.Builder
/third_party/typescript/tests/cases/compiler/
DexcessPropertyCheckWithNestedArrayIntersection.ts2 fields: Array<{ property
7 fields: Array<{ property
/third_party/mindspore/mindspore/mindrecord/tools/
Dcifar10_to_mr.py75 def run(self, fields=None): argument
110 def transform(self, fields=None): argument
155 def _generate_mindrecord(file_name, raw_data, fields, schema_desc): argument
Dcifar100_to_mr.py75 def run(self, fields=None): argument
114 def transform(self, fields=None): argument
162 def _generate_mindrecord(file_name, raw_data, fields, schema_desc): argument
/third_party/node/test/common/
Dreport.js26 function validate(filepath, fields) { argument
35 function validateContent(report, fields = []) { argument
54 function _validateContent(report, fields = []) { argument
/third_party/boost/libs/beast/include/boost/beast/websocket/detail/
Dpmd_extension.hpp70 http::basic_fields<Allocator> const& fields) in pmd_read()
81 pmd_write(http::basic_fields<Allocator>& fields, in pmd_write()
93 http::basic_fields<Allocator>& fields, in pmd_negotiate()
/third_party/boost/boost/beast/websocket/detail/
Dpmd_extension.hpp70 http::basic_fields<Allocator> const& fields) in pmd_read()
81 pmd_write(http::basic_fields<Allocator>& fields, in pmd_write()
93 http::basic_fields<Allocator>& fields, in pmd_negotiate()
/third_party/re2/re2/
Dunicode.py242 def DoLine(codes, fields): argument
271 def DoLine(codes, fields): argument
292 def DoLine(codes, fields): argument
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-os2-unicode-ranges.py35 fields = re.split(r'\t+', line) variable
38 fields = fields[1:] variable
/third_party/harfbuzz/src/
Dgen-os2-unicode-ranges.py26 fields = re.split(r'\t+', line) variable
29 fields = fields[1:] variable
/third_party/skia/third_party/externals/harfbuzz/src/
Dgen-os2-unicode-ranges.py26 fields = re.split(r'\t+', line) variable
29 fields = fields[1:] variable
/third_party/glib/glib/tests/
Dlogging.c371 const GLogField *fields, in null_log_writer()
380 const GLogField *fields; member
423 const GLogField *fields, in expect_log_writer()
468 const GLogField fields[] = { in test_structured_logging_some_state() local
502 GLogField fields[] = { in test_structured_logging_roundtrip1() local
542 const GLogField fields[] = { in test_structured_logging_roundtrip2() local
566 const GLogField fields[] = { in test_structured_logging_roundtrip3() local
615 const GLogField fields[] = { in test_structured_logging_variant2() local
/third_party/python/Lib/
Ddataclasses.py370 def _fields_in_init_order(fields): argument
379 def _tuple_str(obj_name, fields): argument
529 def _init_fn(fields, std_fields, kw_only_fields, frozen, has_post_init, argument
588 def _repr_fn(fields, globals): argument
599 def _frozen_get_del_attr(cls, fields, globals): argument
638 def _hash_fn(fields, globals): argument
840 def _hash_set_none(cls, fields, globals): argument
843 def _hash_add(cls, fields, globals): argument
847 def _hash_exception(cls, fields, globals): argument
1188 def fields(class_or_instance): function
[all …]
/third_party/python/Tools/scripts/
Dabitype.py134 def make_slots(name, fields): argument
197 name, fields = get_fields(start, end) variable
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DSymbol.cpp93 const TFieldList *fields, in TStructure()
101 const TFieldList *fields) in TStructure()
136 const TFieldList *fields, in TInterfaceBlock()
151 const TFieldList *fields) in TInterfaceBlock()

12345678910>>...19