Home
last modified time | relevance | path

Searched refs:extraArgs (Results 1 – 12 of 12) sorted by relevance

/external/angle/src/tests/test_utils/runner/
DTestSuite_unittest.cpp44 bool runTestSuite(const std::vector<std::string> &extraArgs, in runTestSuite() argument
70 for (const std::string &arg : extraArgs) in runTestSuite()
110 std::vector<std::string> extraArgs = {"--gtest_filter=MockTestSuiteTest.DISABLED_*"}; in TEST_F() local
113 ASSERT_TRUE(runTestSuite(extraArgs, &actual, true)); in TEST_F()
128 std::vector<std::string> extraArgs = {"--gtest_filter=MockFlakyTestSuiteTest.DISABLED_Flaky", in TEST_F() local
132 ASSERT_TRUE(runTestSuite(extraArgs, &actual, true)); in TEST_F()
144 std::vector<std::string> extraArgs = { in TEST_F() local
151 ASSERT_TRUE(runTestSuite(extraArgs, &actual, false)); in TEST_F()
/external/toolchain-utils/compiler_wrapper/
Ddisable_werror_flag.go31 extraArgs := []string{"-Wno-error"}
35 extraArgs = append(extraArgs, strings.Replace(flag, "-Werror", "-Wno-error", 1))
41 return append(newArgs, extraArgs...)
Dcompile_with_fallback_test.go184 extraArgs := []string{"-fno-color-diagnostics", "-a", "-b"}
191 if err := verifyArgOrder(cmd, extraArgs...); err != nil {
195 for _, arg := range extraArgs {
203 for _, arg := range extraArgs {
Dcompile_with_fallback.go38 extraArgs, _ := env.getenv("ANDROID_LLVM_FALLBACK_DISABLED_WARNINGS")
41 strings.Split(extraArgs, " ")...,
/external/deqp/scripts/android/
Dinstall_apk.py119 def uninstall (adbPath, packageName, extraArgs = [], printPrefix=""): argument
121 execWithPrintPrefix([adbPath] + extraArgs + [
127 def install (adbPath, apkPath, extraArgs = [], printPrefix=""): argument
129 execWithPrintPrefix([adbPath] + extraArgs + [
/external/dagger2/java/dagger/internal/codegen/validation/
DComponentCreatorValidator.java380 Object... extraArgs) { in error() argument
382 report.addError(String.format(enclosedError, extraArgs), method); in error()
384 report.addError(String.format(inheritedError, ObjectArrays.concat(extraArgs, method))); in error()
/external/icu/icu4c/source/test/perf/perldriver/
DPerfFramework.pm24 my $extraArgs; # stuff that always gets passed to the test program
/external/icu/icu4j/perf-tests/perldriver/
DPerfFramework4j.pm22 my $extraArgs; # stuff that always gets passed to the test program
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/
DGlslangToSpv.cpp5624 int extraArgs = 0; in createImageTextureFunctionCall() local
5630 ++extraArgs; in createImageTextureFunctionCall()
5633 ++extraArgs; in createImageTextureFunctionCall()
5648 params.lod = arguments[2 + extraArgs]; in createImageTextureFunctionCall()
5649 ++extraArgs; in createImageTextureFunctionCall()
5659 params.sample = arguments[2 + extraArgs]; // For MS, "sample" should be specified in createImageTextureFunctionCall()
5660 ++extraArgs; in createImageTextureFunctionCall()
5665 params.gradX = arguments[2 + extraArgs]; in createImageTextureFunctionCall()
5666 params.gradY = arguments[3 + extraArgs]; in createImageTextureFunctionCall()
5667 extraArgs += 2; in createImageTextureFunctionCall()
[all …]
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp5288 int extraArgs = 0; in createImageTextureFunctionCall() local
5294 ++extraArgs; in createImageTextureFunctionCall()
5297 ++extraArgs; in createImageTextureFunctionCall()
5312 params.lod = arguments[2 + extraArgs]; in createImageTextureFunctionCall()
5313 ++extraArgs; in createImageTextureFunctionCall()
5323 params.sample = arguments[2 + extraArgs]; // For MS, "sample" should be specified in createImageTextureFunctionCall()
5324 ++extraArgs; in createImageTextureFunctionCall()
5329 params.gradX = arguments[2 + extraArgs]; in createImageTextureFunctionCall()
5330 params.gradY = arguments[3 + extraArgs]; in createImageTextureFunctionCall()
5331 extraArgs += 2; in createImageTextureFunctionCall()
[all …]
/external/llvm-project/clang/include/clang/Basic/
Darm_mve.td408 multiclass VectorVectorArithmetic<string operation, dag extraArgs = (?),
413 extraArgs, (? $pred, $inactive)), wantXVariant>;
417 dag extraArgs = (?),
422 extraArgs, (? $pred, $inactive)), basename, wantXVariant, "_n",
453 multiclass DblVectorVectorArithmetic<string operation, dag extraArgs = (?),
458 extraArgs, (? $pred, $inactive)), wantXVariant>;
462 dag extraArgs = (?),
467 extraArgs, (? $pred, $inactive)), basename, wantXVariant, "_n",
/external/avb/test/
Dat_auth_unlock_unittest.py279 def handler(args, *extraArgs, **kwargs): argument