Home
last modified time | relevance | path

Searched refs:singular (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/node/deps/npm/node_modules/y18n/
Dindex.js123 var singular = args.shift()
132 var str = quantity === 1 ? singular : plural
133 if (this.cache[this.locale][singular]) {
134 str = this.cache[this.locale][singular][quantity === 1 ? 'one' : 'other']
138 if (!this.cache[this.locale][singular] && this.updateFiles) {
139 this.cache[this.locale][singular] = {
140 one: singular,
/third_party/node/tools/inspector_protocol/jinja2/
Dext.py270 singular_names, singular = self._parse_block(parser, True)
309 singular = self._trim_whitespace(singular)
313 node = self._make_node(singular, plural, variables, plural_expr,
357 def _make_node(self, singular, plural, variables, plural_expr, argument
363 singular = singular.replace('%%', '%')
370 node = nodes.Call(gettext, [nodes.Const(singular)],
377 nodes.Const(singular),
/third_party/skia/third_party/externals/jinja2/
Dext.py285 singular_names, singular = self._parse_block(parser, True)
326 singular = self._trim_whitespace(singular)
331 singular,
382 self, singular, plural, variables, plural_expr, vars_referenced, num_called_num argument
388 singular = singular.replace("%%", "%")
395 node = nodes.Call(gettext, [nodes.Const(singular)], [], None, None)
402 [nodes.Const(singular), nodes.Const(plural), plural_expr],
/third_party/jinja2/
Dext.py29 def ngettext(self, singular: str, plural: str, n: int) -> str:
36 def npgettext(self, context: str, singular: str, plural: str, n: int) -> str:
416 singular_names, singular = self._parse_block(parser, True)
457 singular = self._trim_whitespace(singular)
462 singular,
518 singular: str,
533 singular = singular.replace("%%", "%")
538 func_args: t.List[nodes.Expr] = [nodes.Const(singular)]
/third_party/python/Doc/library/
Dgettext.rst79 .. function:: ngettext(singular, plural, n)
84 *singular* if *n* is 1; return *plural* otherwise.
94 .. function:: dngettext(domain, singular, plural, n)
101 .. function:: npgettext(context, singular, plural, n)
102 .. function:: dnpgettext(domain, context, singular, plural, n)
113 .. function:: lngettext(singular, plural, n)
114 .. function:: ldngettext(domain, singular, plural, n)
274 .. method:: ngettext(singular, plural, n)
277 Otherwise, return *singular* if *n* is 1; return *plural* otherwise.
289 .. method:: npgettext(context, singular, plural, n)
[all …]
/third_party/openGLES/extensions/IBM/
DIBM_cull_vertex.txt85 matrix is singular or nearly singular. This operation in effect
/third_party/skia/third_party/externals/opengl-registry/extensions/IBM/
DIBM_cull_vertex.txt85 matrix is singular or nearly singular. This operation in effect
/third_party/flutter/skia/site/dev/contrib/
Dstyle.md83 an underscore and singular name of the enum name. The enum itself should be
84 singular for exclusive values or plural for a bitfield. If a count is needed it
85 is `k<singular enum name>Count` and not be a member of the enum (see example),
/third_party/skia/site/docs/dev/contrib/
Dstyle.md109 underscore and singular name of the enum name. The enum itself should be
110 singular for exclusive values or plural for a bitfield. If a count is needed it
111 is `k<singular enum name>Count` and not be a member of the enum (see example),
/third_party/node/tools/inspector_protocol/encoding/
Dencoding_test.cc77 span<TypeParam> singular(&single_item, 1); in TYPED_TEST() local
78 EXPECT_FALSE(singular.empty()); in TYPED_TEST()
79 EXPECT_EQ(1u, singular.size()); in TYPED_TEST()
80 EXPECT_EQ(sizeof(TypeParam), singular.size_bytes()); in TYPED_TEST()
81 EXPECT_EQ(singular.begin() + 1, singular.end()); in TYPED_TEST()
82 EXPECT_EQ(42, singular[0]); in TYPED_TEST()
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pShaderCompilationCases.cpp2086 string singular = isMedian ? "Median" : "Average"; in iterate() local
2087 string plural = singular + "s"; in iterate()
2098 …(NAME, DESC, DATA) log << TestLog::Float(statNamePrefix + (NAME) + singular, singular + " of " + (… in iterate()
2612 string singular = isMedian ? "Median" : "Average"; in iterate() local
2613 string plural = singular + "s"; in iterate()
2624 …(NAME, DESC, DATA) log << TestLog::Float(statNamePrefix + (NAME) + singular, singular + " of " + (… in iterate()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pShaderCompilationCases.cpp2106 string singular = isMedian ? "Median" : "Average"; in iterate() local
2107 string plural = singular + "s"; in iterate()
2118 …(NAME, DESC, DATA) log << TestLog::Float(statNamePrefix + (NAME) + singular, singular + " of " + (… in iterate()
2632 string singular = isMedian ? "Median" : "Average"; in iterate() local
2633 string plural = singular + "s"; in iterate()
2644 …(NAME, DESC, DATA) log << TestLog::Float(statNamePrefix + (NAME) + singular, singular + " of " + (… in iterate()
/third_party/protobuf/src/google/protobuf/
Dunittest_no_field_presence.proto40 // This proto includes every type of field in both singular and repeated
Dunittest_proto3_arena_lite.proto40 // This proto includes every type of field in both singular and repeated
Dunittest_proto3_lite.proto39 // This proto includes every type of field in both singular and repeated
Dunittest_proto3.proto39 // This proto includes every type of field in both singular and repeated
Dunittest_proto3_arena.proto39 // This proto includes every type of field in both singular and repeated
Dtest_messages_proto2.proto49 // This proto includes every type of field in both singular and repeated
Dtest_messages_proto3.proto57 // This proto includes every type of field in both singular and repeated
/third_party/mesa3d/docs/relnotes/
D21.2.6.rst129 - aux/primconvert: handle singular incomplete restarts
/third_party/protobuf/docs/
Dfield_presence.md3 …s how to enable experimental support for explicit presence tracking for singular proto3 fields wit…
67 Similar to singular fields, `oneof` fields explicitly track which one of the members, if any, conta…
111 …cit presence_ tracking discipline, when the default value is set. For a singular field with numeri…
Dimplementing_proto3_presence.md39 without any label (known as "singular fields"), will continue to omit presence
45 descriptors already use `LABEL_OPTIONAL` for proto3 singular fields, which do
/third_party/python/Lib/
Doptparse.py95 def ngettext(singular, plural, n): argument
97 return singular
/third_party/skia/third_party/externals/egl-registry/extensions/NV/
DEGL_NV_stream_consumer_gltexture_yuv.txt238 replace all singular references to "texture" with "textures" and make
/third_party/protobuf/csharp/protos/
Dunittest_proto3.proto49 // This proto includes every type of field in both singular and repeated

1234