/third_party/skia/third_party/externals/freetype/builds/meson/ |
H A D | parse_modules_cfg.py | 36 lists = { 54 assert items[0] in lists, ( 58 lists[items[0]].append(items[2]) 60 return lists 63 def generate_ftmodule(lists): 65 for driver in lists["FONT_MODULES"]: 81 for module in lists["HINTING_MODULES"]: 86 for module in lists["RASTER_MODULES"]: 95 for module in lists["AUX_MODULES"]: 105 def generate_main_modules(lists) [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | glthread_list.c | 46 uint32_t *lists = alloca(max_list_count * sizeof(uint32_t)); in _mesa_unmarshal_CallList() local 48 lists[0] = cmd->list; in _mesa_unmarshal_CallList() 49 lists[1] = next_callist->list; in _mesa_unmarshal_CallList() 58 lists[count++] = next_callist->list; in _mesa_unmarshal_CallList() 65 CALL_CallLists(ctx->CurrentServerDispatch, (count, GL_UNSIGNED_INT, lists)); in _mesa_unmarshal_CallList()
|
H A D | glthread_marshal.h | 667 * all display lists are up to date and the driver thread is not in _mesa_glthread_CallList() 690 const GLvoid *lists) in _mesa_glthread_CallLists() 695 if (n <= 0 || !lists) in _mesa_glthread_CallLists() 699 * all display lists are up to date and the driver thread is not in _mesa_glthread_CallLists() 724 bptr = (GLbyte *) lists; in _mesa_glthread_CallLists() 729 ubptr = (GLubyte *) lists; in _mesa_glthread_CallLists() 734 sptr = (GLshort *) lists; in _mesa_glthread_CallLists() 739 usptr = (GLushort *) lists; in _mesa_glthread_CallLists() 744 iptr = (GLint *) lists; in _mesa_glthread_CallLists() 749 uiptr = (GLuint *) lists; in _mesa_glthread_CallLists() 689 _mesa_glthread_CallLists(struct gl_context *ctx, GLsizei n, GLenum type, const GLvoid *lists) _mesa_glthread_CallLists() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | RBNFParseTest.java | 122 private void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument 123 for (int i = 0; i < lists.length; ++i) { in parseList() 124 String[] list = lists[i]; in parseList() 149 String[][] lists = { in TestLenientParse() 162 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse() 168 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | RBNFParseTest.java | 119 private void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument 120 for (int i = 0; i < lists.length; ++i) { in parseList() 121 String[] list = lists[i]; in parseList() 146 String[][] lists = { in TestLenientParse() 159 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse() 165 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_policy.c | 77 struct cil_list **lists; in __cil_gather_statements_helper() local 80 lists = (struct cil_list **)extra_args; in __cil_gather_statements_helper() 176 cil_list_append(lists[kind], node->flavor, node->data); in __cil_gather_statements_helper() 182 static void cil_gather_statements(struct cil_tree_node *start, struct cil_list *lists[]) in cil_gather_statements() argument 184 cil_tree_walk(start, __cil_gather_statements_helper, NULL, NULL, lists); in cil_gather_statements() 1918 struct cil_list *lists[CIL_LIST_NUM_LISTS]; in cil_gen_policy() local 1921 cil_list_init(&lists[i], CIL_LIST); in cil_gen_policy() 1924 cil_gather_statements(head, lists); in cil_gen_policy() 1930 cil_commons_to_policy(out, lists[CIL_LIST_COMMON]); in cil_gen_policy() 1933 cil_defaults_to_policy(out, lists[CIL_LIST_DEFAULT_USE in cil_gen_policy() [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | dominate.c | 23 struct basic_block_list *lists[0]; member 29 bank = calloc(1, sizeof(*bank) + levels * sizeof(bank->lists[0])); in bank_init() 37 free_ptr_list(&bank->lists[levels]); in bank_free() 45 add_bb(&bank->lists[level], bb); in bank_put() 57 struct basic_block *bb = pop_bb(&bank->lists[level]); in bank_get()
|
/third_party/curl/tests/ |
H A D | directories.pm | 183 my %lists = ( 259 my $list = $lists{$list_type}; 282 my $list = $lists{$list_type}; 305 my $list = $lists{$listname};
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | gen-swizzles.py | 96 self.lists = list(args) 98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1) 99 print(self.lists) 103 return [tuple(map(lambda x: x[0], self.lists))]
|
/third_party/vk-gl-cts/modules/gles2/scripts/ |
H A D | gen-swizzles.py | 96 self.lists = list(args) 98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1) 99 print(self.lists) 103 return [tuple(map(lambda x: x[0], self.lists))]
|
/third_party/python/Lib/idlelib/ |
H A D | multicall.py | 156 # The binded functions sit in a dictionary of lists of lists, which maps 161 def __create_handler(self, lists, mc_type, mc_state): 162 def handler(event, lists = lists, 171 for l in lists: 197 # we don't want to change the lists of functions while a handler is 207 lists = [self.bindedfuncs[None][i] for i in _state_subsets[s]] 208 handler = self.__create_handler(lists, type, _state_codes[s]) 217 lists [all...] |
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglSimpleConfigCase.cpp | 156 void getDefaultFilterLists (vector<NamedFilterList>& lists, const FilterList& baseFilters) in getDefaultFilterLists() argument 206 lists.push_back(filters); in getDefaultFilterLists() 226 lists.push_back(filters); in getDefaultFilterLists()
|
H A D | teglSimpleConfigCase.hpp | 77 void getDefaultFilterLists (std::vector<NamedFilterList>& lists, const eglu::FilterList& baseFilters);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/copts/ |
H A D | generate_copts.py | 23 def flatten(*lists): 24 return [item for sublist in lists for item in sublist]
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_packer.c.py | 92 lists = modifier_lists[raw] 113 lists = [pick_from_bucket(opts, bucket) for bucket in SWIZZLE_BUCKETS] 116 lists = [pick_from_bucket(opts, bucket) for bucket in SWIZZLE_BUCKETS] 126 mapped = map_modifier(body, mod, ir_value, lists, opts)
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_XML.py | 624 # exists. The map only lists APIs which contain the function 940 lists = [{}, {}, {}, {}] 948 if key not in lists[func_cat_type]: 949 lists[func_cat_type][key] = {} 951 lists[func_cat_type][key][func.name] = func 956 keys = sorted(lists[func_cat_type].keys()) 959 names = sorted(lists[func_cat_type][key].keys()) 962 functions.append(lists[func_cat_type][key][name])
|
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | mustpass.py | 202 lists = {} 206 if not filter.filename in lists: 207 lists[filter.filename] = readPatternList(os.path.join(getSrcDir(mustpass), filter.filename)) 208 return lists 431 # Getting case lists involves invoking build, so we want to cache the results
|
/third_party/ffmpeg/tests/fate/ |
H A D | mov.mak | 44 # Make sure we handle edit lists correctly in normal cases. 59 # Makes sure that the CTTS is also modified when we fix avindex in mov.c while parsing edit lists. 62 # Makes sure that we handle edit lists ending on a B-frame correctly. 67 # Makes sure that we handle timestamps of packets in case of multiple edit lists with one of them ending on a B-frame correctly. 73 # Makes sure that we handle edit lists and start padding correctly.
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/export_to_sheets/ |
H A D | main.go | 65 lists, err := testlist.Load(".", *testListPath) 76 // Ensure that there is a sheet for each of the test lists. 77 if err := createTestListSheets(srv, lists); err != nil { 96 for _, group := range lists { 295 // createTestListSheets adds a new sheet for each of the test lists, if they
|
/third_party/curl/docs/libcurl/ |
H A D | mksymbolsmanpage.pl | 53 libcurl header files. This lists the first version in which the symbol was
|
/third_party/benchmark/test/ |
H A D | output_test_helper.cc | 35 static TestCaseList lists[TC_NumID]; in GetTestCaseList() local 36 return lists[ID]; in GetTestCaseList()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Print.hpp | 155 // vals is a helper to build composite value lists. 184 std::vector<std::vector<Value *>> lists = { val(v)... }; in vals() local 186 for(const auto &list : lists) in vals() 401 // RR_WATCH_FMT(...) resolves to a string literal that lists all the
|
/third_party/python/Lib/test/ |
H A D | test_sort.py | 274 ## This function tests sorting for three lists (it randomly shuffles each one): 346 lists = [list(range(100)) + [(1<<70)], 350 for L in lists:
|
/third_party/ltp/ |
H A D | ltpmenu | 190 mail ltp-results@lists.sourceforge.net < \
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 36 # pathnames. The generators can provide more keys, the two lists are merged 149 lists of all other files included by the build file. 174 The gyp file is restricted to dictionaries and lists only, and 312 # This recurses into lists so that it can look for dicts. 858 # Find the build file's directory, so commands can be run or file lists 908 # file lists more than once. The cache key contains the command to be 1096 # Leave output alone if it's a list of lists. 1097 # We don't want such lists to be stringified. 1378 # will append "IS_MAC" to both "defines" lists. 1393 # Recurse into child dicts, or process child lists whic [all...] |