Home
last modified time | relevance | path

Searched refs:list (Results 2776 - 2800 of 3593) sorted by relevance

1...<<111112113114115116117118119120>>...144

/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_gs.c775 list_inithead(&llvm_gs->variants.list); in draw_create_geometry_shader()
936 LIST_FOR_EACH_ENTRY_SAFE(li, next, &shader->variants.list, list) { in draw_delete_geometry_shader()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler_nir.c647 emit_cf_list(struct etna_compile *c, struct exec_list *list);
666 emit_cf_list(struct etna_compile *c, struct exec_list *list) in emit_cf_list() argument
668 foreach_list_typed(nir_cf_node, node, node, list) { in emit_cf_list()
/third_party/mksh/
H A Dsyn.c541 struct op *list; in dogroup() local
548 * the conditional command list... in dogroup()
556 list = c_list(sALIAS, true); in dogroup()
558 return (list); in dogroup()
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DGeneratedMessageTest.java10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
193 private void assertIsUnmodifiable(List<?> list) { in assertIsUnmodifiable() argument
194 if (list == Collections.emptyList()) { in assertIsUnmodifiable()
198 list.clear(); in assertIsUnmodifiable()
/third_party/python/Lib/
H A Dpickletools.py63 # may be shared (for example, the list [a, a] refers to the same object a
68 # list, and L[0] is the same list. This is related to the object identity
1029 name="list",
1030 obtype=list,
1031 doc="A Python list object.")
1111 # what the stack looks like before this opcode runs; a list
1114 # what the stack looks like after this opcode runs; a list
1136 assert isinstance(stack_before, list)
1141 assert isinstance(stack_after, list)
[all...]
H A Ddifflib.py5 Use SequenceMatcher to return list of the best "good enough" matches.
151 # for x in b, b2j[x] is a list of the indices (into b)
158 # a list of (i, j, k) triples, where a[i:i+k] == b[j:j+k];
162 # a list of (tag, i1, i2, j1, j2) tuples, where tag is
250 # For each element x in b, set b2j[x] to a list of the indices in
291 for elt in junk: # separate loop avoids separate list of keys
422 """Return list of triples describing matching subsequences.
427 (i, j, n) and (i', j', n') are adjacent triples in the list, and
428 the second is not the last triple in the list, then i+n != i' or
436 >>> list(
[all...]
/third_party/python/Lib/test/
H A Dtest_base64.py690 illegal = list(range(33)) + \
691 list(b'"\',./:[\\]') + \
692 list(range(128, 256))
H A Dtest_gc.py102 # since tuples are immutable we close the loop with a list
143 class B(list):
376 # created (the list).
448 class C(list):
449 # Appending to a list is atomic, which avoids the use of a lock.
606 self.assertEqual(got, [0, 0] + list(range(5)))
704 # input list.
768 # With DEBUG_UNCOLLECTABLE, the garbage list gets printed
1283 br'object type name: list')
H A Dtest_operator.py300 a = list(range(3))
429 self.assertEqual(list(map(getcount, inventory)), [3, 2, 5, 1])
434 data = list(map(str, range(20)))
H A Dtest_zipimport.py158 # item in a list sorted by name, like
333 mpath = list(mod.__path__)[0].split('path1.zip' + os.sep)[1]
409 mpath = list(mod.__path__)[0].split('path1.zip' + os.sep)[1]
801 list(os.fsencode(TESTMOD)))
H A Dtest_tracemalloc.py45 # _tracemalloc._get_traces() returns a list of (domain, size,
139 # Create a list and "destroy it": put it in the PyListObject free list
143 # Create a list which should reuse the previously created empty list
275 large_sum = sum(list(range(100000)))
408 original_traces = list(snapshot.traces._traces)
445 original_traces = list(snapshot.traces._traces)
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_common.hpp194 inline std::string merge(const SmallVector<std::string> &list, const char *between = ", ") in merge() argument
197 for (auto &elem : list) in merge()
200 if (&elem != &list.back()) in merge()
701 // A list of expressions which this expression depends on.
/third_party/skia/src/ports/
H A DSkFontMgr_fontconfig.cpp48 * FcPatterns are {objectName -> [element]} (maps from object names to a list of elements).
634 static bool FindName(const SkTDArray<const char*>& list, const char* str) {
635 int count = list.count();
637 if (!strcmp(list[i], str)) {
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc902 SegmentList* list = new SegmentList; in DeepCopy() local
905 list->push_back(*it); in DeepCopy()
907 return list; in DeepCopy()
/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py10 # notice, this list of conditions and the following disclaimer.
12 # copyright notice, this list of conditions and the following disclaimer
441 raise ValueError('Repeated field default value not empty list: %s' % (
518 # a list if fields are added.
819 value should be included in the list returned by ListFields()."""
1010 unknown_fields = list(self._unknown_fields)
1012 other_unknown_fields = list(other._unknown_fields)
1230 errors: A list which, if provided, will be populated with the field
1247 for field, value in list(self._fields.items()): # dict can change size!
1271 A list o
[all...]
/third_party/python/Objects/
H A Dodictobject.c5 involves using a doubly-linked-list to capture the order. We keep to that
6 strategy, using a lower-level linked-list.
11 For the linked list we use a basic doubly-linked-list. Using a circularly-
12 linked-list does have some benefits, but they don't apply so much here
13 since OrderedDict is focused on the ends of the list (for the most part).
17 macros from BSD's queue.h, and the linux's list.h.
24 linked-list on top of dict is not sufficient here; operations for nodes in
25 the middle of the linked-list implicitly require finding the node first.
26 With a simple linked-list lik
1804 PyObject *list = PySequence_List((PyObject*)&tmp); odictiter_reduce() local
[all...]
/third_party/python/Lib/test/test_email/
H A Dtest_headerregistry.py328 # the mime_registry...and the application is free to extend that list
1254 self.assertEqual([a], list(h.groups[0].addresses))
1255 self.assertEqual([a], list(h.addresses))
1297 examples = list(self.example_params.values())
1298 source = ('dummy list:;, another: (empty);,' +
1300 r'"A \"list\"": ' +
1306 expected = ('dummy list:;, another:;, ' +
1308 r'"A \"list\"": ' +
1317 self.assertEqual(h.groups[0].display_name, 'dummy list')
1319 self.assertEqual(h.groups[6].display_name, 'A "list"')
[all...]
/third_party/python/Mac/BuildScript/
H A Dbuild-installer.py610 for ev in list(os.environ):
1010 args = list(recipe['configure_pre'])
1041 configure_args = configure_args + list(recipe['configure_post'])
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_split_test.cc19 #include <list>
402 TestConversionOperator<std::list<absl::string_view>>(splitter); in TEST()
403 TestConversionOperator<std::list<std::string>>(splitter); in TEST()
/third_party/skia/bench/
H A Dnanobench.cpp168 "If a name does not match any list entry,\n"
169 "it is skipped unless some list entry starts with ~");
609 SkTArray<SkString>* list) { in collect_files()
612 list->push_back(SkString(paths[i])); in collect_files()
617 list->push_back(SkOSPath::Join(paths[i], path.c_str())); in collect_files()
607 collect_files(const CommandLineFlags::StringArray& paths, const char* ext, SkTArray<SkString>* list) collect_files() argument
/third_party/python/Modules/
H A Dsocketmodule.c45 - socket.if_nameindex() -> list of tuples (if_index, if_name)
322 /* IMPORTANT: make sure the list ordered by descending build_number */
3915 /* Make list of (level, type, data) tuples from control messages. */ in sock_recvmsg_guts()
4052 received. The ancdata item is a list of zero or more tuples\n\
4146 written into the buffers. The ancdata item is a list of zero or more\n\
5812 Return the true host name, a list of aliases, and a list of IP addresses,\n\
5909 Return the true host name, a list of aliases, and a list of IP addresses,\n\
5916 known or not useful (like the list o
6814 PyObject *list = PyList_New(0); global() local
[all...]
H A D_testcapimodule.c222 PyObject* list; in test_list_api() local
227 list = PyList_New(NLIST); in test_list_api()
228 if (list == (PyObject*)NULL) in test_list_api()
230 /* list = range(NLIST) */ in test_list_api()
234 Py_DECREF(list); in test_list_api()
237 PyList_SET_ITEM(list, i, anint); in test_list_api()
239 /* list.reverse(), via PyList_Reverse() */ in test_list_api()
240 i = PyList_Reverse(list); /* should not blow up! */ in test_list_api()
242 Py_DECREF(list); in test_list_api()
245 /* Check that list in test_list_api()
6337 settrace_to_record(PyObject *self, PyObject *list) settrace_to_record() argument
6365 settrace_to_error(PyObject *self, PyObject *list) settrace_to_error() argument
7151 PyListObject list; global() member
[all...]
/third_party/exfatprogs/lib/
H A Dexfat_dir.c148 if (iter->parent == list_entry(current, struct exfat_inode, list) && in read_ahead_next_dir_blocks()
151 list); in read_ahead_next_dir_blocks()
/third_party/gn/src/gn/
H A Dcommand_gen.cc547 Semicolon-separated list of label patterns used to limit the set of
587 Configure the list of build configuration supported by the generated
588 project. If specified, must be a list of semicolon-separated strings.
604 If present, must be a list of semicolon-separated file patterns. It
610 If present, must be a list of semicolon-separated paths. It will be used
637 a list of include paths and defines. Because GN does not generate a full
699 list values specified in the export_compile_commands variable in the
719 Unlike the .gn setting, this switch takes a legacy format which is a list
/third_party/icu/icu4c/source/test/intltest/
H A Dlocalematchertest.cpp214 LocalePriorityList list("fr, en-GB", errorCode); in testBasics()
215 LocalePriorityList::Iterator iter(list.iterator()); in testBasics()

Completed in 53 milliseconds

1...<<111112113114115116117118119120>>...144