Home
last modified time | relevance | path

Searched refs:named (Results 1 – 25 of 2202) sorted by relevance

12345678910>>...89

/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dicons.dart68 /// <i class="material-icons md-36">360</i> &#x2014; material icon named "360".
71 /// <i class="material-icons md-36">3d_rotation</i> &#x2014; material icon named "3d rotation".
74 /// <i class="material-icons md-36">4k</i> &#x2014; material icon named "4k".
77 /// <i class="material-icons md-36">ac_unit</i> &#x2014; material icon named "ac unit".
80 /// <i class="material-icons md-36">access_alarm</i> &#x2014; material icon named "access alarm".
83 …/// <i class="material-icons md-36">access_alarms</i> &#x2014; material icon named "access alarms".
86 /// <i class="material-icons md-36">access_time</i> &#x2014; material icon named "access time".
89 …/// <i class="material-icons md-36">accessibility</i> &#x2014; material icon named "accessibility".
92 …/// <i class="material-icons md-36">accessibility_new</i> &#x2014; material icon named "accessibil…
95 /// <i class="material-icons md-36">accessible</i> &#x2014; material icon named "accessible".
[all …]
/third_party/gettext/gettext-tools/src/
Dformat-python.c95 struct named_arg *named; member
128 spec.named = NULL; in format_parse()
294 … spec.named = (struct named_arg *) xrealloc (spec.named, allocated * sizeof (struct named_arg)); in format_parse()
296 spec.named[spec.named_arg_count].name = name; in format_parse()
297 spec.named[spec.named_arg_count].type = type; in format_parse()
332 qsort (spec.named, spec.named_arg_count, sizeof (struct named_arg), in format_parse()
338 if (j > 0 && strcmp (spec.named[i].name, spec.named[j-1].name) == 0) in format_parse()
340 enum format_arg_type type1 = spec.named[i].type; in format_parse()
341 enum format_arg_type type2 = spec.named[j-1].type; in format_parse()
354 …intf (_("The string refers to the argument named '%s' in incompatible ways."), spec.named[i].name); in format_parse()
[all …]
Dformat-perl-brace.c49 struct named_arg *named; member
71 spec.named = NULL; in format_parse()
106 …spec.named = (struct named_arg *) xrealloc (spec.named, named_allocated * sizeof (struct named_arg… in format_parse()
108 spec.named[spec.named_arg_count].name = name; in format_parse()
123 qsort (spec.named, spec.named_arg_count, sizeof (struct named_arg), in format_parse()
128 if (j > 0 && strcmp (spec.named[i].name, spec.named[j-1].name) == 0) in format_parse()
129 free (spec.named[i].name); in format_parse()
133 spec.named[j].name = spec.named[i].name; in format_parse()
149 if (spec->named != NULL) in format_free()
153 free (spec->named[i].name); in format_free()
[all …]
Dformat-sh.c66 struct named_arg *named; member
97 spec.named = NULL; in format_parse()
204 …spec.named = (struct named_arg *) xrealloc (spec.named, named_allocated * sizeof (struct named_arg… in format_parse()
206 spec.named[spec.named_arg_count].name = name; in format_parse()
217 qsort (spec.named, spec.named_arg_count, sizeof (struct named_arg), in format_parse()
222 if (j > 0 && strcmp (spec.named[i].name, spec.named[j-1].name) == 0) in format_parse()
223 free (spec.named[i].name); in format_parse()
227 spec.named[j].name = spec.named[i].name; in format_parse()
238 if (spec.named != NULL) in format_parse()
242 free (spec.named[i].name); in format_parse()
[all …]
Dformat-python-brace.c59 struct named_arg *named; member
299 …spec->named = (struct named_arg *) xrealloc (spec->named, spec->allocated * sizeof (struct named_a… in parse_directive()
301 spec->named[spec->named_arg_count].name = name; in parse_directive()
351 spec.named = NULL; in format_parse()
364 qsort (spec.named, spec.named_arg_count, sizeof (struct named_arg), in format_parse()
369 if (j > 0 && strcmp (spec.named[i].name, spec.named[j-1].name) == 0) in format_parse()
370 free (spec.named[i].name); in format_parse()
374 spec.named[j].name = spec.named[i].name; in format_parse()
388 if (spec->named != NULL) in free_named_args()
392 free (spec->named[i].name); in free_named_args()
[all …]
Dformat-ruby.c103 struct named_arg *named; member
167 spec.named = NULL; in format_parse()
661 … spec.named = (struct named_arg *) xrealloc (spec.named, allocated * sizeof (struct named_arg)); in format_parse()
663 spec.named[spec.named_arg_count].name = name; in format_parse()
664 spec.named[spec.named_arg_count].type = type; in format_parse()
772 qsort (spec.named, spec.named_arg_count, sizeof (struct named_arg), in format_parse()
778 if (j > 0 && strcmp (spec.named[i].name, spec.named[j-1].name) == 0) in format_parse()
780 enum format_arg_type type1 = spec.named[i].type; in format_parse()
781 enum format_arg_type type2 = spec.named[j-1].type; in format_parse()
792 …intf (_("The string refers to the argument named '%s' in incompatible ways."), spec.named[i].name); in format_parse()
[all …]
/third_party/typescript/tests/cases/conformance/expressions/contextualTyping/
DgeneratedContextualTyping.ts10 var x3: () => Base[] = function named() { return [d1, d2] };
13 var x6: { (): Base[]; } = function named() { return [d1, d2] };
22 class x15 { member: () => Base[] = function named() { return [d1, d2] } } method in x15
25 class x18 { member: { (): Base[]; } = function named() { return [d1, d2] } } method in x18
34 class x27 { private member: () => Base[] = function named() { return [d1, d2] } } method in x27
37 class x30 { private member: { (): Base[]; } = function named() { return [d1, d2] } } method in x30
46 class x39 { public member: () => Base[] = function named() { return [d1, d2] } } method in x39
49 class x42 { public member: { (): Base[]; } = function named() { return [d1, d2] } } method in x42
58 class x51 { static member: () => Base[] = function named() { return [d1, d2] } } method in x51
61 class x54 { static member: { (): Base[]; } = function named() { return [d1, d2] } } method in x54
[all …]
/third_party/grpc/src/core/ext/filters/http/server/
Dhttp_server_filter.cc103 if (b->idx.named.grpc_message != nullptr) { in hs_filter_outgoing_metadata()
105 GRPC_MDVALUE(b->idx.named.grpc_message->md), in hs_filter_outgoing_metadata()
108 GRPC_MDVALUE(b->idx.named.grpc_message->md))) { in hs_filter_outgoing_metadata()
111 grpc_metadata_batch_set_value(b->idx.named.grpc_message, pct_encoded_msg); in hs_filter_outgoing_metadata()
158 if (b->idx.named.method != nullptr) { in hs_filter_incoming_metadata()
159 if (md_strict_equal(b->idx.named.method->md, GRPC_MDELEM_METHOD_POST)) { in hs_filter_incoming_metadata()
163 } else if (md_strict_equal(b->idx.named.method->md, in hs_filter_incoming_metadata()
169 } else if (md_strict_equal(b->idx.named.method->md, in hs_filter_incoming_metadata()
179 b->idx.named.method->md)); in hs_filter_incoming_metadata()
190 if (b->idx.named.te != nullptr) { in hs_filter_incoming_metadata()
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dspace-before-function-paren.test.ts66 options: [{ named: 'never', anonymous: 'always' }],
77 options: [{ named: 'always', anonymous: 'never' }],
82 options: [{ named: 'never', anonymous: 'always' }],
87 options: [{ named: 'always', anonymous: 'never' }],
92 options: [{ named: 'always', anonymous: 'ignore' }],
96 options: [{ named: 'always', anonymous: 'ignore' }],
100 options: [{ named: 'ignore', anonymous: 'always' }],
104 options: [{ named: 'ignore', anonymous: 'always' }],
158 options: [{ anonymous: 'always', named: 'never' }],
167 options: [{ anonymous: 'always', named: 'never' }],
[all …]
/third_party/typescript/tests/baselines/reference/
DprivateNamesAndMethods.errors.txt1 …teNames/privateNamesAndMethods.ts(2,5): error TS18022: A method cannot be named with a private ide…
2 …eNames/privateNamesAndMethods.ts(3,11): error TS18022: A method cannot be named with a private ide…
3 …eNames/privateNamesAndMethods.ts(4,12): error TS18022: A method cannot be named with a private ide…
4 …ames/privateNamesAndMethods.ts(8,9): error TS18023: An accessor cannot be named with a private ide…
5 …mes/privateNamesAndMethods.ts(11,9): error TS18023: An accessor cannot be named with a private ide…
6 …eNames/privateNamesAndMethods.ts(24,5): error TS18022: A method cannot be named with a private ide…
13 !!! error TS18022: A method cannot be named with a private identifier.
16 !!! error TS18022: A method cannot be named with a private identifier.
19 !!! error TS18022: A method cannot be named with a private identifier.
25 !!! error TS18023: An accessor cannot be named with a private identifier.
[all …]
DnamedTupleMembersErrors.errors.txt1 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(1,41): error TS5084: Tuple mem…
2 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(2,25): error TS5084: Tuple mem…
3 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(4,32): error TS5084: Tuple mem…
4 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(5,22): error TS5084: Tuple mem…
5 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(7,32): error TS5084: Tuple mem…
6 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(8,22): error TS5084: Tuple mem…
7 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(10,29): error TS5086: A labele…
8 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(12,46): error TS5087: A labele…
9 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(14,49): error TS5087: A labele…
10 tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts(14,52): error TS8020: JSDoc ty…
[all …]
DprivateNameES5Ban(target=es5).errors.txt2 …privateNames/privateNameES5Ban.ts(4,5): error TS18022: A method cannot be named with a private ide…
4 …rivateNames/privateNameES5Ban.ts(6,12): error TS18022: A method cannot be named with a private ide…
5 …vateNames/privateNameES5Ban.ts(7,9): error TS18023: An accessor cannot be named with a private ide…
6 …vateNames/privateNameES5Ban.ts(8,9): error TS18023: An accessor cannot be named with a private ide…
7 …ateNames/privateNameES5Ban.ts(9,16): error TS18023: An accessor cannot be named with a private ide…
8 …teNames/privateNameES5Ban.ts(10,16): error TS18023: An accessor cannot be named with a private ide…
19 !!! error TS18022: A method cannot be named with a private identifier.
25 !!! error TS18022: A method cannot be named with a private identifier.
28 !!! error TS18023: An accessor cannot be named with a private identifier.
31 !!! error TS18023: An accessor cannot be named with a private identifier.
[all …]
DprivateNamesAndStaticMethods.errors.txt1 …/privateNamesAndStaticMethods.ts(2,12): error TS18022: A method cannot be named with a private ide…
2 …/privateNamesAndStaticMethods.ts(3,18): error TS18022: A method cannot be named with a private ide…
3 …/privateNamesAndStaticMethods.ts(4,19): error TS18022: A method cannot be named with a private ide…
5 …ivateNamesAndStaticMethods.ts(8,16): error TS18023: An accessor cannot be named with a private ide…
6 …vateNamesAndStaticMethods.ts(11,16): error TS18023: An accessor cannot be named with a private ide…
7 …privateNamesAndStaticMethods.ts(24,12): error TS18022: A method cannot be named with a private ide…
14 !!! error TS18022: A method cannot be named with a private identifier.
17 !!! error TS18022: A method cannot be named with a private identifier.
20 !!! error TS18022: A method cannot be named with a private identifier.
28 !!! error TS18023: An accessor cannot be named with a private identifier.
[all …]
DlateBoundDestructuringImplicitAnyError.js2 let named = "foo"; variable
3 let {[named]: prop} = {prop: "foo"};
14 let {[named]: prop2} = numIndexed;
18 let {[named]: prop4} = strIndexed;
32 var named = "foo";
33 var _a = { prop: "foo" }, _b = named, prop = _a[_b];
40 var _c = numIndexed, _d = named, prop2 = _c[_d];
44 var _g = strIndexed, _h = named, prop4 = _g[_h];
DimportHelpersNoHelpers.errors.txt1 tests/cases/compiler/external.ts(1,1): error TS2343: This syntax requires an imported helper named
2 tests/cases/compiler/external.ts(3,16): error TS2343: This syntax requires an imported helper named
3 tests/cases/compiler/external.ts(7,1): error TS2343: This syntax requires an imported helper named
4 tests/cases/compiler/external.ts(7,1): error TS2343: This syntax requires an imported helper named
5 tests/cases/compiler/external.ts(9,12): error TS2343: This syntax requires an imported helper named
6 …external.ts(14,13): error TS2343: This syntax requires an imported helper named '__assign' which d…
7 …external.ts(15,12): error TS2343: This syntax requires an imported helper named '__rest' which doe…
13 !!! error TS2343: This syntax requires an imported helper named '__exportStar' which does not exist…
17 !!! error TS2343: This syntax requires an imported helper named '__extends' which does not exist in…
23 !!! error TS2343: This syntax requires an imported helper named '__decorate' which does not exist i…
[all …]
DimportHelpersNoHelpersForAsyncGenerators.errors.txt1 tests/cases/compiler/main.ts(1,25): error TS2343: This syntax requires an imported helper named '__…
2 tests/cases/compiler/main.ts(1,25): error TS2343: This syntax requires an imported helper named '__…
3 tests/cases/compiler/main.ts(1,25): error TS2343: This syntax requires an imported helper named '__…
4 tests/cases/compiler/main.ts(4,5): error TS2343: This syntax requires an imported helper named '__a…
5 tests/cases/compiler/main.ts(4,5): error TS2343: This syntax requires an imported helper named '__a…
11 !!! error TS2343: This syntax requires an imported helper named '__asyncGenerator' which does not e…
13 !!! error TS2343: This syntax requires an imported helper named '__await' which does not exist in '…
15 !!! error TS2343: This syntax requires an imported helper named '__generator' which does not exist …
20 !!! error TS2343: This syntax requires an imported helper named '__asyncDelegator' which does not e…
22 !!! error TS2343: This syntax requires an imported helper named '__asyncValues' which does not exis…
DprivateNameES5Ban(target=es3).errors.txt2 …privateNames/privateNameES5Ban.ts(4,5): error TS18022: A method cannot be named with a private ide…
4 …rivateNames/privateNameES5Ban.ts(6,12): error TS18022: A method cannot be named with a private ide…
6 …vateNames/privateNameES5Ban.ts(7,9): error TS18023: An accessor cannot be named with a private ide…
8 …vateNames/privateNameES5Ban.ts(8,9): error TS18023: An accessor cannot be named with a private ide…
10 …ateNames/privateNameES5Ban.ts(9,16): error TS18023: An accessor cannot be named with a private ide…
12 …teNames/privateNameES5Ban.ts(10,16): error TS18023: An accessor cannot be named with a private ide…
23 !!! error TS18022: A method cannot be named with a private identifier.
29 !!! error TS18022: A method cannot be named with a private identifier.
34 !!! error TS18023: An accessor cannot be named with a private identifier.
39 !!! error TS18023: An accessor cannot be named with a private identifier.
[all …]
DlateBoundDestructuringImplicitAnyError.symbols2 let named = "foo";
3 >named : Symbol(named, Decl(lateBoundDestructuringImplicitAnyError.ts, 0, 3))
5 let {[named]: prop} = {prop: "foo"};
6 >named : Symbol(named, Decl(lateBoundDestructuringImplicitAnyError.ts, 0, 3))
32 let {[named]: prop2} = numIndexed;
33 >named : Symbol(named, Decl(lateBoundDestructuringImplicitAnyError.ts, 0, 3))
48 let {[named]: prop4} = strIndexed;
49 >named : Symbol(named, Decl(lateBoundDestructuringImplicitAnyError.ts, 0, 3))
DnamedTupleMembersErrors.types1 === tests/cases/conformance/types/tuple/named/namedTupleMembersErrors.ts ===
2 export type Segment1 = [length: number, number]; // partially named, disallowed
5 export type Segment2 = [number, size: number]; // partially named, disallowed
8 export type List = [item: any, ...any]; // partially named, disallowed
11 export type List2 = [any, ...remainder: any]; // partially named, disallowed
14 export type Pair = [item: any, any?]; // partially named, disallowed
17 export type Pair2 = [any, last?: any]; // partially named, disallowed
DgeneratedContextualTyping.types45 var x3: () => Base[] = function named() { return [d1, d2] };
47 >function named() { return [d1, d2] } : () => (Derived1 | Derived2)[]
48 >named : () => (Derived1 | Derived2)[]
67 var x6: { (): Base[]; } = function named() { return [d1, d2] };
69 >function named() { return [d1, d2] } : () => (Derived1 | Derived2)[]
70 >named : () => (Derived1 | Derived2)[]
137 class x15 { member: () => Base[] = function named() { return [d1, d2] } }
140 >function named() { return [d1, d2] } : () => (Derived1 | Derived2)[]
141 >named : () => (Derived1 | Derived2)[]
162 class x18 { member: { (): Base[]; } = function named() { return [d1, d2] } }
[all …]
DlateBoundDestructuringImplicitAnyError.types2 let named = "foo";
3 >named : string
6 let {[named]: prop} = {prop: "foo"};
7 >named : string
43 let {[named]: prop2} = numIndexed;
44 >named : string
61 let {[named]: prop4} = strIndexed;
62 >named : string
DdestructuredLateBoundNameHasCorrectTypes.symbols11 const named = "prop";
12 >named : Symbol(named, Decl(destructuredLateBoundNameHasCorrectTypes.ts, 3, 5))
14 let { [named]: computed } = { prop: "b" };
15 >named : Symbol(named, Decl(destructuredLateBoundNameHasCorrectTypes.ts, 3, 5))
/third_party/boost/libs/parameter/test/
Dtimings.txt33 named parameter time: 0.734
37 named parameter time: 0.766
66 named parameter time: 7.34
70 named parameter time: 7.34
92 named parameter time: <ignored>
94 named parameter time: 1.437
96 named parameter time: 1.453
105 named parameter time: <ignored>
107 named parameter time: 1.453
109 named parameter time: 1.437
[all …]
/third_party/boost/libs/xpressive/doc/
Dnamed_captures.qbk19 /named captures/. This feature allows you to assign a name to a capture, and
21 named captures, both in dynamic and in static regexes.
26 regex engines with the syntax of named captures. You can create a named capture
28 for instance, is a regular expression that creates a named capture and refers
31 // Create a named capture called "char" that matches a single
38 Once you have executed a match or search operation using a regex with named
39 captures, you can access the named capture through the _match_results_ object
56 You can also refer back to a named capture from within a substitution string.
58 to use named captures when doing string substitution.
65 Notice that you have to specify `format_perl` when using named captures. Only
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dra.txt13 * @note Comments for tag named ra
20 * e.g: The OS/400 job named SYSLOG
22 test1{"The {0} job named {1}"}
68 * comments for un-named string
70 * @note This resource is un-named string
74 * comments for un-named int
76 * @note This resource is un-named int
80 * comments for un-named binary
82 * @note This resource is for un-named binary

12345678910>>...89