Home
last modified time | relevance | path

Searched +full:- +full:- +full:build +full:- +full:number (Results 1 – 25 of 1203) sorted by relevance

12345678910>>...49

/external/icu/icu4c/source/test/intltest/
Dmessageformat2test_fromjson.cpp26 https://github.com/unicode-org/message-format-wg/commits/main/spec/message.abnf
28 as of the following commit from 2023-05-09:
29 https://github.com/unicode-org/message-format-wg/commit/194f6efcec5bf396df36a19bd6fa78d1fa2e0867
34 …thub.com/messageformat/messageformat/blob/main/packages/mf2-messageformat/src/__fixtures/test-mess…
44 .build(); in jsonTests()
49 .build(); in jsonTests()
54 .build(); in jsonTests()
60 .build(); in jsonTests()
63 test = testBuilder.setPattern("hello {$place-.}") in jsonTests()
65 .setArgument("place-.", "world") in jsonTests()
[all …]
Dmessageformat2test_builtin.cpp17 https://github.com/unicode-org/message-format-wg/commits/main/spec/message.abnf
19 release LDML45-alpha:
21 https://github.com/unicode-org/message-format-wg/releases/tag/LDML45-alpha
32 cal->set(2022, Calendar::NOVEMBER, 23, 19, 42, 37); in testDateTime()
33 UDate TEST_DATE = cal->getTime(errorCode); in testDateTime()
40 .build(); in testDateTime()
43 // Formatted string as argument -- `:date` should format the source Formattable in testDateTime()
49 .build(); in testDateTime()
57 .build(); in testDateTime()
63 .build(); in testDateTime()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVersionTuple.h1 //===- VersionTuple.h - Version Number Handling -----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
25 /// Represents a version number in the form major[.minor[.subminor[.build]]].
35 unsigned Build : 31; variable
41 Build(0), HasBuild(false) {} in VersionTuple()
45 HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
49 HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
53 HasSubminor(true), Build(0), HasBuild(false) {} in VersionTuple()
[all …]
/external/clang/include/clang/Basic/
DVersionTuple.h1 //===- VersionTuple.h - Version Number Handling -----------------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
25 /// \brief Represents a version number in the form major[.minor[.subminor[.build]]].
37 unsigned Build : 31; variable
43 Subminor(0), HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
47 Subminor(0), HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
52 HasMinor(true), Subminor(0), HasSubminor(false), Build(0), in Major()
58 HasMinor(true), Subminor(Subminor), HasSubminor(true), Build(0), in Major()
62 unsigned Build, bool UsesUnderscores = false)
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
DVersionTuple.h1 //===- VersionTuple.h - Version Number Handling -----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
30 /// Represents a version number in the form major[.minor[.subminor[.build]]].
40 unsigned Build : 31; variable
46 Build(0), HasBuild(false) {} in VersionTuple()
50 HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
54 HasSubminor(false), Build(0), HasBuild(false) {} in VersionTuple()
59 HasSubminor(true), Build(0), HasBuild(false) {} in VersionTuple()
[all …]
/external/kotlinpoet/docs/
Dfunctions.md10 .build()
15 .build()
41 .build()
53 ## Single-expression functions
55 KotlinPoet can recognize single-expression functions and print them out properly. It treats
56 each function with a body that starts with `return` as a single-expression function:
62 .addStatement("return if (x < 0) -x else x")
63 .build()
69 fun abs(x: Int): Int = if (x < 0) -x else x
91 .build()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/message2/
DMf2FeaturesTest.java25 …* <a href="https://github.com/unicode-org/message-format-wg/blob/main/spec/syntax.md">spec documen…
31 @SuppressWarnings({"static-method", "javadoc"})
43 .build()); in testEmptyMessage()
52 .build()); in testPlainText()
61 .build()); in testPlaceholders()
74 .build()); in testArgumentMissing()
79 .build()); in testArgumentMissing()
84 .build()); in testArgumentMissing()
89 .build()); in testArgumentMissing()
103 .build()); in testDefaultLocale()
[all …]
/external/icu/icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/message2/
DMf2FeaturesTest.java23 …* <a href="https://github.com/unicode-org/message-format-wg/blob/main/spec/syntax.md">spec documen…
28 @SuppressWarnings({"static-method", "javadoc"})
40 .build()); in testEmptyMessage()
49 .build()); in testPlainText()
58 .build()); in testPlaceholders()
71 .build()); in testArgumentMissing()
76 .build()); in testArgumentMissing()
81 .build()); in testArgumentMissing()
86 .build()); in testArgumentMissing()
100 .build()); in testDefaultLocale()
[all …]
/external/clang/include/clang/AST/
DStmtOpenMP.h1 //===- StmtOpenMP.h - Classes for OpenMP directives ------------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
26 //===----------------------------------------------------------------------===//
28 //===----------------------------------------------------------------------===//
43 /// \brief Number of child expressions/stmts.
59 /// \brief Build instance of directive of class \a K.
105 while (this->I != End && !isa<SpecificClause>(*this->I)) in SkipToNextClause()
106 ++this->I; in SkipToNextClause()
117 return cast<SpecificClause>(*this->I);
[all …]
DOpenMPClause.h1 //===- OpenMPClause.h - Classes for OpenMP clauses --------------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
26 //===----------------------------------------------------------------------===//
28 //===----------------------------------------------------------------------===//
67 auto Children = const_cast<OMPClause *>(this)->children(); in children()
73 /// Class that handles pre-initialization statement for some clauses, like
77 /// Pre-initialization statement for the clause.
80 /// Set pre-initialization statement for the clause.
83 assert(get(This) && "get is not tuned for pre-init."); in OMPClauseWithPreInit()
[all …]
/external/cronet/build/util/
Dandroid_chrome_version.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Different build variants of Chrome for Android have different version codes.
39 {full BUILD number}{3 digits: PATCH}{1 digit: package}{1 digit: ABIs}.
43 Build 3721, patch 0, ChromeModern (1), on ARM64 (5): 372100015
44 Build 3721, patch 9, Monochrome (2), on ARM (0): 372100920
63 """ "Next" builds get +500 on their patch number.
65 This ensures that they are considered "newer" than any non-next build of the
66 same branch number; this is a workaround for Android requiring a total ordering
68 actual patch number will never reach 500, which has never even come close in
72 """List of version numbers to be created for each build configuration.
[all …]
/external/python/setuptools/docs/userguide/
Ddistribution.rst1 Tagging and "Daily Build" or "Snapshot" Releases
2 ------------------------------------------------
5 track finer-grained version increments than you would normally use for e.g.
8 need to be tracked by revision or build number or even build date. This is
10 therefore may literally need an up-to-the-minute version of something!
16 * A manually-specified pre-release tag, such as "build" or "dev", or a
17 manually-specified post-release tag, such as a build or revision number
18 (``--tag-build=STRING, -bSTRING``)
20 * An 8-character representation of the build date (``--tag-date, -d``), as
25 to generate a daily build or snapshot for. See the section below on the
[all …]
/external/angle/build/util/
Dandroid_chrome_version.py3 # Use of this source code is governed by a BSD-style license that can be
5 """Different build variants of Chrome for Android have different version codes.
39 {full BUILD number}{3 digits: PATCH}{1 digit: package}{1 digit: ABIs}.
43 Build 3721, patch 0, ChromeModern (1), on ARM64 (5): 372100015
44 Build 3721, patch 9, Monochrome (2), on ARM (0): 372100920
63 """ "Next" builds get +500 on their patch number.
65 This ensures that they are considered "newer" than any non-next build of the
66 same branch number; this is a workaround for Android requiring a total ordering
68 actual patch number will never reach 500, which has never even come close in
72 """List of version numbers to be created for each build configuration.
[all …]
/external/openthread/tools/harness-simulation/posix/
Dconfig.yml5 - tag: OT11
7 number: 33
8 subpath: build/ot11/simulation
10 - "-DOPENTHREAD_CONFIG_IP6_MAX_EXT_MCAST_ADDRS=8"
12 - "-DOT_REFERENCE_DEVICE=ON"
13 - "-DOT_COMMISSIONER=ON"
14 - "-DOT_JOINER=ON"
15 - tag: OT12
17 number: 10
18 subpath: build/ot12/simulation
[all …]
/external/cronet/testing/flake_suppressor_common/
Dargument_parsing.py2 # Use of this source code is governed by a BSD-style license that can be
12 parser.add_argument('--project',
16 '"chrome-luci-data.chromium.gpu_ci_test_results".'))
17 parser.add_argument('--sample-period',
20 help=('The number of days to sample data from.'))
21 parser.add_argument('--no-group-by-tags',
28 parser.add_argument('--no-prompt-for-user-input',
36 parser.add_argument('--ignore-threshold',
41 'added when --no-prompt-for-user-input is used.'))
42 parser.add_argument('--flaky-threshold',
[all …]
/external/rust/crates/semver/tests/
Dtest_version.rs20 "unexpected character ' ' while parsing major version number", in test_parse()
26 "unexpected end of input while parsing major version number", in test_parse()
32 "unexpected end of input while parsing minor version number", in test_parse()
35 let err = version_err("1.2.3-"); in test_parse()
36 assert_to_string(err, "empty identifier segment in pre-release identifier"); in test_parse()
41 "unexpected character 'a' while parsing major version number", in test_parse()
45 assert_to_string(err, "unexpected character ' ' after patch version number"); in test_parse()
47 let err = version_err("1.2.3-01"); in test_parse()
48 assert_to_string(err, "invalid leading zero in pre-release identifier"); in test_parse()
51 assert_to_string(err, "empty identifier segment in build metadata"); in test_parse()
[all …]
/external/cronet/third_party/protobuf/ruby/lib/google/protobuf/
Ddescriptor_dsl.rb54 # ---- Internal methods, not part of the DSL ----
56 def build method in Google.Protobuf.Internal.Builder
63 proto = file_builder.build
69 number = @@file_number.get_and_increment
70 filename = "ruby_default_file#{number}.proto"
94 # ---- Internal methods, not part of the DSL ----
134 type_name = type_name[1..-1]
150 if enum_value_proto.number == as_int
163 # Historically we allowed enum defaults to be specified as a number.
166 # labels have the same number.
[all …]
/external/protobuf/ruby/lib/google/protobuf/
Ddescriptor_dsl.rb54 # ---- Internal methods, not part of the DSL ----
56 def build method in Google.Protobuf.Internal.Builder
63 proto = file_builder.build
69 number = @@file_number.get_and_increment
70 filename = "ruby_default_file#{number}.proto"
94 # ---- Internal methods, not part of the DSL ----
134 type_name = type_name[1..-1]
150 if enum_value_proto.number == as_int
163 # Historically we allowed enum defaults to be specified as a number.
166 # labels have the same number.
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetSchema.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
54 void addVarint(UnknownFieldSet.Builder fields, int number, long value) { in addVarint() argument
55 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addVarint(value).build()); in addVarint()
59 void addFixed32(UnknownFieldSet.Builder fields, int number, int value) { in addFixed32() argument
60 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addFixed32(value).build()); in addFixed32()
64 void addFixed64(UnknownFieldSet.Builder fields, int number, long value) { in addFixed64() argument
65 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addFixed64(value).build()); in addFixed64()
69 void addLengthDelimited(UnknownFieldSet.Builder fields, int number, ByteString value) { in addLengthDelimited() argument
70 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addLengthDelimited(value).build()); in addLengthDelimited()
[all …]
/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetSchema.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
54 void addVarint(UnknownFieldSet.Builder fields, int number, long value) { in addVarint() argument
55 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addVarint(value).build()); in addVarint()
59 void addFixed32(UnknownFieldSet.Builder fields, int number, int value) { in addFixed32() argument
60 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addFixed32(value).build()); in addFixed32()
64 void addFixed64(UnknownFieldSet.Builder fields, int number, long value) { in addFixed64() argument
65 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addFixed64(value).build()); in addFixed64()
69 void addLengthDelimited(UnknownFieldSet.Builder fields, int number, ByteString value) { in addLengthDelimited() argument
70 fields.mergeField(number, UnknownFieldSet.Field.newBuilder().addLengthDelimited(value).build()); in addLengthDelimited()
[all …]
/external/googleapis/google/chromeos/moblab/v1beta1/
Dbuild_service.proto7 // http://www.apache.org/licenses/LICENSE-2.0
34 // Manages Chrome OS build services.
40 // Lists all build targets that a user has access to.
48 // Lists all models for the given build target.
56 // Lists all builds for the given build target and model in descending order
57 // for the milestones and build versions.
65 // Checks the stage status for a given build artifact in a partner Google
75 // Stages a given build artifact from a internal Google Cloud Storage bucket
94 // Finds the most stable build for the given build target. The definition of
95 // the most stable build is determined by evaluating the following rule in
[all …]
/external/opencensus-java/api/src/main/java/io/opencensus/trace/config/
DTraceParams.java8 * http://www.apache.org/licenses/LICENSE-2.0
38 private static final double DEFAULT_PROBABILITY = 1e-4;
57 .build();
69 * Returns the global default max number of attributes per {@link Span}.
71 * @return the global default max number of attributes per {@link Span}.
77 * Returns the global default max number of {@link Annotation} events per {@link Span}.
79 * @return the global default max number of {@code Annotation} events per {@code Span}.
85 * Returns the global default max number of {@link MessageEvent} events per {@link Span}.
87 * @return the global default max number of {@code MessageEvent} events per {@code Span}.
93 * Returns the global default max number of {@link io.opencensus.trace.NetworkEvent} events per
[all …]
/external/googleapis/google/devtools/resultstore/v2/
Dcoverage.proto7 // http://www.apache.org/licenses/LICENSE-2.0
29 // This is a bitfield where i-th bit corresponds to the i-th line. Divide line
30 // number by 8 to get index into byte array. Mod line number by 8 to get bit
31 // number (0 = LSB, 7 = MSB).
40 // This is a bitfield where i-th bit corresponds to the i-th line. Divide line
41 // number by 8 to get index into byte array. Mod line number by 8 to get bit
42 // number (0 = LSB, 7 = MSB).
53 // This is a bitfield where i-th bit corresponds to the i-th line. Divide line
54 // number by 8 to get index into byte array. Mod line number by 8 to get bit
55 // number (0 = LSB, 7 = MSB).
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ext/
DExternalTypeCustomResolverTest.java26 protected String number; field in ExternalTypeCustomResolverTest.ClassesWithoutBuilder.CreditCardDetails
46 public void setNumber(String number) { in setNumber() argument
47 this.number = number; in setNumber()
128 PaymentDetails build(); in build() method
189 private String number; field in ExternalTypeCustomResolverTest.ClassesWithBuilder.CreditCardDetails.CompanyCreditCardDetailsBuilder
193 public CreditCardDetails build() { in build() method in ExternalTypeCustomResolverTest.ClassesWithBuilder.CreditCardDetails.CompanyCreditCardDetailsBuilder
194 … return new CreditCardDetails (cardHolderFirstName, cardHolderLastName, number, csc, in build()
213 public CompanyCreditCardDetailsBuilder number(final String number) { in number() argument
214 this.number = number; in number()
223 private String number; field in ExternalTypeCustomResolverTest.ClassesWithBuilder.CreditCardDetails.IndividualCreditCardDetailsBuilder
[all …]
/external/google-cloud-java/java-dns/src/test/java/com/google/cloud/dns/
DProjectInfoTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
28 private static final String ID = "project-id-123";
29 private static final BigInteger NUMBER = new BigInteger("123"); field in ProjectInfoTest
32 ProjectInfo.newBuilder().setId(ID).setNumber(NUMBER).setQuota(QUOTA).build();
36 ProjectInfo withId = ProjectInfo.newBuilder().setId(ID).build(); in testBuilder()
40 ProjectInfo withNumber = ProjectInfo.newBuilder().setNumber(NUMBER).build(); in testBuilder()
41 assertEquals(NUMBER, withNumber.getNumber()); in testBuilder()
44 ProjectInfo withQuota = ProjectInfo.newBuilder().setQuota(QUOTA).build(); in testBuilder()
49 assertEquals(NUMBER, PROJECT_INFO.getNumber()); in testBuilder()
80 ProjectInfo clone = ProjectInfo.newBuilder().build(); in testEqualsAndNotEquals()
[all …]

12345678910>>...49