/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/ |
H A D | DisplayOptionsTest.java | 29 DisplayOptions displayOptions = DisplayOptions.builder().build(); in TestDisplayOptionsDefault() 47 .setGrammaticalCase(GrammaticalCase.ABLATIVE).build(); in TestDisplayOptionsEachElement() 51 displayOptions = DisplayOptions.builder().setNounClass(NounClass.PERSONAL).build(); in TestDisplayOptionsEachElement() 55 displayOptions = DisplayOptions.builder().setPluralCategory(PluralCategory.FEW).build(); in TestDisplayOptionsEachElement() 60 .setCapitalization(Capitalization.BEGINNING_OF_SENTENCE).build(); in TestDisplayOptionsEachElement() 64 displayOptions = DisplayOptions.builder().setNameStyle(NameStyle.STANDARD_NAMES).build(); in TestDisplayOptionsEachElement() 69 .build(); in TestDisplayOptionsEachElement() 74 .setSubstituteHandling(SubstituteHandling.NO_SUBSTITUTE).build(); in TestDisplayOptionsEachElement() 82 .setGrammaticalCase(GrammaticalCase.ABLATIVE).build(); in TestDisplayOptionsUpdating() 98 displayOptions = displayOptions.copyToBuilder().setNounClass(NounClass.PERSONAL).build(); in TestDisplayOptionsUpdating() [all...] |
/third_party/python/Doc/ |
H A D | make.bat | 19 set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"
71 if not defined BUILDDIR set BUILDDIR=build
73 rem Targets that don't require sphinx-build
86 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
88 echo.to the full path of the 'sphinx-build' executable. Alternatively you
97 rem Targets that do require sphinx-build and have their own label
101 goto build
116 echo.All arguments past the first one are passed through to sphinx-build as
117 echo.filenames to build o 127 :build global() label [all...] |
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | TimeUtilTest.java | 64 value = Timestamp.newBuilder().setNanos(10).build(); in testTimestampStringFormat() 66 value = Timestamp.newBuilder().setNanos(10000).build(); in testTimestampStringFormat() 68 value = Timestamp.newBuilder().setNanos(10000000).build(); in testTimestampStringFormat() 148 Timestamp.newBuilder().setSeconds(TimeUtil.TIMESTAMP_SECONDS_MIN - 1).build(); in testTimetampInvalidFormat() 158 Timestamp.newBuilder().setSeconds(TimeUtil.TIMESTAMP_SECONDS_MAX + 1).build(); in testTimetampInvalidFormat() 167 Timestamp value = Timestamp.newBuilder().setNanos(-1).build(); in testTimetampInvalidFormat() 176 Timestamp value = Timestamp.newBuilder().setNanos(1000000000).build(); in testTimetampInvalidFormat() 249 duration = Duration.newBuilder().setSeconds(1).build(); in testDurationStringFormat() 251 duration = Duration.newBuilder().setNanos(10000000).build(); in testDurationStringFormat() 253 duration = Duration.newBuilder().setNanos(10000).build(); in testDurationStringFormat() [all...] |
H A D | FieldMaskUtilTest.java | 81 FieldMask mask = FieldMask.newBuilder().addPaths("foo").build(); in testToString() 83 mask = FieldMask.newBuilder().addPaths("foo").addPaths("bar").build(); in testToString() 94 .build(); in testToString() 154 mask = FieldMask.newBuilder().addPaths("foo").build(); in testToJsonString() 156 mask = FieldMask.newBuilder().addPaths("foo.bar_baz").addPaths("").build(); in testToJsonString() 158 mask = FieldMask.newBuilder().addPaths("foo").addPaths("bar_baz").build(); in testToJsonString() 186 .build()); in testFromStringList() 197 .build()); in testFromStringList() 206 .build()); in testFromStringList() 260 .build(); in testMerge() [all...] |
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
H A D | NestedBuildersTest.java | 67 Vehicle vehicle = vehicleBuilder.build(); in testMessagesAndBuilders() 83 vehicle = vehicleBuilder.build(); in testMessagesAndBuilders() 166 .addWheel(Wheel.newBuilder().setRadius(1).build()) in testMerge() 167 .addWheel(Wheel.newBuilder().setRadius(2).build()) in testMerge() 168 .build(); in testMerge() 172 .build(); in testMerge() 176 Vehicle vehicle3 = vehicle1.toBuilder().build(); in testMerge()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | NestedBuildersTest.java | 56 Vehicle vehicle = vehicleBuilder.build(); in testMessagesAndBuilders() 70 vehicle = vehicleBuilder.build(); in testMessagesAndBuilders() 140 .addWheel(Wheel.newBuilder().setRadius(1).build()) in testMerge() 141 .addWheel(Wheel.newBuilder().setRadius(2).build()) in testMerge() 142 .build(); in testMerge() 144 Vehicle vehicle2 = Vehicle.newBuilder().mergeFrom(vehicle1).build(); in testMerge() 148 Vehicle vehicle3 = vehicle1.toBuilder().build(); in testMerge()
|
H A D | DescriptorsTest.java | 433 .build()) in testDescriptorValidatorException() 434 .build()) in testDescriptorValidatorException() 435 .build(); in testDescriptorValidatorException() 466 .build()) in testDescriptorComplexCrosslink() 467 .build()) in testDescriptorComplexCrosslink() 477 .build()) in testDescriptorComplexCrosslink() 478 .build()) in testDescriptorComplexCrosslink() 479 .build(); in testDescriptorComplexCrosslink() 504 FileDescriptorProto fooProto = FileDescriptorProto.newBuilder().setName("foo.proto").build(); in testDependencyOrder() 506 FileDescriptorProto.newBuilder().setName("bar.proto").addDependency("foo.proto").build(); in testDependencyOrder() [all...] |
H A D | LazyFieldLiteTest.java | 142 TestAllTypes message1 = TestAllTypes.newBuilder().setOptionalInt32(1).build(); in testMergeBeforeParsing() 144 TestAllTypes message2 = TestAllTypes.newBuilder().setOptionalInt64(2).build(); in testMergeBeforeParsing() 149 TestAllTypes.newBuilder().setOptionalInt32(1).setOptionalInt64(2).build(); in testMergeBeforeParsing() 155 TestAllTypes message1 = TestAllTypes.newBuilder().setOptionalInt32(1).build(); in testMergeOneNotParsed() 156 TestAllTypes message2 = TestAllTypes.newBuilder().setOptionalInt64(2).build(); in testMergeOneNotParsed() 158 TestAllTypes.newBuilder().setOptionalInt32(1).setOptionalInt64(2).build(); in testMergeOneNotParsed() 176 TestAllTypes message = TestAllTypes.newBuilder().setOptionalInt32(1).build(); in testMergeInvalid() 192 TestAllExtensions.newBuilder().setExtension(optionalInt32Extension, 42).build(); in testMergeKeepsExtensionsWhenPossible() 193 TestAllExtensions emptyMessage = TestAllExtensions.newBuilder().build(); in testMergeKeepsExtensionsWhenPossible() 237 MessageLite newMessage = builder.build(); in changeValue() [all...] |
/third_party/python/Tools/buildbot/ |
H A D | clean.bat | 8 echo Deleting build
9 call "%pcbuild%\build.bat" -t Clean -k %*
10 call "%pcbuild%\build.bat" -t Clean -k -d %*
16 rmdir /s /q "%root%\build"
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | program.cpp | 73 return prog.build(dev).bin; in link() 103 program::build::status() const { in status() 113 program::build::binary_type() const { in binary_type() 124 const struct program::build & 125 program::build(const device &dev) const { in build() function in program 126 static const struct build null; in build()
|
H A D | program.hpp | 64 struct build { struct in clover::program 65 build(const binary &b = {}, const std::string &opts = {}, in build() function 76 const build &build(const device &dev) const; 88 std::map<const device *, struct build> _builds;
|
/third_party/rust/crates/aho-corasick/bench/src/ |
H A D | bench.rs | 8 mod build; modules 15 build::all(c); in all() 40 .build(patterns.clone()); in define_aho_corasick() 47 // let aut = AhoCorasickBuilder::new().dfa(true).build(patterns.clone()); in define_aho_corasick() 51 .build(patterns.clone()); in define_aho_corasick() 60 if let Some(searcher) = builder.build() { in define_aho_corasick() 72 if let Some(searcher) = builder.build() { in define_aho_corasick() 107 .build(patterns.clone()); in define_aho_corasick_dfa() 120 .build(patterns.clone()); in define_aho_corasick_dfa() 133 .build(pattern in define_aho_corasick_dfa() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | server.rs | 77 pub fn build(self) -> Server { in build() functions 78 let ctx = self.ctx.build(); in build() 116 pub fn build(self) -> Client { in build() functions 118 ctx: self.ctx.build(), in build() 124 self.build().builder().connect() in connect() 128 self.build().builder().connect_err(); in connect_err()
|
/third_party/json/ |
H A D | Makefile | 43 @echo "run_benchmarks - build and run benchmarks" 60 rm -fr cmake-build-benchmarks 61 mkdir cmake-build-benchmarks 62 cd cmake-build-benchmarks ; cmake ../tests/benchmarks -GNinja -DCMAKE_BUILD_TYPE=Release 63 cd cmake-build-benchmarks ; ninja 64 cd cmake-build-benchmarks ; ./json_benchmarks 133 rm -fr cmake-build-pvs-studio 134 mkdir cmake-build-pvs-studio 135 cd cmake-build-pvs-studio ; cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=On -DJSON_MultipleHeaders=ON 136 cd cmake-build [all...] |
/third_party/python/Tools/ssl/ |
H A D | multissltests.py | 14 The script must be run with Python's build directory as current working 138 help="Force build and installation." 174 # build directory (removed after install) 282 # force extraction into build dir 294 """Now build openssl""" 295 log.info("Running build in {}".format(self.build_dir)) 345 log.warning("Using build from {}".format(self.build_dir)) 349 # remove all build artefacts 350 for root, dirs, files in os.walk('build'): 363 cmd = [sys.executable, os.path.join(PYTHONROOT, "setup.py"), "build"] [all...] |
/third_party/protobuf/conformance/ |
H A D | ConformanceJava.java | 252 return Conformance.ConformanceResponse.newBuilder().setParseError(e.getMessage()).build(); in doTest() 260 return Conformance.ConformanceResponse.newBuilder().setParseError(e.getMessage()).build(); in doTest() 278 testMessage = builder.build(); in doTest() 283 testMessage = builder.build(); in doTest() 288 return Conformance.ConformanceResponse.newBuilder().setParseError(e.getMessage()).build(); in doTest() 298 testMessage = builder.build(); in doTest() 302 .build(); in doTest() 309 testMessage = builder.build(); in doTest() 313 .build(); in doTest() 335 return Conformance.ConformanceResponse.newBuilder().setProtobufPayload(MessageString).build(); in doTest() [all...] |
/third_party/skia/tools/skqp/ |
H A D | run_skqp_exe | 12 def skqp(build): 17 assert os.path.isdir(build) 18 build = os.path.abspath(build) 31 adb('push', os.path.join(build, 'skqp'), '/data/local/tmp/skqp/skqp')
|
/third_party/skia/experimental/wasm-skp-debugger/ |
H A D | Makefile | 2 # Does an incremental build where possible. 7 echo "const SKIA_VERSION = 'local release build';" > ./debugger/bin/version.js 10 # Does an incremental build where possible. 15 echo "const SKIA_VERSION = 'local debug build';" > ./debugger/bin/version.js 17 # When testing the debugger locally, these assets need to be copied to it's build dir. 19 rm -rf ${SKIA_INFRA_ROOT}/debugger-app/build/debugger/ 20 mkdir ${SKIA_INFRA_ROOT}/debugger-app/build/debugger/ 21 cp ./debugger/bin/debugger.js ${SKIA_INFRA_ROOT}/debugger-app/build/debugger/ 22 cp ./debugger/bin/debugger.wasm ${SKIA_INFRA_ROOT}/debugger-app/build/debugger/ 23 cp ./debugger/bin/version.js ${SKIA_INFRA_ROOT}/debugger-app/build/ [all...] |
/third_party/icu/tools/unicode/c/genprops/ |
H A D | genprops.cpp | 46 void PropsBuilder::build(UErrorCode &) {} in build() function in PropsBuilder 141 pnamesBuilder->build(errorCode); in main() 143 fprintf(stderr, "genprops: PNamesBuilder::build() failed - %s\n", in main() 187 corePropsBuilder->build(errorCode); in main() 189 bidiPropsBuilder->build(errorCode); in main() 191 casePropsBuilder->build(errorCode); in main() 193 layoutPropsBuilder->build(errorCode); in main() 195 emojiPropsBuilder->build(errorCode); in main() 197 namesPropsBuilder->build(errorCode); in main()
|
/third_party/ninja/misc/ |
H A D | ninja.vim | 1 " ninja build file syntax. 2 " Language: ninja build file as described at 3 " http://ninja-build.org/manual.html 12 " https://github.com/ninja-build/ninja/blob/master/src/lexer.in.cc 13 " https://github.com/ninja-build/ninja/blob/master/src/manifest_parser.cc 32 syn match ninjaKeyword "^build\>" 39 " Both 'build' and 'rule' begin a variable scope that ends 41 " limited set of magic variables, 'build' allows general
|
/third_party/python/Tools/msi/ |
H A D | build.bat | 33 call "%PCBUILD%build.bat" -p Win32 -d -e %REBUILD% %BUILDTEST%
35 call "%PCBUILD%build.bat" -p Win32 -e %REBUILD% %BUILDTEST%
39 call "%PCBUILD%build.bat" -p x64 -d -e %REBUILD% %BUILDTEST%
41 call "%PCBUILD%build.bat" -p x64 -e %REBUILD% %BUILDTEST%
45 call "%PCBUILD%build.bat" -p ARM64 -d -e %REBUILD% %BUILDTEST%
47 call "%PCBUILD%build.bat" -p ARM64 -e %REBUILD% %BUILDTEST%
87 echo build.bat [-x86] [-x64] [-arm64] [--doc] [-h] [--test-marker] [--pack] [-r]
96 echo -r Rebuild rather than incremental build
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | transform_builder.h | 28 /// Fuzzer utility class to build inputs for transforms and setup the transform 105 Config config = tb->builder()->build<Config>(); in impl() 137 binding_points, accesses, tb->builder()->build<bool>()); in impl() 158 auto input = tb->builder()->build<std::string>(); in impl() 173 cfg.entry_point_name = tb->builder()->build<std::string>(); in impl() 177 cfg.pulling_group = tb->builder()->build<uint32_t>(); in impl() 191 desc.offset = b->build<uint32_t>(); in GenerateVertexAttributeDescriptor() 192 desc.shader_location = b->build<uint32_t>(); in GenerateVertexAttributeDescriptor() 201 desc.array_stride = b->build<uint32_t>(); in GenerateVertexBufferLayoutDescriptor()
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
H A D | rebuild.js | 57 process.emit('time', 'build') 64 // build regular deps 65 await this.#build(depNodes, {}) 67 // build link deps 70 await this.#build(linkNodes, { type: 'links' }) 73 process.emit('timeEnd', 'build') 149 async #build (nodes, { type = 'deps' }) { 150 process.emit('time', `build:${type}`) 171 process.emit('timeEnd', `build:${type}`) 175 process.emit('time', 'build [all...] |
/third_party/unity/test/ |
H A D | Makefile | 25 SRC1 = ../src/unity.c tests/test_unity_arrays.c build/test_unity_arraysRunner.c 26 SRC2 = ../src/unity.c tests/test_unity_core.c build/test_unity_coreRunner.c 27 SRC3 = ../src/unity.c tests/test_unity_doubles.c build/test_unity_doublesRunner.c 28 SRC4 = ../src/unity.c tests/test_unity_floats.c build/test_unity_floatsRunner.c 29 SRC5 = ../src/unity.c tests/test_unity_integers.c build/test_unity_integersRunner.c 30 SRC6 = ../src/unity.c tests/test_unity_integers_64.c build/test_unity_integers_64Runner.c 31 SRC7 = ../src/unity.c tests/test_unity_memory.c build/test_unity_memoryRunner.c 32 SRC8 = ../src/unity.c tests/test_unity_strings.c build/test_unity_stringsRunner.c 35 BUILD_DIR = build 36 TARGET = build/testunit [all...] |
/third_party/curl/projects/ |
H A D | build-wolfssl.bat | 197 set OUTDIR=build\Win64\%VC_DESC%
205 call :build Debug x64
208 call :build "DLL Debug" x64
216 call :build Release x64
219 call :build "DLL Release" x64
226 set OUTDIR=build\Win32\%VC_DESC%
234 call :build Debug Win32
237 call :build "DLL Debug" Win32
245 call :build Release Win32
248 call :build "DL 253 :build global() label [all...] |