Home
last modified time | relevance | path

Searched refs:flavor (Results 1 – 25 of 224) sorted by relevance

123456789

/third_party/skia/infra/bots/recipes/
Dtest.py40 api.flavor.install(
50 host_dm_dir = str(api.flavor.host_dirs.dm_dir)
51 api.flavor.create_clean_host_dir(api.path['start_dir'].join('test'))
52 device_dm_dir = str(api.flavor.device_dirs.dm_dir)
54 api.flavor.create_clean_device_dir(device_dm_dir)
60 hashes_file = api.flavor.device_path_join(
61 api.flavor.device_dirs.tmp_dir, hash_filename)
102 api.flavor.copy_file_to_device(host_hashes_file, hashes_file)
122 args.extend(['--resourcePath', api.flavor.device_dirs.resource_dir])
124 args.extend(['--skps', api.flavor.device_dirs.skp_dir])
[all …]
Dperf.py40 api.flavor.install(
49 api.flavor.create_clean_device_dir(
50 api.flavor.device_dirs.perf_data_dir)
72 args.extend(['-i', api.flavor.device_dirs.resource_dir])
74 args.extend(['--skps', api.flavor.device_dirs.skp_dir]),
76 args.extend(['--images', api.flavor.device_path_join(
77 api.flavor.device_dirs.images_dir, 'nanobench')])
79 assert api.flavor.device_dirs.texttraces_dir
80 args.extend(['--texttraces', api.flavor.device_dirs.texttraces_dir])
82 args.extend(['--svgs', api.flavor.device_dirs.svg_dir])
[all …]
Dperf_skottietrace.py39 api.flavor.create_clean_device_dir(
40 api.flavor.device_dirs.dm_dir)
43 'list lottie files', api.flavor.host_dirs.lotties_dir,
53 trace_output_path = api.flavor.device_path_join(
54 api.flavor.device_dirs.dm_dir, '%s.json' % (idx + 1))
58 '--resourcePath', api.flavor.device_dirs.resource_dir,
59 '--lotties', api.flavor.device_dirs.lotties_dir,
72 api.run(api.flavor.step, 'dm', cmd=dm_args, abort_on_failure=False)
75 trace_file_content = api.flavor.read_file_on_device(trace_output_path)
82 api.flavor.remove_file_on_device(trace_output_path)
[all …]
Dskpbench.py54 'makedirs perf_dir', api.flavor.host_dirs.perf_data_dir)
58 _adb(api, 'push skpbench', 'push', app, api.flavor.device_dirs.bin_dir)
81 skpbench_invocation = api.path.join(api.flavor.device_dirs.bin_dir, 'skpbench')
107 skpbench_args += [api.flavor.device_dirs.mskp_dir]
112 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_*svg.skp'),
113 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_motionmark*.skp'),
114 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_chalkboard.skp')]
116 skpbench_args += [api.flavor.device_dirs.skp_dir]
146 api.flavor.host_dirs.perf_data_dir,
170 api.flavor.setup(None)
[all …]
/third_party/flutter/skia/infra/bots/recipe_modules/flavor/examples/
Dfull.py18 api.flavor.copy_directory_contents_to_device('src', 'dst')
22 api.flavor.copy_directory_contents_to_host('src', 'dst')
26 api.flavor.copy_file_to_device('src', 'dst')
33 api.flavor.setup()
40 api.flavor.copy_file_to_device('file.txt', 'file.txt')
41 api.flavor.read_file_on_device('file.txt')
42 api.flavor.remove_file_on_device('file.txt')
43 api.flavor.create_clean_host_dir('results_dir')
44 api.flavor.create_clean_device_dir('device_results_dir')
46 api.flavor.install(lotties=True)
[all …]
/third_party/skia/infra/bots/recipe_modules/flavor/examples/
Dfull.py19 api.flavor.copy_directory_contents_to_device('src', 'dst')
23 api.flavor.copy_directory_contents_to_host('src', 'dst')
27 api.flavor.copy_file_to_device('src', 'dst')
43 api.flavor.setup(app)
49 api.flavor.copy_file_to_device('file.txt', 'file.txt')
50 api.flavor.read_file_on_device('file.txt')
51 api.flavor.remove_file_on_device('file.txt')
52 api.flavor.create_clean_host_dir('results_dir')
53 api.flavor.create_clean_device_dir('device_results_dir')
56 api.flavor.install(lotties=True)
[all …]
/third_party/selinux/libsepol/cil/src/
Dcil_list.c47 void cil_list_init(struct cil_list **list, enum cil_flavor flavor) in cil_list_init() argument
52 new_list->flavor = flavor; in cil_list_init()
68 if (item->flavor == CIL_LIST) { in cil_list_destroy()
84 new_item->flavor = CIL_NONE; in cil_list_item_init()
93 cil_destroy_data(&(*item)->data, (*item)->flavor); in cil_list_item_destroy()
99 void cil_list_append(struct cil_list *list, enum cil_flavor flavor, void *data) in cil_list_append() argument
108 item->flavor = flavor; in cil_list_append()
121 void cil_list_prepend(struct cil_list *list, enum cil_flavor flavor, void *data) in cil_list_prepend() argument
130 item->flavor = flavor; in cil_list_prepend()
143 …_list_insert(struct cil_list *list, struct cil_list_item *curr, enum cil_flavor flavor, void *data) in cil_list_insert() argument
[all …]
Dcil_list.h38 enum cil_flavor flavor; member
43 enum cil_flavor flavor; member
51 void cil_list_init(struct cil_list **list, enum cil_flavor flavor);
55 void cil_list_append(struct cil_list *list, enum cil_flavor flavor, void *data);
56 void cil_list_prepend(struct cil_list *list, enum cil_flavor flavor, void *data);
57 void cil_list_remove(struct cil_list *list, enum cil_flavor flavor, void *data, unsigned destroy_da…
58 …list_insert(struct cil_list *list, struct cil_list_item *curr, enum cil_flavor flavor, void *data);
Dcil_resolve_ast.c82 if (parent->flavor == CIL_CALL) { in __cil_insert_name()
85 } else if (parent->flavor == CIL_MACRO) { in __cil_insert_name()
92 if (param->flavor == CIL_NAME && param->str == key) { in __cil_insert_name()
118 cil_list_init(perm_datums, perm_strs->flavor); in __cil_resolve_perms()
121 if (curr->flavor == CIL_LIST) { in __cil_resolve_perms()
129 } else if (curr->flavor == CIL_STRING) { in __cil_resolve_perms()
147 cil_list_append(*perm_datums, curr->flavor, curr->data); in __cil_resolve_perms()
224 if (curr->flavor == CIL_CLASSPERMS) { in cil_resolve_classperms_list()
268 cil_list_append(cp->classperms, curr->flavor, curr->data); in cil_resolve_classpermissionset()
408 if (result_node->flavor != CIL_TYPE) { in cil_resolve_type_rule()
[all …]
Dcil_find.c40 enum cil_flavor flavor; member
123 if (n1->flavor != CIL_TYPEATTRIBUTE) { in cil_self_match_any()
170 if (curr->flavor == CIL_CLASSPERMS) { in __cil_classperms_list_match_any()
199 if (curr->flavor == CIL_CLASSPERMS) { in cil_classperms_list_match_any()
227 if (curr->flavor == CIL_CLASSPERMS) { in __add_classes_from_classperms_list()
356 if (node->flavor == CIL_BLOCK) { in __cil_find_matching_avrule_in_ast()
362 } else if (node->flavor == CIL_MACRO) { in __cil_find_matching_avrule_in_ast()
365 } else if (node->flavor == CIL_AVRULE || node->flavor == CIL_AVRULEX) { in __cil_find_matching_avrule_in_ast()
366 if (node->flavor == args->flavor) { in __cil_find_matching_avrule_in_ast()
375 int cil_find_matching_avrule_in_ast(struct cil_tree_node *current, enum cil_flavor flavor, void *ta… in cil_find_matching_avrule_in_ast() argument
[all …]
Dcil_post.c140 static int cil_verify_is_list(struct cil_list *list, enum cil_flavor flavor) in cil_verify_is_list() argument
145 switch (curr->flavor) { in cil_verify_is_list()
153 if (flavor == CIL_CAT) { in cil_verify_is_list()
156 if (n->flavor == CIL_CATSET) { in cil_verify_is_list()
569 switch(node->flavor) { in __cil_post_db_count_helper()
677 switch(node->flavor) { in __cil_post_db_array_helper()
896 if (node->flavor == CIL_TYPEATTRIBUTE) { in __cil_type_to_bitmap()
903 } else if (node->flavor == CIL_TYPEALIAS) { in __cil_type_to_bitmap()
950 if (node->flavor == CIL_USERATTRIBUTE) { in __cil_user_to_bitmap()
996 if (node->flavor == CIL_ROLEATTRIBUTE) { in __cil_role_to_bitmap()
[all …]
/third_party/typescript/tests/baselines/reference/
DobjectCreationOfElementAccessExpression.js19 constructor(name: string, public flavor: string) {
25 constructor(public flavor: string) {
26 super("Ice Cream", flavor);
30 constructor(public flavor: string, public isGlutenFree: boolean) {
31 super("Cookie", flavor);
93 function MonsterFood(name, flavor) { argument
95 _this.flavor = flavor;
102 function IceCream(flavor) { argument
103 var _this = _super.call(this, "Ice Cream", flavor) || this;
104 _this.flavor = flavor;
[all …]
DobjectCreationOfElementAccessExpression.symbols47 constructor(name: string, public flavor: string) {
49 >flavor : Symbol(MonsterFood.flavor, Decl(objectCreationOfElementAccessExpression.ts, 17, 29))
63 constructor(public flavor: string) {
64 >flavor : Symbol(IceCream.flavor, Decl(objectCreationOfElementAccessExpression.ts, 23, 16))
66 super("Ice Cream", flavor);
68 >flavor : Symbol(flavor, Decl(objectCreationOfElementAccessExpression.ts, 23, 16))
75 constructor(public flavor: string, public isGlutenFree: boolean) {
76 >flavor : Symbol(Cookie.flavor, Decl(objectCreationOfElementAccessExpression.ts, 28, 16))
79 super("Cookie", flavor);
81 >flavor : Symbol(flavor, Decl(objectCreationOfElementAccessExpression.ts, 28, 16))
DobjectCreationOfElementAccessExpression.types56 constructor(name: string, public flavor: string) {
58 >flavor : string
73 constructor(public flavor: string) {
74 >flavor : string
76 super("Ice Cream", flavor);
77 >super("Ice Cream", flavor) : void
80 >flavor : string
87 constructor(public flavor: string, public isGlutenFree: boolean) {
88 >flavor : string
91 super("Cookie", flavor);
[all …]
/third_party/flutter/skia/infra/bots/recipes/
Dperf.py259 api.flavor.create_clean_device_dir(
260 api.flavor.device_dirs.perf_data_dir)
279 '-i', api.flavor.device_dirs.resource_dir,
280 '--skps', api.flavor.device_dirs.skp_dir,
281 '--images', api.flavor.device_path_join(
282 api.flavor.device_dirs.images_dir, 'nanobench'),
287 args.extend(['--svgs', api.flavor.device_dirs.svg_dir])
299 '-i', api.flavor.device_dirs.resource_dir,
300 '--images', api.flavor.device_path_join(
301 api.flavor.device_dirs.resource_dir, 'images', 'color_wheel.jpg'),
[all …]
Dperf_skottietrace.py37 api.flavor.create_clean_device_dir(
38 api.flavor.device_dirs.dm_dir)
41 'list lottie files', api.flavor.host_dirs.lotties_dir,
52 trace_output_path = api.flavor.device_path_join(
53 api.flavor.device_dirs.dm_dir, '%s.json' % (idx + 1))
57 '--resourcePath', api.flavor.device_dirs.resource_dir,
58 '--lotties', api.flavor.device_dirs.lotties_dir,
71 api.run(api.flavor.step, 'dm', cmd=dm_args, abort_on_failure=False,
78 trace_file_content = api.flavor.read_file_on_device(trace_output_path)
85 api.flavor.remove_file_on_device(trace_output_path)
[all …]
Dskpbench.py44 'makedirs perf_dir', api.flavor.host_dirs.perf_data_dir)
48 _adb(api, 'push skpbench', 'push', app, api.flavor.device_dirs.bin_dir)
59 api.path.join(api.flavor.device_dirs.bin_dir, 'skpbench'),
82 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_*svg.skp'),
83 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_chalkboard.skp')]
85 skpbench_args += [api.flavor.device_dirs.mskp_dir]
87 skpbench_args += [api.flavor.device_dirs.skp_dir]
111 api.flavor.host_dirs.perf_data_dir,
132 api.flavor.setup()
136 api.flavor.install(skps=not mksp_mode, mskps=mksp_mode)
[all …]
Dtest.py847 host_dm_dir = str(api.flavor.host_dirs.dm_dir)
848 api.flavor.create_clean_host_dir(api.path['start_dir'].join('test'))
849 device_dm_dir = str(api.flavor.device_dirs.dm_dir)
851 api.flavor.create_clean_device_dir(device_dm_dir)
857 hashes_file = api.flavor.device_path_join(
858 api.flavor.device_dirs.tmp_dir, hash_filename)
899 api.flavor.copy_file_to_device(host_hashes_file, hashes_file)
922 '--resourcePath', api.flavor.device_dirs.resource_dir,
923 '--skps', api.flavor.device_dirs.skp_dir,
924 '--images', api.flavor.device_path_join(
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dninja.py77 def QuoteShellArgument(arg, flavor): argument
84 if flavor == 'win':
89 def Define(d, flavor): argument
92 if flavor == 'win':
96 return QuoteShellArgument(ninja_syntax.escape('-D' + d), flavor)
160 def UsesToc(self, flavor): argument
166 if flavor == 'win' or self.bundle:
170 def PreActionInput(self, flavor): argument
173 if self.UsesToc(flavor):
214 output_file, toplevel_build, output_file_name, flavor, argument
[all …]
/third_party/node/tools/gyp/pylib/gyp/generator/
Dninja.py77 def QuoteShellArgument(arg, flavor): argument
84 if flavor == "win":
89 def Define(d, flavor): argument
92 if flavor == "win":
96 return QuoteShellArgument(ninja_syntax.escape("-D" + d), flavor)
164 def UsesToc(self, flavor): argument
170 if flavor == "win" or self.bundle:
174 def PreActionInput(self, flavor): argument
177 if self.UsesToc(flavor):
227 flavor, argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/
Dgenerate_def_files.py58 flavor = _DebugOrRelease(is_debug)
82 logging.info('[%s - %s] Creating tmp out dir in %s', cpu, flavor, out_dir)
85 logging.info('[%s - %s] gn gen completed', cpu, flavor)
89 logging.info('[%s - %s] autoninja completed', cpu, flavor)
97 logging.info('[%s - %s] Found %d object files.', cpu, flavor, len(obj_files))
140 logging.info('[%s - %s] Found %d absl symbols.', cpu, flavor, len(absl_symbols))
144 'symbols_{}_{}_{}.def'.format(cpu, flavor, suffix))
147 'symbols_{}_{}.def'.format(cpu, flavor))
157 logging.info('[%s - %s] .def file successfully generated.', cpu, flavor)
/third_party/typescript/tests/cases/compiler/
DobjectCreationOfElementAccessExpression.ts18 constructor(name: string, public flavor: string) { property in MonsterFood
24 constructor(public flavor: string) { property in IceCream
25 super("Ice Cream", flavor);
29 constructor(public flavor: string, public isGlutenFree: boolean) { property in Cookie
30 super("Cookie", flavor);
/third_party/flutter/flutter/dev/integration_tests/flavors/lib/
Dmain.dart21 const MethodChannel('flavor').invokeMethod<String>('getFlavor').then((String flavor) {
23 _flavor = flavor;
33 ? const Text('Awaiting flavor...')
34 : Text(_flavor, key: const ValueKey<String>('flavor')),
/third_party/mesa3d/src/mapi/glapi/gen/
Dgl_marshal_h.py60 flavor = func.marshal_flavor()
61 if flavor in ('skip', 'sync'):
69 flavor = func.marshal_flavor()
70 if flavor in ('custom', 'async'):
75 elif flavor == 'sync':
/third_party/selinux/libsepol/cil/test/unit/
Dtest_cil_list.c69 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item()
97 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_append()
104 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_append()
133 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_append_extra()
139 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_append_extra()
145 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_append_extra()
174 test_new_item->flavor = CIL_CLASS; in test_cil_list_append_item_listnull_neg()
226 test_new_item->flavor = CIL_CLASS; in test_cil_list_prepend_item()
254 test_new_item->flavor = CIL_CLASS; in test_cil_list_prepend_item_prepend()
283 test_new_item->flavor = CIL_CLASS; in test_cil_list_prepend_item_prepend_neg()
[all …]

123456789