Home
last modified time | relevance | path

Searched refs:list (Results 10851 - 10875 of 14040) sorted by relevance

1...<<431432433434435436437438439440>>...562

/third_party/node/deps/v8/tools/release/
H A Dcommon_includes.py8 # notice, this list of conditions and the following disclaimer.
10 # copyright notice, this list of conditions and the following
364 wait_plan: A list of waiting delays between retries in seconds. The
368 wait_plan = list(wait_plan or [])
546 revisions = self.Git("rev-list --max-age=%d --tags" %
550 return list(filter(self.GetVersionTag, revisions.splitlines()))
/third_party/node/deps/v8/third_party/jinja2/
H A Denvironment.py102 """Load the extensions from the list and bind it to the environment.
494 args = [value] + list(args or ())
795 """Returns a list of templates for this environment. This requires
800 actual templates, the returned list can be filtered. There are two
801 ways: either `extensions` is set to a list of file extensions for
804 in the result list.
907 message=u"Tried to select from an empty list " u"of templates."
1238 body_stream = list(template.root_render_func(context))
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
H A Dcommands.c340 * get_nodemask() -- get nodemask from comma-separated list of node ids.
352 fprintf(stderr, "%s: expected digit for <node/list>\n", in get_nodemask()
381 * get_arg_nodeid_list() -- get list [array] of node ids from comma-separated list.
383 * on success, returns count of id's in list; on error -1
385 static int get_arg_nodeid_list(char *args, unsigned int *list) in get_arg_nodeid_list() argument
396 fprintf(stderr, "%s: expected digit for <node/list>\n", in get_arg_nodeid_list()
416 *(list + count++) = node; in get_arg_nodeid_list()
425 fprintf(stderr, "%s: too many node ids in list\n", in get_arg_nodeid_list()
544 * Node id[s] - single node id or comma-separated list
[all...]
/third_party/libfuse/lib/modules/
H A Diconv.c497 static int iconv_listxattr(const char *path, char *list, size_t size) in iconv_listxattr() argument
503 err = fuse_fs_listxattr(ic->next, newpath, list, size); in iconv_listxattr()
/third_party/ltp/tools/sparse/sparse-src/
H A Dbuiltin.c108 struct expression_list *list = expr->args; in evaluate_choose() local
113 FOR_EACH_PTR(list, arg) { in evaluate_choose()
H A Dexpression.c532 static struct token *expression_list(struct token *token, struct expression_list **list) in expression_list() argument
539 add_expression(list, expr); in expression_list()
/third_party/node/deps/openssl/openssl/util/
H A Dfind-doc-nits50 -d Detailed list of undocumented (implies -u)
51 -e Detailed list of new undocumented (implies -v)
369 # # a callback function with whitespace before the argument list:
372 # err($id, "Function typedef has space before arg list: $line");
852 # Parse libcrypto.num, etc., and return sorted list of what's there.
1072 # Get the list of options in the command source file.
1076 or die "Can't open apps/$cmd.c to list options for $cmd, $!";
1100 # Get the list of flags from the synopsis
1147 or die "Can't open apps/include/opt.h to list generic options, $!";
1156 # Get list o
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dc_generator.py84 arguments: List[Any] = field(default_factory=list)
457 for rulename, rule in list(self.all_rules.items()):
/third_party/openssl/util/
H A Dfind-doc-nits50 -d Detailed list of undocumented (implies -u)
51 -e Detailed list of new undocumented (implies -v)
369 # # a callback function with whitespace before the argument list:
372 # err($id, "Function typedef has space before arg list: $line");
852 # Parse libcrypto.num, etc., and return sorted list of what's there.
1072 # Get the list of options in the command source file.
1076 or die "Can't open apps/$cmd.c to list options for $cmd, $!";
1100 # Get the list of flags from the synopsis
1147 or die "Can't open apps/include/opt.h to list generic options, $!";
1156 # Get list o
[all...]
/third_party/python/Lib/multiprocessing/
H A Dconnection.py807 L = list(handles)
830 Returns list of those objects in object_list which are ready/readable.
839 object_list = list(object_list)
920 Returns list of those objects in object_list which are ready/readable.
/third_party/python/Lib/
H A Ddataclasses.py271 # When cls._FIELDS is filled in with a list of Field objects, the name
1041 # Get the fields as a list, and include only real fields. This is
1297 # similar to how other list- or tuple-derived classes are
1309 # information here when we produce a json list instead of a
1315 elif isinstance(obj, (list, tuple)):
1362 # similar to how other list- or tuple-derived classes are
1367 elif isinstance(obj, (list, tuple)):
/third_party/skia/third_party/externals/jinja2/
H A Denvironment.py102 """Load the extensions from the list and bind it to the environment.
494 args = [value] + list(args or ())
795 """Returns a list of templates for this environment. This requires
800 actual templates, the returned list can be filtered. There are two
801 ways: either `extensions` is set to a list of file extensions for
804 in the result list.
907 message=u"Tried to select from an empty list " u"of templates."
1238 body_stream = list(template.root_render_func(context))
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationfastlatinbuilder.cpp65 binarySearch(const int64_t list[], int32_t limit, int64_t ce) { in binarySearch() argument
70 int32_t cmp = compareInt64AsUnsigned(ce, list[i]); in binarySearch()
234 // Write a contraction list with only a default value if there is no real contraction. in getCEs()
241 // Terminate the last contraction list. in getCEs()
595 // We encode all contraction lists so that the first word of a list in encodeContractions()
596 // terminates the previous list, and we only need one additional terminator at the end. in encodeContractions()
626 // Note: There is a chance that this new contraction list is the same as a previous one, in encodeContractions()
627 // and if so, then we could truncate the result and reuse the other list. in encodeContractions()
633 // Terminate the last contraction list. in encodeContractions()
/third_party/python/Lib/test/
H A Dtest_runpy.py89 for k in list(result_ns):
253 for entry in list(sys.modules):
/third_party/python/Lib/email/
H A Dmessage.py141 multipart or a message/rfc822), then the payload is a list of Message
213 return isinstance(self._payload, list)
230 The current payload will always be a list of objects after this method
246 The payload will either be a list object or a string. If you mutate
247 the list object, you modify the message's payload in place. Optional
268 # None False True _payload (a list)
270 # i False False error (not a list)
271 # i True False error (not a list)
286 if i is not None and not isinstance(self._payload, list):
287 raise TypeError('Expected list, go
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DPassManager.h56 #include <list>
129 /// otherwise only a short list of analyses that have been explicitly updated
627 std::list<std::pair<AnalysisKey *, std::unique_ptr<ResultConceptT>>>;
629 /// Map type from IRUnitT pointer to our custom list type.
633 /// iterator into a particular result list (which is where the actual analysis
754 // Delete the map entries that point into the results list. in clear()
1004 /// Map from function to a list of function analysis results.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DInstrProf.h39 #include <list>
655 std::list<InstrProfValueData> ValueData;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp95 #include <list>
428 using InitListMap = std::map<unsigned, std::list<MachineInstr *>>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp72 #include <list>
565 using PartitionContainerT = std::list<InstPartition>;
/third_party/toybox/generated/
H A Dglobals.h558 // Expanding sequential list
871 struct arg_list *list; member
1022 struct unsocks *lsocks; // list of listen sockets
1023 struct logfile *lfiles; // list of write logfiles
1153 int list; member
1483 // processed pattern list
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
193 // to keep the list of object methods together than to split them between
436 VALUE RepeatedField_replace(VALUE _self, VALUE list);
445 VALUE RepeatedField_plus(VALUE _self, VALUE list);
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor.py10 # notice, this list of conditions and the following disclaimer.
12 # copyright notice, this list of conditions and the following disclaimer
252 fields (list[FieldDescriptor]): Field descriptors for all fields in
260 nested_types (list[Descriptor]): Descriptor references
265 enum_types (list[EnumDescriptor]): :class:`EnumDescriptor` references
272 extensions (list[FieldDescriptor]): All extensions defined directly
278 oneofs (list[OneofDescriptor]): The list of descriptors for oneof fields
636 values (list[EnumValueDescriptors]): List of the values
750 fields (list[FieldDescripto
[all...]
H A Ddescriptor_pool.py10 # notice, this list of conditions and the following disclaimer.
12 # copyright notice, this list of conditions and the following disclaimer
629 list[FieldDescriptor]: Field descriptors describing the extensions.
641 return list(self._extensions_by_number[message_descriptor].values())
741 built_deps = list(self._GetDeps(file_proto.dependency))
/third_party/python/Lib/lib2to3/
H A Drefactor.py32 """Return a sorted list of all available fix names in the given package."""
76 """ Accepts a list of fixers and returns a dictionary
77 of head node type --> fixer list. """
78 head_nodes = collections.defaultdict(list)
168 fixer_names: a list of fixers to import
170 explicit: a list of fixers to run even if they are explicit.
223 (pre_order, post_order), where pre_order is the list of fixers that
224 want a pre-order AST traversal, and post_order is the list that want
280 """Refactor a list of files and directories."""
427 for node in list(match_se
[all...]
/third_party/python/Modules/_ctypes/
H A D_ctypes_test.c1038 _testfunc_pylist_append(PyObject *list, PyObject *item) in _testfunc_pylist_append() argument
1040 return PyList_Append(list, item); in _testfunc_pylist_append()

Completed in 47 milliseconds

1...<<431432433434435436437438439440>>...562