/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | android.py | 202 # can depend on the list. 241 # Update global list of target outputs, used in dependency tracking. 244 # Update global list of link dependencies. 256 extra_sources: a list that will be filled in with newly generated source 258 extra_outputs: a list that will be filled in with any outputs of these 270 # Build up a list of outputs. 362 extra_sources: a list that will be filled in with newly generated source 364 extra_outputs: a list that will be filled in with any outputs of these 462 extra_outputs: a list that will be filled in with any outputs of this action 526 includes = list(confi [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | environment.py | 79 """Load the extensions from the list and bind it to the environment. 452 args = [value] + list(args or ()) 734 """Returns a list of templates for this environment. This requires 739 actual templates, the returned list can be filtered. There are two 740 ways: either `extensions` is set to a list of file extensions for 743 in the result list. 757 x = list(ifilter(filter_func, x)) 845 raise TemplatesNotFound(message=u'Tried to select from an empty list ' 1152 body_stream = list(template.root_render_func(context))
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | MSVSSettings.py | 122 """A settings that's a list of strings.""" 125 if not isinstance(value, (list, str)): 126 raise ValueError("expected string list; got %r" % value) 129 if not isinstance(value, (list, str)): 130 raise ValueError("expected string list; got %r" % value) 134 if isinstance(value, list): 385 """Verify that 'setting' is valid if it is generated from an exclusion list. 387 If the setting appears to be generated from an exclusion list, the root name 396 # This may be unrecognized because it's an exclusion list. If the 415 This list i [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_shader.cpp | 1230 backend_instruction::insert_before(bblock_t *block, exec_list *list) in insert_before() argument 1235 unsigned num_inst = list->length(); in insert_before() 1241 exec_node::insert_before(list); in insert_before()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | android.py | 202 # can depend on the list. 241 # Update global list of target outputs, used in dependency tracking. 244 # Update global list of link dependencies. 256 extra_sources: a list that will be filled in with newly generated source 258 extra_outputs: a list that will be filled in with any outputs of these 270 # Build up a list of outputs. 362 extra_sources: a list that will be filled in with newly generated source 364 extra_outputs: a list that will be filled in with any outputs of these 462 extra_outputs: a list that will be filled in with any outputs of this action 526 includes = list(confi [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | MSVSSettings.py | 122 """A settings that's a list of strings.""" 125 if not isinstance(value, (list, str)): 126 raise ValueError("expected string list; got %r" % value) 129 if not isinstance(value, (list, str)): 130 raise ValueError("expected string list; got %r" % value) 134 if isinstance(value, list): 385 """Verify that 'setting' is valid if it is generated from an exclusion list. 387 If the setting appears to be generated from an exclusion list, the root name 396 # This may be unrecognized because it's an exclusion list. If the 415 This list i [all...] |
/third_party/libdrm/ |
H A D | xf86drm.h | 255 int count; /**< Number of buffers described in list */ 256 drmBufDescPtr list; /**< List of buffer descriptions */ member 260 int idx; /**< Index into the master buffer list */ 274 drmBufPtr list; /**< Buffers */ member 295 * list in drmBufInfo 690 extern int drmFreeBufs(int fd, int count, int *list); 750 /* Skip list routines */ 879 char **compatible; /* NULL terminated list of compatible strings */ 889 char **compatible; /* NULL terminated list of compatible strings */
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-coverage.cc | 432 // and removes it from the block list. in CollectBlockCoverageInternal() 514 Handle<ArrayList> list = Handle<ArrayList>::cast( in CollectAndMaybeResetCounts() local 516 for (int i = 0; i < list->Length(); i++) { in CollectAndMaybeResetCounts() 517 FeedbackVector vector = FeedbackVector::cast(list->Get(i)); in CollectAndMaybeResetCounts() 614 // reported. So we can reset the list. in CollectPrecise() 662 // Use sorted list to reconstruct function nesting. in Collect()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-profiler-agent-impl.cc | 125 protocol::Array<protocol::Profiler::ProfileNode>* list) { in flattenNodesTree() 126 list->emplace_back(buildInspectorObjectFor(inspector, node)); in flattenNodesTree() 129 flattenNodesTree(inspector, node->GetChild(i), list); in flattenNodesTree() 123 flattenNodesTree(V8InspectorImpl* inspector, const v8::CpuProfileNode* node, protocol::Array<protocol::Profiler::ProfileNode>* list) flattenNodesTree() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | code.cc | 355 Object list = isolate->heap()->native_contexts_list(); in OptimizedCodeIterator() local 357 list.IsUndefined(isolate_) ? NativeContext() : NativeContext::cast(list); in OptimizedCodeIterator() 364 // Get next code in the linked list. in Next() 367 // Linked list of code exhausted. Get list of next context. in Next() 766 // Update the list head if necessary. in InstallDependency() 808 // the back of the list. in IterateAndCompact() 809 // - Any cleared slots are filled from the back of the list. in IterateAndCompact()
|
/third_party/python/Tools/wasm/ |
H A D | wasm_build.py | 513 # list of path items, prefix with extra paths 534 cmd = list(cmd) 793 # Don't list broken and experimental variants in help 794 platforms_choices = list(p.name for p in _profiles) + ["cleanall"] 795 platforms_help = list(p.name for p in _profiles if p.support_level) + ["cleanall"]
|
/third_party/python/Lib/http/ |
H A D | server.py | 785 list = os.listdir(path) 789 "No permission to list directory") 791 list.sort(key=lambda a: a.lower()) 808 for name in list:
|
/third_party/python/Lib/ |
H A D | statistics.py | 463 weights = list(weights) 517 data = list(data) 535 weights = list(weights) 643 >>> data = list(demographics.elements()) 717 """Return a list of the most frequently occurring values. 720 or an empty list if *data* is empty. 776 Returns a list of (n - 1) cut points separating the intervals. 1231 Returns a list of (n - 1) cut points separating the intervals.
|
H A D | plistlib.py | 3 The property list (.plist) file format is a simple XML pickle supporting 365 elif isinstance(value, (tuple, list)): 639 # Flattened object list: 649 # Create list of all objects in the plist 663 # Write object list 720 elif isinstance(value, (list, tuple)): 812 elif isinstance(value, (list, tuple)):
|
H A D | traceback.py | 22 """Print the list of tuples as returned by extract_tb() or 30 """Format a list of tuples or FrameSummary objects for printing. 32 Given a list of tuples or FrameSummary objects as returned by 33 extract_tb() or extract_stack(), return a list of strings ready 36 Each string in the resulting list corresponds to the item with the 37 same index in the argument list. Each string ends in a newline; 63 Return a StackSummary object representing a list of 133 to print_exception(). The return value is a list of strings, each 140 return list(te.format(chain=chain)) 146 The return value is a list o [all...] |
H A D | calendar.py | 232 Return a matrix (list of lists) representing a month's calendar. 235 dates = list(self.itermonthdates(year, month)) 245 days = list(self.itermonthdays2(year, month)) 253 days = list(self.itermonthdays(year, month)) 259 value is a list of month rows. Each month row contains up to width months.
|
/third_party/python/Lib/test/libregrtest/ |
H A D | main.py | 51 tests -- a list of strings containing test names (optional) 260 alltests = findtests(self.ns.testdir, list(), set()) 339 rerun_list = list(self.need_rerun) 567 self.tests = self._test_forever(list(self.selected))
|
/third_party/python/Lib/multiprocessing/ |
H A D | pool.py | 48 return list(map(*args)) 51 return list(itertools.starmap(args[0], args[1])) 365 in a list that is returned. 478 iterable = list(iterable)
|
/third_party/python/Lib/test/ |
H A D | test_bdb.py | 3 A test defines a list of tuples that may be seen as paired tuples, each 35 * On a 'line' event, the tuple holds a dictionary and a list. The 37 line to its hits count. The list holds the list of breakpoint 72 # case. The full list of breakpoints and their attributes is also printed 179 self.expected_list = list(islice(self.expect_set, 0, None, 2)) 180 self.set_list = list(islice(self.expect_set, 1, None, 2)) 247 'expect_set list exhausted, cannot pop item %d' % 465 'set_list': A list of set_type tuples to be run on the module. 528 test.expect_set = list(ge [all...] |
H A D | test_selectors.py | 248 self.assertEqual(list(keys), []) 253 self.assertEqual(list(keys), [rd.fileno()]) 254 self.assertEqual(list(keys.values()), [key])
|
H A D | test_getpath.py | 894 self._files[path.casefold()] = list(lines or ()) 1001 return list(self.open) 1070 self._files[path] = list(lines or ())
|
H A D | test_marshal.py | 141 positions = list(co.co_positions()) 179 self.helper(list(self.d.items())) 286 for typ in (int, float, complex, tuple, list, dict, set, frozenset): 426 if isinstance(obj, (list, tuple, set, frozenset)):
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | aggressive_dead_code_elim_pass.cpp | 267 std::list<BasicBlock*> structured_order; in AggressiveDCE() 276 const Function* func, std::list<BasicBlock*>& structured_order) { in KillDeadInstructions() 364 // list. We use the decoration manager to look through the group in AddDecorationsToWorkList() 521 Function* func, std::list<BasicBlock*>& structured_order) { in InitializeWorkList() 885 // Remove the dead interface variables from the entry point interface list. in ProcessGlobalValues()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | aggressive_dead_code_elim_pass.cpp | 267 std::list<BasicBlock*> structured_order; in AggressiveDCE() 276 const Function* func, std::list<BasicBlock*>& structured_order) { in KillDeadInstructions() 364 // list. We use the decoration manager to look through the group in AddDecorationsToWorkList() 521 Function* func, std::list<BasicBlock*>& structured_order) { in InitializeWorkList() 885 // Remove the dead interface variables from the entry point interface list. in ProcessGlobalValues()
|
/third_party/protobuf/python/google/protobuf/ |
H A D | json_format.py | 10 # notice, this list of conditions and the following disclaimer. 12 # copyright notice, this list of conditions and the following disclaimer 557 if not isinstance(value, list): 638 elif isinstance(value, list): 654 if not isinstance(value, list):
|