/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | amber.cc | 89 amber::Result Amber::Parse(const std::string& input, amber::Recipe* recipe) { in Parse() argument 90 if (!recipe) in Parse() 103 recipe->SetImpl(parser->GetScript().release()); in Parse() 109 // Create an engine initialize it, and check the recipe's requirements. 113 Result CreateEngineAndCheckRequirements(const Recipe* recipe, in CreateEngineAndCheckRequirements() argument 118 if (!recipe) in CreateEngineAndCheckRequirements() 119 return Result("Attempting to check an invalid recipe"); in CreateEngineAndCheckRequirements() 121 Script* script = static_cast<Script*>(recipe->GetImpl()); in CreateEngineAndCheckRequirements() 148 amber::Result Amber::AreAllRequirementsSupported(const amber::Recipe* recipe, in AreAllRequirementsSupported() argument 153 return CreateEngineAndCheckRequirements(recipe, opt in AreAllRequirementsSupported() 157 Execute(const amber::Recipe* recipe, Options* opts) Execute() argument 162 ExecuteWithShaderData(const amber::Recipe* recipe, Options* opts, const ShaderMap& shader_data) ExecuteWithShaderData() argument [all...] |
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 812 Special case build recipe for universal build of openssl. 942 def buildRecipe(recipe, basedir, archList): 944 Build software using a recipe. This function does the 950 name = recipe['name'] 952 url = recipe['url'] 953 configure = recipe.get('configure', './configure') 954 buildrecipe = recipe.get('buildrecipe', None) 955 install = recipe.get('install', 'make && make install DESTDIR=%s'%( 964 verifyThirdPartyFile(url, recipe['checksum'], sourceArchive) 973 for patch in recipe [all...] |
/third_party/vk-gl-cts/external/amber/src/include/amber/ |
H A D | amber.h | 24 #include "amber/recipe.h" 141 /// Parse the given |data| into the |recipe|. 142 amber::Result Parse(const std::string& data, amber::Recipe* recipe); 145 /// |recipe|. Modifies the |recipe| by applying some of the |opts| to the 146 /// recipe's internal state. 147 amber::Result AreAllRequirementsSupported(const amber::Recipe* recipe, 150 /// Executes the given |recipe| with the provided |opts|. Returns a 152 /// |recipe| by applying some of the |opts| to the recipe' [all...] |
/third_party/vk-gl-cts/external/amber/src/android_sample/jni/ |
H A D | main.cc | 19 #include "amber/recipe.h" 47 amber::Recipe recipe; in amber_sample_main() local 48 amber::Result r = am.Parse(info.script_content, &recipe); in amber_sample_main() 56 r = am.ExecuteWithShaderData(&recipe, amber_options, info.shader_map); in amber_sample_main()
|
/third_party/vk-gl-cts/external/amber/src/samples/ |
H A D | amber.cc | 31 #include "amber/recipe.h" 489 std::unique_ptr<amber::Recipe> recipe; member 505 std::unique_ptr<amber::Recipe> recipe = amber::MakeUnique<amber::Recipe>(); local 507 result = am.Parse(data, recipe.get()); 515 recipe->SetFenceTimeout(static_cast<uint32_t>(options.fence_timeout)); 519 recipe_data.back().recipe = std::move(recipe); 544 const auto features = recipe_data_elem.recipe->GetRequiredFeatures(); 548 recipe_data_elem.recipe->GetRequiredDeviceExtensions(); 553 recipe_data_elem.recipe 610 const auto* recipe = recipe_data_elem.recipe.get(); global() local [all...] |
/third_party/skia/infra/bots/gen_tasks_logic/ |
H A D | gen_tasks_logic.go | 39 CAS_RUN_RECIPE = "run-recipe" 576 // kitchenTaskNoBundle sets up the task to run a recipe via Kitchen, without the 577 // recipe bundle. 578 func (b *taskBuilder) kitchenTaskNoBundle(recipe string, outputDir string) { 592 b.cmd(python, "-u", "skia/infra/bots/run_recipe.py", "${ISOLATED_OUTDIR}", recipe, b.getRecipeProps(), b.cfg.Project) 611 // kitchenTask sets up the task to run a recipe via Kitchen. 612 func (b *taskBuilder) kitchenTask(recipe string, outputDir string) { 613 b.kitchenTaskNoBundle(recipe, outputDir) 1182 recipe := "compile" 1185 recipe [all...] |
/third_party/libphonenumber/migrator/src/main/java/com/google/phonenumbers/migrator/ |
H A D | RecipesTableSchema.java | 46 * <li>{@link #IS_FINAL_MIGRATION}: A boolean indicating whether the given recipe row would result 49 * recipe. 50 * <li>{@link #COUNTRY_CODE}: The BCP-47 country code in which a given recipe corresponds to. 51 * <li>{@link #DESCRIPTION}: TThe explanation of a migration recipe in words. 69 /** The BCP-47 country code the given recipe belongs to. */ 73 /** Indicates whether a given recipe will result in a valid, dialable range */ 76 /** The explanation of a migration recipe in words. */ 89 * Instantiates a {@link RangeKey} from the prefix and length columns of a given recipe 159 /** Converts recipe into format more human-friendly than the default ImmutableMap toString(). */ 160 public static String formatRecipe(ImmutableMap<Column<?>, Object> recipe) { in formatRecipe() argument [all...] |
H A D | MigrationJob.java | 96 .ifPresent(recipe -> migratedResults.add(migrate(entry.getSanitizedNumber(), recipe, entry))); in getMigrationReportForCountry() 103 * MigrationJob's with no rangesTable are based on a custom recipe file. This means there is no in getMigrationReportForCountry() 134 * MigrationJob's with no rangesTable are based on a custom recipe file. This means there is no in getMigrationReportForRecipe() 145 * Takes a given number and migrates it using the given matching recipe row. If the given recipe 146 * is not a final migration, the method is recursively called with the recipe that matches the new 147 * migrated number until a recipe that produces a final migration (a recipe that results in the 151 * @throws IllegalArgumentException if the 'Old Format' value in the given recipe ro [all...] |
H A D | CommandLineMain.java | 69 + " for standard recipe --file migrations should contain the migrated version of a given" 167 for (ImmutableMap<Column<?>, Object> recipe : recipeToNumbers.keySet()) { in printUsedRecipes() 168 System.out.println("* " + RecipesTableSchema.formatRecipe(recipe)); in printUsedRecipes() 169 recipeToNumbers.get(recipe).forEach(result -> System.out.println("\t" + result)); in printUsedRecipes()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/amber/ |
H A D | vktAmberTestCase.hpp | 52 amber::Recipe* recipe, in AmberTestInstance() 54 : TestInstance(context), m_recipe(recipe), m_customDevice(customDevice) in AmberTestInstance() 51 AmberTestInstance(Context& context, amber::Recipe* recipe, vk::VkDevice customDevice) AmberTestInstance() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/amber/ |
H A D | vktAmberTestCase.hpp | 52 amber::Recipe* recipe, in AmberTestInstance() 54 : TestInstance(context), m_recipe(recipe), m_customDevice(customDevice) in AmberTestInstance() 51 AmberTestInstance(Context& context, amber::Recipe* recipe, vk::VkDevice customDevice) AmberTestInstance() argument
|
/third_party/vk-gl-cts/scripts/ |
H A D | check_swiftshader_runtime.py | 108 "--recipe", 143 # Check that we have everything needed to run the script when using recipe run-deqp. 144 if ARGS.recipe == "run-deqp": 470 if ARGS.recipe == "run-deqp": 477 if ARGS.recipe == "check-comparison":
|
H A D | check_build_sanity.py | 260 "--recipe", 261 dest="recipe", 264 help="Build / test recipe") 277 help="Skip post recipe checks") 292 name, steps = getAllRecipe(RECIPES) if args.recipe == "all" \ 293 else getRecipe(RECIPES, args.recipe)
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Test/ |
H A D | Simple.pm | 47 A complete recipe looks like this:
|
/third_party/openssl/util/perl/OpenSSL/Test/ |
H A D | Simple.pm | 47 A complete recipe looks like this:
|
/third_party/vk-gl-cts/external/amber/src/ |
H A D | Android.mk | 38 src/recipe.cc \
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 59 With each test recipe, a parallel data directory with (almost) the same name 60 as the recipe is possible in the source directory tree. For example, for a 61 recipe C<$SRCTOP/test/recipes/99-foo.t>, there could be a directory 90 # A bool saying if we shall stop all testing if the current recipe has failing 122 If it's not used in a OpenSSL test recipe, the rest of the recipe will 166 C<indir> is used to run a part of the recipe in a different directory than 168 The part of the recipe that's run there is given by the codeblock BLOCK. 786 string is to be used directly in a recipe. 922 If defined, it puts testing in a different mode, where a recipe wit [all...] |
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 59 With each test recipe, a parallel data directory with (almost) the same name 60 as the recipe is possible in the source directory tree. For example, for a 61 recipe C<$SRCTOP/test/recipes/99-foo.t>, there could be a directory 90 # A bool saying if we shall stop all testing if the current recipe has failing 122 If it's not used in a OpenSSL test recipe, the rest of the recipe will 166 C<indir> is used to run a part of the recipe in a different directory than 168 The part of the recipe that's run there is given by the codeblock BLOCK. 786 string is to be used directly in a recipe. 922 If defined, it puts testing in a different mode, where a recipe wit [all...] |
/third_party/node/deps/v8/tools/release/ |
H A D | test_scripts.py | 136 def Expect(self, recipe): 137 self._recipe = recipe
|